mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
88 lines
3.1 KiB
Plaintext
88 lines
3.1 KiB
Plaintext
dnl The contents of this file are subject to the Netscape Public
|
|
dnl License Version 1.1 (the "License"); you may not use this file
|
|
dnl except in compliance with the License. You may obtain a copy of
|
|
dnl the License at http://www.mozilla.org/NPL/
|
|
dnl
|
|
dnl Software distributed under the License is distributed on an "AS
|
|
dnl IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
dnl implied. See the License for the specific language governing
|
|
dnl rights and limitations under the License.
|
|
dnl
|
|
dnl The Original Code is this file as it was released upon February 18, 1999.
|
|
dnl
|
|
dnl The Initial Developer of the Original Code is Netscape
|
|
dnl Communications Corporation. Portions created by Netscape are
|
|
dnl Copyright (C) 1999 Netscape Communications Corporation. All
|
|
dnl Rights Reserved.
|
|
dnl
|
|
dnl Contributor(s):
|
|
dnl
|
|
divert(-1)dnl Throw away output until we want it
|
|
changequote([, ])
|
|
|
|
dnl webify-configure.m4 - Read in configure.in and print options to stdout.
|
|
dnl
|
|
dnl Usage:
|
|
dnl m4 webify-configure.in configure.in
|
|
dnl
|
|
dnl Send comments, improvements, bugs to Steve Lamm (slamm@netscape.com).
|
|
|
|
|
|
dnl MOZ_ARG_ENABLE_BOOL( NAME, HELP, IF-YES [, IF-NO [, ELSE]])
|
|
dnl MOZ_ARG_DISABLE_BOOL( NAME, HELP, IF-NO [, IF-YES [, ELSE]])
|
|
dnl MOZ_ARG_ENABLE_STRING( NAME, HELP, IF-SET [, ELSE])
|
|
dnl MOZ_ARG_ENABLE_BOOL_OR_STRING( NAME, HELP, IF-YES, IF-NO, IF-SET[, ELSE]]])
|
|
dnl MOZ_ARG_WITH_BOOL( NAME, HELP, IF-YES [, IF-NO [, ELSE])
|
|
dnl MOZ_ARG_WITHOUT_BOOL( NAME, HELP, IF-NO [, IF-YES [, ELSE])
|
|
dnl MOZ_ARG_WITH_STRING( NAME, HELP, IF-SET [, ELSE])
|
|
dnl MOZ_READ_MYCONFIG() - Read in 'myconfig.sh' file
|
|
|
|
define(field_separator,<<fs>>)
|
|
|
|
dnl MOZ_ARG_PRINT(TYPE, PRENAME, NAME, HELP)
|
|
define(MOZ_ARG_PRINT,
|
|
[divert(0)dnl
|
|
[$1]field_separator[$2]field_separator[$3]field_separator[$4]
|
|
divert(-1)])
|
|
|
|
dnl MOZ_ARG_ENABLE_BOOL(NAME, HELP, IF-YES [, IF-NO [, ELSE]])
|
|
define(MOZ_ARG_ENABLE_BOOL,
|
|
[MOZ_ARG_PRINT(bool,enable,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_DISABLE_BOOL(NAME, HELP, IF-NO [, IF-YES [, ELSE]])
|
|
define(MOZ_ARG_DISABLE_BOOL,
|
|
[MOZ_ARG_PRINT(bool,disable,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_ENABLE_STRING(NAME, HELP, IF-SET [, ELSE])
|
|
define(MOZ_ARG_ENABLE_STRING,
|
|
[MOZ_ARG_PRINT(string,enable,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_ENABLE_BOOL_OR_STRING(NAME, HELP, IF-YES, IF-NO, IF-SET[, ELSE]]])
|
|
define(MOZ_ARG_ENABLE_BOOL_OR_STRING,
|
|
[MOZ_ARG_PRINT(bool_or_string,enable,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_WITH_BOOL(NAME, HELP, IF-YES [, IF-NO [, ELSE])
|
|
define(MOZ_ARG_WITH_BOOL,
|
|
[MOZ_ARG_PRINT(bool,with,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_WITHOUT_BOOL(NAME, HELP, IF-NO [, IF-YES [, ELSE])
|
|
define(MOZ_ARG_WITHOUT_BOOL,
|
|
[MOZ_ARG_PRINT(bool,without,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_WITH_STRING(NAME, HELP, IF-SET [, ELSE])
|
|
define(MOZ_ARG_WITH_STRING,
|
|
[MOZ_ARG_PRINT(string,with,[$1],[$2])])
|
|
|
|
dnl AC_ARG_ENABLE(NAME, HELP, IF-SET [, ELSE])
|
|
define(AC_ARG_ENABLE,
|
|
[MOZ_ARG_PRINT(unhandled,enable,[$1],[$2])])
|
|
|
|
dnl AC_ARG_WITH(NAME, HELP, IF-SET [, ELSE])
|
|
define(AC_ARG_WITH,
|
|
[MOZ_ARG_PRINT(unhandled,with,[$1],[$2])])
|
|
|
|
dnl MOZ_ARG_HEADER(Comment)
|
|
dnl This is used by webconfig to group options
|
|
define(MOZ_ARG_HEADER,
|
|
[MOZ_ARG_PRINT(header,,,[$1])])
|