diff options
author | Sander Roobol <sander@php.net> | 2002-06-09 11:27:04 +0000 |
---|---|---|
committer | Sander Roobol <sander@php.net> | 2002-06-09 11:27:04 +0000 |
commit | a2849b868b0c4ae4aee9446cd83427e60203cef6 (patch) | |
tree | 7fd0d3ba0dadc2060207bd5d6398fab2c9648716 | |
parent | 2f6c2a9b18c9a64303771253fc6d13390e3c7bc4 (diff) | |
download | php-git-a2849b868b0c4ae4aee9446cd83427e60203cef6.tar.gz |
Fixed detection of JPEG support in bundled version of GD.
-rw-r--r-- | ext/gd/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/config.m4 b/ext/gd/config.m4 index 571f31ec85..0c50452c50 100644 --- a/ext/gd/config.m4 +++ b/ext/gd/config.m4 @@ -266,7 +266,7 @@ dnl These are always available with bundled library dnl Depending which libraries were included to PHP configure, dnl enable the support in bundled GD library - if test -n "$GD_JPG_DIR"; then + if test -n "$GD_JPEG_DIR"; then AC_DEFINE(HAVE_GD_JPG, 1, [ ]) GDLIB_CFLAGS="$GDLIB_CFLAGS -DHAVE_LIBJPEG" fi |