From: foobar Date: Fri, 30 Aug 2002 02:41:52 +0000 (+0000) Subject: Fix the build when bundled gd library is used X-Git-Tag: RELEASE_0_91~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bda34955db66f34d1e190fe80671b540cbf4cf6c;p=php Fix the build when bundled gd library is used --- diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index c019b2f7b1..ddc7262aec 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -40,7 +40,11 @@ #if HAVE_LIBGD13 #include "ext/gd/php_gd.h" +#if HAVE_GD_BUNDLED +#include "ext/gd/libgd/gd.h" +#else #include "gd.h" +#endif static int le_gd; #endif