sniper          Thu Sep 11 11:26:53 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS 
    /php-src/ext/cpdf   config.m4 
  Log:
  MFH: - Fixed bug #25463 (ext/cpdf: compile failure with bundled GD)
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.389 php-src/NEWS:1.1247.2.390
--- php-src/NEWS:1.1247.2.389   Thu Sep 11 01:07:43 2003
+++ php-src/NEWS        Thu Sep 11 11:26:52 2003
@@ -8,6 +8,7 @@
 - Fixed memory leak in gethostbynamel() if an error occurs. (Sara)
 - Fixed FastCGI being unable to bind to a specific IP. (Sascha)
 - Fixed bug #23488 (zlib.output_compression overrides Vary header). (Stefan)
+- Fixed bug #25463 (ext/cpdf: compile failure with bundled GD)
 - Fixed bug #25429 (fix copying of stdin using copy() function). (Ilia)
 - Fixed bug #25424 (ext/informix: lvarchar not supported in win32). (Jani)
 - Fixed bug #25404 (ext/pgsql: open transactions not closed when script ends). 
Index: php-src/ext/cpdf/config.m4
diff -u php-src/ext/cpdf/config.m4:1.10.4.4 php-src/ext/cpdf/config.m4:1.10.4.5
--- php-src/ext/cpdf/config.m4:1.10.4.4 Thu Jun 26 14:06:46 2003
+++ php-src/ext/cpdf/config.m4  Thu Sep 11 11:26:53 2003
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.10.4.4 2003/06/26 18:06:46 sniper Exp $
+dnl $Id: config.m4,v 1.10.4.5 2003/09/11 15:26:53 sniper Exp $
 
 AC_DEFUN(CPDF_JPEG_TEST,[
   AC_ARG_WITH(jpeg-dir,
@@ -53,7 +53,7 @@
   PHP_WITH_SHARED
   if test "$withval" != "no"; then
     cpdf_withval=$withval
-    PHP_NEW_EXTENSION(cpdf, cpdf.c, $ext_shared)
+    PHP_NEW_EXTENSION(cpdf, cpdf.c, $ext_shared,, \\$(GDLIB_CFLAGS))
     PHP_SUBST(CPDF_SHARED_LIBADD)
     CPDF_JPEG_TEST
     CPDF_TIFF_TEST

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to