]> granicus.if.org Git - php/commitdiff
- usual suspects must be in the default include/lib path (thx Rob for the notice!)
authorPierre Joye <pajoye@php.net>
Fri, 26 Dec 2008 14:10:26 +0000 (14:10 +0000)
committerPierre Joye <pajoye@php.net>
Fri, 26 Dec 2008 14:10:26 +0000 (14:10 +0000)
- fix the --wtih-php-build doc, remove dead url, update the name of the deps dir

win32/build/config.w32

index 5a6c72fc06ee355d8ca0fb01ee19b5ee212264c2..fd06de8bb0afc0c37b1faf7d64286699e62c91d2 100644 (file)
@@ -209,7 +209,7 @@ if (PHP_DEBUG == "yes" && PHP_ZTS == "yes") {
 
 // Find the php_build dir - it contains headers and libraries
 // that we need
-ARG_WITH('php-build', 'Path to where you extracted http://www.php.net/extra/win32build.zip. Assumes that it is a sibling of this source dir (..\\php_build) if not specified', 'no');
+ARG_WITH('php-build', 'Path to where you extracted the development libraries (http://wiki.php.net/internals/windows/libs). Assumes that it is a sibling of this source dir (..\\deps) if not specified', 'no');
 
 if (PHP_PHP_BUILD == 'no') {
        if (FSO.FolderExists("..\\deps")) {
@@ -242,6 +242,9 @@ ARG_WITH('extra-libs', 'Extra library path to use when linking everything', '');
 var php_usual_include_suspects = PHP_PHP_BUILD+"\\include;..\\deps\\include";
 var php_usual_lib_suspects = PHP_PHP_BUILD+"\\lib;..\\deps\\lib";
 
+ADD_FLAG("CFLAGS", '/I "' + php_usual_include_suspects + '" ');
+ADD_FLAG("LDFLAGS", '/libpath:"\\"' + php_usual_lib_suspects + '\\"" ');
+
 // Poke around for some headers
 function probe_basic_headers()
 {