wez Mon Dec 22 17:48:29 2003 EDT
Modified files:
/php-src/win32/build mkdist.php
Log:
Don't annoy people building snaps/dists using VC6
Index: php-src/win32/build/mkdist.php
diff -u php-src/win32/build/mkdist.php:1.3 php-src/win32/build/mkdist.php:1.4
--- php-src/win32/build/mkdist.php:1.3 Fri Dec 19 15:39:02 2003
+++ php-src/win32/build/mkdist.php Mon Dec 22 17:48:29 2003
@@ -1,4 +1,4 @@
-<?php # $Id: mkdist.php,v 1.3 2003/12/19 20:39:02 wez Exp $
+<?php # $Id: mkdist.php,v 1.4 2003/12/22 22:48:29 wez Exp $
/* piece together a windows binary distro */
$build_dir = $argv[1];
@@ -25,6 +25,11 @@
function get_depends($module)
{
+ // skip this for now; working on a more portable solution
+ // since VC6 ships with an old version of depends.exe that
+ // doesn't have the command line options
+ return;
+
static $no_dist = array(
/* windows system dlls that should not be bundled */
'advapi32.dll', 'comdlg32.dll', 'gdi32.dll', 'kernel32.dll',
'ntdll.dll',
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php