From 9b14e456f66410f39169613aa0ca288eb651befb Mon Sep 17 00:00:00 2001 From: mkochano Date: Tue, 12 Jun 2001 08:40:24 +0000 Subject: [PATCH] - Patch by Jacek Osiecki correcting conditional building of JPEG routines. Originally if libjpeg is found HAVE_JPEG symbol is defined, but later HAVE_LIBJPEG is referenced. This patch changes #ifdef HAVE_LIBJPEG into #ifdef HAVE_JPEG. Changed files: gd-HAVE_LIBJPEG.patch -> 1.1 --- gd-HAVE_LIBJPEG.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 gd-HAVE_LIBJPEG.patch diff --git a/gd-HAVE_LIBJPEG.patch b/gd-HAVE_LIBJPEG.patch new file mode 100644 index 0000000..e3e5dea --- /dev/null +++ b/gd-HAVE_LIBJPEG.patch @@ -0,0 +1,11 @@ +diff -Nur gd-1.8.4.orig/gd_jpeg.c gd-1.8.4/gd_jpeg.c +--- gd-1.8.4.orig/gd_jpeg.c Thu Feb 1 21:23:56 2001 ++++ gd-1.8.4/gd_jpeg.c Thu Jun 7 15:27:17 2001 +@@ -28,7 +28,7 @@ + #include "gd.h" + #include "gdhelpers.h" + +-#ifdef HAVE_LIBJPEG ++#ifdef HAVE_JPEG + + static const char * const GD_JPEG_VERSION = "1.0"; -- 2.44.0