changeset 4711:985886265686

Updates for external GIF support on Windows
author Vin Shelton <acs@xemacs.org>
date Tue, 06 Oct 2009 22:39:30 -0400
parents 3a87551bfeb5
children a46d7513a364
files nt/ChangeLog nt/xemacs.mak
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nt/ChangeLog	Mon Oct 05 13:07:34 2009 -0600
+++ b/nt/ChangeLog	Tue Oct 06 22:39:30 2009 -0400
@@ -1,3 +1,9 @@
+2009-10-06  Vin Shelton  <acs@xemacs.org>
+
+	* xemacs.mak: For giflib, the include files are found in
+		      $(GIF_DIR)\include and the library is named
+		      giflib.lib.
+
 2009-10-05  Jerry James  <james@xemacs.org>
 
 	* config.inc.samp: Add GIF_DIR for external GIF support.
--- a/nt/xemacs.mak	Mon Oct 05 13:07:34 2009 -0600
+++ b/nt/xemacs.mak	Tue Oct 06 22:39:30 2009 -0400
@@ -548,8 +548,8 @@
 !endif
 !if $(HAVE_GIF)
 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_GIF
-OPT_INCLUDES=$(OPT_INCLUDES) -I"$(GIF_DIR)\lib"
-OPT_LIBS=$(OPT_LIBS) "$(GIF_DIR)\lib\libgif.lib"
+OPT_INCLUDES=$(OPT_INCLUDES) -I"$(GIF_DIR)\include"
+OPT_LIBS=$(OPT_LIBS) "$(GIF_DIR)\lib\giflib.lib"
 !endif
 !if $(HAVE_PNG)
 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_PNG