From 8c85d7b73262f76d2be01f49c6ffa6ddbb34ccf1 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 25 Sep 2017 02:37:42 +0200 Subject: [PATCH] Fix PHP_GD_TTSTR: command not found warning in ext/gd --- ext/gd/config.m4 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/gd/config.m4 b/ext/gd/config.m4 index 7fe9ed995e..7abbee4389 100644 --- a/ext/gd/config.m4 +++ b/ext/gd/config.m4 @@ -309,7 +309,6 @@ else dnl Various checks for GD features PHP_GD_ZLIB - PHP_GD_TTSTR PHP_GD_WEBP PHP_GD_JPEG PHP_GD_PNG @@ -348,7 +347,7 @@ dnl if test "$PHP_GD" != "no"; then PHP_NEW_EXTENSION(gd, gd.c $extra_sources, $ext_shared,, \\$(GDLIB_CFLAGS)) - if test "$GD_MODULE_TYPE" = "builtin"; then + if test "$GD_MODULE_TYPE" = "builtin"; then PHP_ADD_BUILD_DIR($ext_builddir/libgd) GDLIB_CFLAGS="-I$ext_srcdir/libgd $GDLIB_CFLAGS" GD_HEADER_DIRS="ext/gd/ ext/gd/libgd/" -- 2.50.1