aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2007-09-02 18:24:57 +0000
committerAndreas Schwab2007-09-02 18:24:57 +0000
commit1eb2208880dd6a0122638adc62d66d4f3407b05c (patch)
treeb0cda996d721464e29bbad79ed653a8d7be2439b
parent13af5af5bbb69cd40386218f597a2cc5bc6af413 (diff)
downloademacs-1eb2208880dd6a0122638adc62d66d4f3407b05c.tar.gz
emacs-1eb2208880dd6a0122638adc62d66d4f3407b05c.zip
Use AS_HELP_STRING throughout.
-rw-r--r--configure.in18
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])
120EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X]) 120EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X])
121 121
122AC_ARG_ENABLE(carbon-app, 122AC_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
127AC_ARG_ENABLE(asserts, 128AC_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
132AC_ARG_ENABLE(maintainer-mode, 133AC_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)
137if test $USE_MAINTAINER_MODE = yes; then 139if test $USE_MAINTAINER_MODE = yes; then
@@ -142,9 +144,9 @@ fi
142AC_SUBST(MAINT) 144AC_SUBST(MAINT)
143 145
144AC_ARG_ENABLE(locallisppath, 146AC_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])],
148if test "${enableval}" = "no"; then 150if test "${enableval}" = "no"; then
149 locallisppath= 151 locallisppath=
150elif test "${enableval}" != "yes"; then 152elif test "${enableval}" != "yes"; then