diff options
-rw-r--r-- | configure.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.in b/configure.in index eae4ac3..df323ca 100644 --- a/configure.in +++ b/configure.in @@ -28,8 +28,7 @@ AM_CONFIG_HEADER(src/config.h) dnl by default turn off debugging AC_MSG_CHECKING(whether to enable debugging) -AC_ARG_ENABLE(debug, - [ --enable-debug build with extra debugging messages], +AC_ARG_ENABLE(debug,AC_HELP_STRING([--enable-debug],[build with extra debugging messages]), [if test "x$enableval" != "xno"; then AC_DEFINE_UNQUOTED(DEBUG, 1, Define this to enable debugging messages) AC_MSG_RESULT(yes) @@ -38,13 +37,13 @@ AC_ARG_ENABLE(debug, AC_MSG_RESULT(no) fi],[AC_MSG_RESULT(no)]) -AC_ARG_WITH(xterm, [ --with-xterm=PROG set the x terminal emulator used by ratpoison ], +AC_ARG_WITH(xterm,AC_HELP_STRING([--with-xterm=PROG],[set the x terminal emulator used by ratpoison]), term_prog=$withval, term_prog="xterm") AC_DEFINE_UNQUOTED(TERM_PROG, "$term_prog", X terminal emulator to use) XFT_CFLAGS= XFT_LIBS= -AC_ARG_WITH(xft, AC_HELP_STRING([--without-xft], [Don't use the Xft library even if available]), +AC_ARG_WITH(xft,AC_HELP_STRING([--without-xft],[Don't use the Xft library even if available]), xft=$withval, xft=default) if test "x$xft" != "xno"; then dnl Configure Xft. @@ -96,8 +95,7 @@ fi dnl Those who do not learn the lessons of history dnl are doomed to delete it... yuk yuk. --ttn -AC_ARG_ENABLE(history, - [ --disable-history ignore libhistory (default: use it)], +AC_ARG_ENABLE(history,AC_HELP_STRING([--disable-history],[ignore libhistory (default: use it)]), [ if test x${enableval} = xyes ; then check_for_libhistory=yes else |