From: Edin Kadribasic Date: Sun, 7 Dec 2003 01:59:28 +0000 (+0000) Subject: First attemt at win32 build with the new build system. X-Git-Tag: php-5.0.0b3RC1~218 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96a745f2e26a633346c5d098a17a58d11084d0ab;p=php First attemt at win32 build with the new build system. #No workie yet, the build sys needs tweaking --- diff --git a/ext/gd/config.w32 b/ext/gd/config.w32 new file mode 100644 index 0000000000..99d5f215d3 --- /dev/null +++ b/ext/gd/config.w32 @@ -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"); + } +}