From bda34955db66f34d1e190fe80671b540cbf4cf6c Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 30 Aug 2002 02:41:52 +0000 Subject: [PATCH] Fix the build when bundled gd library is used --- ext/pdf/pdf.c | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.50.1