diff options
| author | Andreas Schwab | 2007-09-02 18:24:57 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2007-09-02 18:24:57 +0000 |
| commit | 1eb2208880dd6a0122638adc62d66d4f3407b05c (patch) | |
| tree | b0cda996d721464e29bbad79ed653a8d7be2439b | |
| parent | 13af5af5bbb69cd40386218f597a2cc5bc6af413 (diff) | |
| download | emacs-1eb2208880dd6a0122638adc62d66d4f3407b05c.tar.gz emacs-1eb2208880dd6a0122638adc62d66d4f3407b05c.zip | |
Use AS_HELP_STRING throughout.
| -rw-r--r-- | configure.in | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/configure.in b/configure.in index b913cf710d5..1bb1d355206 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -120,18 +120,20 @@ EMACS_ARG_N([xim],[don't use X11 XIM]) | |||
| 120 | EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X]) | 120 | EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X]) |
| 121 | 121 | ||
| 122 | AC_ARG_ENABLE(carbon-app, | 122 | AC_ARG_ENABLE(carbon-app, |
| 123 | [[ --enable-carbon-app[=DIR] [DIR=/Application] | 123 | [AS_HELP_STRING([--enable-carbon-app@<:@=DIR@:>@], |
| 124 | specify install directory for Emacs.app on Mac OS X]], | 124 | [specify install directory for Emacs.app on Mac OS X |
| 125 | [DIR=/Application]])], | ||
| 125 | [ carbon_appdir_x=${enableval}]) | 126 | [ carbon_appdir_x=${enableval}]) |
| 126 | 127 | ||
| 127 | AC_ARG_ENABLE(asserts, | 128 | AC_ARG_ENABLE(asserts, |
| 128 | [ --enable-asserts compile code with asserts enabled], | 129 | [AS_HELP_STRING([--enable-asserts], [compile code with asserts enabled])], |
| 129 | USE_XASSERTS=$enableval, | 130 | USE_XASSERTS=$enableval, |
| 130 | USE_XASSERTS=no) | 131 | USE_XASSERTS=no) |
| 131 | 132 | ||
| 132 | AC_ARG_ENABLE(maintainer-mode, | 133 | AC_ARG_ENABLE(maintainer-mode, |
| 133 | [ --enable-maintainer-mode enable make rules and dependencies not useful | 134 | [AS_HELP_STRING([--enable-maintainer-mode], |
| 134 | (and sometimes confusing) to the casual installer], | 135 | [enable make rules and dependencies not useful (and sometimes |
| 136 | confusing) to the casual installer])], | ||
| 135 | USE_MAINTAINER_MODE=$enableval, | 137 | USE_MAINTAINER_MODE=$enableval, |
| 136 | USE_MAINTAINER_MODE=no) | 138 | USE_MAINTAINER_MODE=no) |
| 137 | if test $USE_MAINTAINER_MODE = yes; then | 139 | if test $USE_MAINTAINER_MODE = yes; then |
| @@ -142,9 +144,9 @@ fi | |||
| 142 | AC_SUBST(MAINT) | 144 | AC_SUBST(MAINT) |
| 143 | 145 | ||
| 144 | AC_ARG_ENABLE(locallisppath, | 146 | AC_ARG_ENABLE(locallisppath, |
| 145 | [ --enable-locallisppath=PATH | 147 | [AS_HELP_STRING([--enable-locallisppath=PATH], |
| 146 | directories Emacs should search for lisp files | 148 | [directories Emacs should search for lisp files specific |
| 147 | specific to this site], | 149 | to this site])], |
| 148 | if test "${enableval}" = "no"; then | 150 | if test "${enableval}" = "no"; then |
| 149 | locallisppath= | 151 | locallisppath= |
| 150 | elif test "${enableval}" != "yes"; then | 152 | elif test "${enableval}" != "yes"; then |