From e0a972c061c4aa34b81824facf4c79aeb2579841 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 6 Dec 2002 16:33:57 +0000 Subject: [PATCH] cpdf + bundled gd #maybe someone finds a better solution (perhaps in config) and comitts it --- ext/cpdf/cpdf.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ext/cpdf/cpdf.c b/ext/cpdf/cpdf.c index 7265c1056e..3d3b3fae05 100644 --- a/ext/cpdf/cpdf.c +++ b/ext/cpdf/cpdf.c @@ -37,8 +37,12 @@ #include "ext/standard/php_standard.h" #include "ext/standard/head.h" #include -#if HAVE_LIBGD13 -#include +#if HAVE_GD_BUNDLED +# include "../gd/libgd/gd.h" +#else +# if HAVE_LIBGD13 +# include +# endif #endif #ifdef HAVE_UNISTD_H -- 2.50.1