fmk Sat Apr 29 06:24:38 2006 UTC
Modified files: (Branch: PHP_5_1)
/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.40.2.6&r2=1.40.2.7&diff_format=u
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.40.2.6
php-src/win32/build/config.w32:1.40.2.7
--- php-src/win32/build/config.w32:1.40.2.6 Wed Dec 14 02:01:13 2005
+++ php-src/win32/build/config.w32 Sat Apr 29 06:24:38 2006
@@ -1,5 +1,5 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.40.2.6 2005/12/14 02:01:13 wez Exp $
+// $Id: config.w32,v 1.40.2.7 2006/04/29 06:24:38 fmk Exp $
// "Master" config file; think of it as a configure.in
// equivalent.
@@ -302,6 +302,11 @@
AC_DEFINE('ZEND_MULTIBYTE', 1);
}
+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