fmk Sat Apr 29 06:24:21 2006 UTC Modified files: /php-src/win32/build config.w32 Log: Add new configure option --enable-pdb-files This will generate .pdb files for debugging http://cvs.php.net/viewcvs.cgi/php-src/win32/build/config.w32?r1=1.53&r2=1.54&diff_format=u Index: php-src/win32/build/config.w32 diff -u php-src/win32/build/config.w32:1.53 php-src/win32/build/config.w32:1.54 --- php-src/win32/build/config.w32:1.53 Wed Mar 29 01:20:43 2006 +++ php-src/win32/build/config.w32 Sat Apr 29 06:24:21 2006 @@ -1,5 +1,5 @@ // vim:ft=javascript -// $Id: config.w32,v 1.53 2006/03/29 01:20:43 pollita Exp $ +// $Id: config.w32,v 1.54 2006/04/29 06:24:21 fmk Exp $ // "Master" config file; think of it as a configure.in // equivalent. @@ -313,6 +313,11 @@ ARG_ENABLE("memory-manager", "Enable Zend memory manager", "yes"); AC_DEFINE('USE_ZEND_ALLOC', PHP_MEMORY_MANAGER == "yes" ? 1 : 0); +ARG_ENABLE("pdb-files", "Enable generation of .pdp files", "no"); +if (PHP_PDB_FILES == "yes") { + ADD_FLAG("LDFLAGS", "/debug /opt:ref"); +} + AC_DEFINE('HAVE_USLEEP', 1); AC_DEFINE('HAVE_STRCOLL', 1);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php