edink           Sat Dec  6 20:59:28 2003 EDT

  Added files:                 
    /php-src/ext/gd     config.w32 
  Log:
  First attemt at win32 build with the new build system.
  #No workie yet, the build sys needs tweaking
  

Index: php-src/ext/gd/config.w32
+++ php-src/ext/gd/config.w32
// $Id: config.w32,v 1.1 2003/12/07 01:59:28 edink Exp $
// 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");
        }
}

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to