From: mkochano Date: Tue, 12 Jun 2001 08:40:24 +0000 (+0000) Subject: - Patch by Jacek Osiecki correcting conditional building of X-Git-Tag: gd-1_8_4-6~2 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fgd.git;a=commitdiff_plain;h=9b14e456f66410f39169613aa0ca288eb651befb;hp=b9bf400ca7de50542c2c815a7c5aee3e65bb6330 - 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 --- 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";