| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- # _AC_INIT_HELP
- # -------------
- # Handle the `configure --help' message.
- m4_define([_AC_INIT_HELP],
- [m4_divert_push([HELP_BEGIN])dnl
- #
- # Report the --help message.
- #
- if test "$ac_init_help" = "long"; then
- # Omit some internal or obsolete options to make the list less imposing.
- # This message is too long to be a string in the A/UX 3.1 sh.
- cat <<_ACEOF
- \`configure' configures m4_ifset([AC_PACKAGE_STRING],
- [AC_PACKAGE_STRING],
- [this package]) to adapt to many kinds of systems.
- Usage: $[0] [[OPTION]]... [[VAR=VALUE]]...
- [To assign environment variables (e.g., CC, CFLAGS...), specify them as
- VAR=VALUE. See below for descriptions of some of the useful variables.
- Defaults for the options are specified in brackets.
- Configuration:
- -h, --help display this help and exit
- --help=short display options specific to this package
- --help=recursive display the short help of all the included packages
- -V, --version display version information and exit
- -q, --quiet, --silent do not print \`checking ...' messages
- --cache-file=FILE cache test results in FILE [disabled]
- -C, --config-cache alias for \`--cache-file=config.cache'
- -n, --no-create do not create output files
- --srcdir=DIR find the sources in DIR [configure dir or \`..']
- Installation directories:
- --prefix=PREFIX install architecture-independent files in PREFIX
- [/usr/local/nagios]
- --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
- [PREFIX]
- By default, \`make install' will install all the files in
- \`/usr/local/nagios/bin', \`/usr/local/nagios/lib' etc. You can specify
- an installation prefix other than \`/usr/local/nagios' using \`--prefix',
- for instance \`--prefix=$HOME'.
- For better control, use the options below.
- Fine tuning of the installation directories:
- --bindir=DIR user executables [EPREFIX/bin]
- --sbindir=DIR system admin executables [EPREFIX/sbin]
- --libexecdir=DIR plugins, brokers, CGI [EPREFIX/libexec]
- --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
- --localstatedir=DIR modifiable single-machine data [PREFIX/var]
- --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
- --datadir=DIR r/o arch.-independent data [DATAROOTDIR/PKG_NAME]
- --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
- _ACEOF
- cat <<\_ACEOF]
- m4_divert_pop([HELP_BEGIN])dnl
- dnl The order of the diversions here is
- dnl - HELP_BEGIN
- dnl which may be extended by extra generic options such as with X or
- dnl AC_ARG_PROGRAM. Displayed only in long --help.
- dnl
- dnl - HELP_CANON
- dnl Support for cross compilation (--build, --host and --target).
- dnl Display only in long --help.
- dnl
- dnl - HELP_ENABLE
- dnl which starts with the trailer of the HELP_BEGIN, HELP_CANON section,
- dnl then implements the header of the non generic options.
- dnl
- dnl - HELP_WITH
- dnl
- dnl - HELP_VAR
- dnl
- dnl - HELP_VAR_END
- dnl
- dnl - HELP_END
- dnl initialized below, in which we dump the trailer (handling of the
- dnl recursion for instance).
- m4_divert_push([HELP_ENABLE])dnl
- _ACEOF
- fi
- if test -n "$ac_init_help"; then
- m4_ifset([AC_PACKAGE_STRING],
- [ case $ac_init_help in
- short | recursive ) echo "Configuration of AC_PACKAGE_STRING:";;
- esac])
- cat <<\_ACEOF
- m4_divert_pop([HELP_ENABLE])dnl
- m4_divert_push([HELP_END])dnl
- Report bugs to m4_ifset([AC_PACKAGE_BUGREPORT], [<AC_PACKAGE_BUGREPORT>],
- [the package provider]).dnl
- m4_ifdef([AC_PACKAGE_NAME], [m4_ifset([AC_PACKAGE_URL], [
- AC_PACKAGE_NAME home page: <AC_PACKAGE_URL>.])dnl
- m4_if(m4_index(m4_defn([AC_PACKAGE_NAME]), [GNU ]), [0], [
- General help using GNU software: <http://www.gnu.org/gethelp/>.])])
- _ACEOF
- ac_status=$?
- fi
- if test "$ac_init_help" = "recursive"; then
- # If there are subdirs, report their specific --help.
- for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
- test -d "$ac_dir" ||
- { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
- continue
- _AC_SRCDIRS(["$ac_dir"])
- cd "$ac_dir" || { ac_status=$?; continue; }
- # Check for guested configure.
- if test -f "$ac_srcdir/configure.gnu"; then
- echo &&
- $SHELL "$ac_srcdir/configure.gnu" --help=recursive
- elif test -f "$ac_srcdir/configure"; then
- echo &&
- $SHELL "$ac_srcdir/configure" --help=recursive
- else
- AC_MSG_WARN([no configuration information is in $ac_dir])
- fi || ac_status=$?
- cd "$ac_pwd" || { ac_status=$?; break; }
- done
- fi
- test -n "$ac_init_help" && exit $ac_status
- m4_divert_pop([HELP_END])dnl
- ])# _AC_INIT_HELP
|