]> granicus.if.org Git - php/commitdiff
Clarify a little.
authorWez Furlong <wez@php.net>
Wed, 3 Dec 2003 00:15:10 +0000 (00:15 +0000)
committerWez Furlong <wez@php.net>
Wed, 3 Dec 2003 00:15:10 +0000 (00:15 +0000)
ext/com_dotnet/config.w32
win32/build/config.w32
win32/build/confutils.js

index 1ab902692658ddfd0badaab5a6f0b9b20e0d01f2..239a5446dfe8d7535ed4ca031bb9fe64abb6faef 100644 (file)
@@ -1,7 +1,7 @@
 // $Id$
 // vim:ft=javascript
 
-ARG_ENABLE("com_dotnet", "COM and .Net support", "yes");
+ARG_ENABLE("com-dotnet", "COM and .Net support", "yes");
 
 if (PHP_COM_DOTNET == "yes") {
        EXTENSION("com_dotnet", "com_com.c com_dotnet.c com_extension.c \
index 7a36040320b69a7c9d76708e6d8e34a658e3fb97..f7fb39c53c259ffbc76743970c1db7e1b9017588 100644 (file)
@@ -11,7 +11,7 @@ PATH_PROG('make');
 // one-shot build optimizes build by asking compiler to build
 // several objects at once, reducing overhead of starting new
 // compiler processes.
-ARG_ENABLE('one-shot', 'optimize for fast one-shot build', 'no');
+ARG_ENABLE('one-shot', 'Optimize for fast build - best for release and snapshot builders, not so hot for edit-and-rebuild hacking', 'no');
 
 ARG_ENABLE('debug', 'Compile with debugging symbols', "no");
 ARG_ENABLE('zts', 'Thread safety', 'yes');
@@ -85,7 +85,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', 'where the php_build dir can be found', 'no');
+ARG_WITH('php-build', 'Where the php_build dir can be found.  Assumes that it is a sibling of this source dir (..\\php_build) if not specified', 'no');
 
 if (PHP_PHP_BUILD == "no") {
        if (FSO.FolderExists("..\\php_build")) {
index 9bfa46397d6484b1cc5018831c84a898498a0c7e..e003d98030f0743582dc89577f00263bf24ee0bd 100644 (file)
@@ -17,7 +17,7 @@
   +----------------------------------------------------------------------+
 */
 
-// $Id: confutils.js,v 1.1 2003-12-02 23:17:04 wez Exp $
+// $Id: confutils.js,v 1.2 2003-12-03 00:15:10 wez Exp $
 
 var STDOUT = WScript.StdOut;
 var STDERR = WScript.StdErr;
@@ -201,6 +201,17 @@ function conf_process_args()
        }
 
        if (configure_help_mode) {
+               STDOUT.WriteLine(word_wrap_and_indent(0,
+"Options that enable extensions and SAPI will accept \
+'yes' or 'no' as a parameter.  They also accept 'shared' \
+as a synonym for 'yes' and request a shared build of that \
+module.  Not all modules can be built as shared modules; \
+configure will display [shared] after the module name if \
+can be built that way. \
+"
+                       ));
+               STDOUT.WriteBlankLines(1);
+
                // Measure width to pretty-print the output
                max_width = 0;
                for (i = 0; i < configure_args.length; i++) {