mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
Currently the gd-module uses a bundled libgd, while most systems already provide the same library via graphics/gd. Therefore instead of adding the bundled library we use the port instead. PR: 217222 Submitted by: Mikhail Teterin <mi@FreeBSD.org>
20 lines
819 B
Text
20 lines
819 B
Text
--- config.m4.orig 2018-07-11 13:18:02 UTC
|
|
+++ config.m4
|
|
@@ -358,7 +358,7 @@ if test "$PHP_GD" != "no"; then
|
|
|
|
if test "$GD_MODULE_TYPE" = "builtin"; then
|
|
PHP_ADD_BUILD_DIR($ext_builddir/libgd)
|
|
- GDLIB_CFLAGS="-I$ext_srcdir/libgd $GDLIB_CFLAGS"
|
|
+ GDLIB_CFLAGS="-I../.. -I$ext_srcdir/libgd $GDLIB_CFLAGS"
|
|
GD_HEADER_DIRS="ext/gd/ ext/gd/libgd/"
|
|
|
|
PHP_TEST_BUILD(foobar, [], [
|
|
@@ -366,7 +366,7 @@ if test "$PHP_GD" != "no"; then
|
|
], [ $GD_SHARED_LIBADD ], [char foobar () {}])
|
|
else
|
|
GD_HEADER_DIRS="ext/gd/"
|
|
- GDLIB_CFLAGS="-I$GD_INCLUDE $GDLIB_CFLAGS"
|
|
+ GDLIB_CFLAGS="-I../.. -I$ext_srcdir/libgd $GDLIB_CFLAGS"
|
|
PHP_ADD_INCLUDE($GD_INCLUDE)
|
|
PHP_CHECK_LIBRARY(gd, gdImageCreate, [], [
|
|
AC_MSG_ERROR([GD build test failed. Please check the config.log for details.])
|