iliaa Sun Nov 17 16:57:43 2002 EDT
Modified files:
/php4/ext/gd config.m4
Log:
Fixed gd 2.0.4 check
Index: php4/ext/gd/config.m4
diff -u php4/ext/gd/config.m4:1.121 php4/ext/gd/config.m4:1.122
--- php4/ext/gd/config.m4:1.121 Sun Nov 17 15:18:44 2002
+++ php4/ext/gd/config.m4 Sun Nov 17 16:57:43 2002
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.121 2002/11/17 20:18:44 iliaa Exp $
+dnl $Id: config.m4,v 1.122 2002/11/17 21:57:43 iliaa Exp $
dnl
dnl
@@ -248,9 +248,10 @@
AC_TRY_COMPILE([
#include <gd.h>
-], [gdIOCtx *ctx; ctx->ctx.gd_free = 1;],[],
-[AC_DEFINE(HAVE_LIBGD204, 1, [ ])]
-)
+ #include <stdlib.h>
+], [gdIOCtx *ctx; ctx = malloc(sizeof(gdIOCtx)); ctx->gd_free = 1],
+ AC_DEFINE(HAVE_LIBGD204, 1, [ ])
+])
dnl
dnl Main GD configure
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php