Use AS_HELP_STRING throughout.
This commit is contained in:
parent
13af5af5bb
commit
1eb2208880
1 changed files with 10 additions and 8 deletions
18
configure.in
18
configure.in
|
@ -120,18 +120,20 @@ EMACS_ARG_N([xim],[don't use X11 XIM])
|
|||
EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X])
|
||||
|
||||
AC_ARG_ENABLE(carbon-app,
|
||||
[[ --enable-carbon-app[=DIR] [DIR=/Application]
|
||||
specify install directory for Emacs.app on Mac OS X]],
|
||||
[AS_HELP_STRING([--enable-carbon-app@<:@=DIR@:>@],
|
||||
[specify install directory for Emacs.app on Mac OS X
|
||||
[DIR=/Application]])],
|
||||
[ carbon_appdir_x=${enableval}])
|
||||
|
||||
AC_ARG_ENABLE(asserts,
|
||||
[ --enable-asserts compile code with asserts enabled],
|
||||
[AS_HELP_STRING([--enable-asserts], [compile code with asserts enabled])],
|
||||
USE_XASSERTS=$enableval,
|
||||
USE_XASSERTS=no)
|
||||
|
||||
AC_ARG_ENABLE(maintainer-mode,
|
||||
[ --enable-maintainer-mode enable make rules and dependencies not useful
|
||||
(and sometimes confusing) to the casual installer],
|
||||
[AS_HELP_STRING([--enable-maintainer-mode],
|
||||
[enable make rules and dependencies not useful (and sometimes
|
||||
confusing) to the casual installer])],
|
||||
USE_MAINTAINER_MODE=$enableval,
|
||||
USE_MAINTAINER_MODE=no)
|
||||
if test $USE_MAINTAINER_MODE = yes; then
|
||||
|
@ -142,9 +144,9 @@ fi
|
|||
AC_SUBST(MAINT)
|
||||
|
||||
AC_ARG_ENABLE(locallisppath,
|
||||
[ --enable-locallisppath=PATH
|
||||
directories Emacs should search for lisp files
|
||||
specific to this site],
|
||||
[AS_HELP_STRING([--enable-locallisppath=PATH],
|
||||
[directories Emacs should search for lisp files specific
|
||||
to this site])],
|
||||
if test "${enableval}" = "no"; then
|
||||
locallisppath=
|
||||
elif test "${enableval}" != "yes"; then
|
||||
|
|
Loading…
Add table
Reference in a new issue