Commit:    54d6f8b34e20f58a9b2d5e0986480f8b6e1280fa
Author:    Remi Collet <r...@php.net>         Sun, 5 May 2013 06:52:28 +0200
Parents:   2ab270011dfcbfea8e39374f546d6ced653059b5
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=54d6f8b34e20f58a9b2d5e0986480f8b6e1280fa

Log:
gd: missing comma

Changed paths:
  M  ext/gd/config.m4


Diff:
diff --git a/ext/gd/config.m4 b/ext/gd/config.m4
index 1328b82..748a352 100644
--- a/ext/gd/config.m4
+++ b/ext/gd/config.m4
@@ -9,7 +9,6 @@ dnl
 PHP_ARG_WITH(gd, for GD support,
 [  --with-gd[=DIR]         Include GD support.  DIR is the GD library base
                           install directory [BUNDLED]])
-
 if test -z "$PHP_VPX_DIR"; then
   PHP_ARG_WITH(vpx-dir, for the location of libvpx,
   [  --with-vpx-dir[=DIR]     GD: Set the path to libvpx install prefix], no, 
no)
@@ -299,7 +298,7 @@ dnl PNG is required by GD library
 dnl These are always available with bundled library
   AC_DEFINE(HAVE_GD_BUNDLED,          1, [ ])
   AC_DEFINE(HAVE_GD_PNG,              1, [ ])
-  AC_DEFINE(HAVE_GD_CACHE_CREATE      1, [ ])
+  AC_DEFINE(HAVE_GD_CACHE_CREATE,     1, [ ])
 
 dnl Make sure the libgd/ is first in the include path
   GDLIB_CFLAGS="-DHAVE_LIBPNG"


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

Reply via email to