// $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 \
// 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');
// 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")) {
+----------------------------------------------------------------------+
*/
-// $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;
}
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++) {