]> granicus.if.org Git - php/commitdiff
First attemt at win32 build with the new build system.
authorEdin Kadribasic <edink@php.net>
Sun, 7 Dec 2003 01:59:28 +0000 (01:59 +0000)
committerEdin Kadribasic <edink@php.net>
Sun, 7 Dec 2003 01:59:28 +0000 (01:59 +0000)
#No workie yet, the build sys needs tweaking

ext/gd/config.w32 [new file with mode: 0644]

diff --git a/ext/gd/config.w32 b/ext/gd/config.w32
new file mode 100644 (file)
index 0000000..99d5f21
--- /dev/null
@@ -0,0 +1,43 @@
+// $Id$
+// vim:ft=javascript
+
+ARG_WITH("gd", "Bundled GD support", "no");
+
+if (PHP_GD != "no") {
+       if (CHECK_LIB("libjpeg.lib", "gd", PHP_GD) &&
+               CHECK_LIB("freetype2.lib", "gd", PHP_GD) &&
+               CHECK_LIB("libpng.lib", "gd", PHP_GD) &&
+               CHECK_LIB("zlib.lib", "gd", PHP_GD) &&
+               CHECK_HEADER_ADD_INCLUDE("gd.h", "CFLAGS_GD", "ext\\gd\\libgd;" + PHP_GD)) {
+
+               EXTENSION("gd", "gd.c gdttf.c");
+               ADD_SOURCES("ext/gd/libgd", "gd2copypal.c gd_arc_f_buggy.c gd.c gdcache.c gdfontg.c gdfontl.c gdfontmb.c gdfonts.c gdfontt.c gdft.c gd_gd2.c gd_gd.c gd_gif_in.c gdhelpers.c gd_io.c gd_io_dp.c gd_io_file.c gd_io_ss.c gd_jpeg.c gdkanji.c gd_png.c gd_ss.c gdtables.c gd_topal.c gd_wbmp.c gdxpm.c wbmp.c xbm.c", "gd");
+               AC_DEFINE('HAVE_LIBGD', 1, 'GD support');
+               ADD_FLAG("CFLAGS_GD", " \
+                       /D HAVE_GD_BUNDLED=1  \
+                       /D HAVE_GD_GD2  \
+                       /D HAVE_GD_GIF_READ=1  \
+                       /D HAVE_GDIMAGECOLORRESOLVE=1  \
+                       /D HAVE_GD_IMAGESETBRUSH=1  \
+                       /D HAVE_GD_IMAGESETTILE=1 \
+                       /D HAVE_GD_JPG  \
+                       /D HAVE_GD_PNG  \
+                       /D HAVE_GD_STRINGFTEX=1  \
+                       /D HAVE_GD_STRINGTTF=1  \
+                       /D HAVE_GD_WBMP  \
+                       /D HAVE_GD_XBM  \
+                       /D HAVE_LIBFREETYPE=1  \
+                       /D HAVE_LIBGD13=1  \
+                       /D HAVE_LIBGD15=1  \
+                       /D HAVE_LIBGD20=1  \
+                       /D HAVE_LIBGD204=1 \
+                       /D HAVE_LIBJPEG  \
+                       /D HAVE_LIBPNG  \
+                       /D USE_GD_IMGSTRTTF  \
+                       /D USE_GD_IOCTX \
+                       /D MSWIN32 \
+               ");
+               } else {
+               WARNING("gd not enabled; libraries and headers not found");
+       }
+}