From 72ed2a4969bf135159114c44d42ee823df1d1e16 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 17 Oct 2009 21:15:59 +0000 Subject: [PATCH] AC_ARG_ENABLE does not take the full --enable-foo option. Thanks cph! git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@469 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index b5b8b85..e869c7f 100644 --- a/configure.ac +++ b/configure.ac @@ -65,14 +65,14 @@ AC_SUBST(MKDEP_DIRECT) AC_PROG_INSTALL AC_SEARCH_LIBS(initscr, [curses ncurses]) -AC_ARG_ENABLE(enable-virus, +AC_ARG_ENABLE(virus, [AC_HELP_STRING([--enable-virus], [Use the 'virus' vi clone instead of the friendly ee editor.])], [EDITOR=virus.c], [EDITOR=ee.c]) AC_SUBST(EDITOR) -AC_ARG_ENABLE(enable-debugfile, +AC_ARG_ENABLE(debugfile, [AC_HELP_STRING([--enable-debugfile], [Enable debugging output to a file.])], [], []) @@ -82,7 +82,7 @@ if test "$enable_debugfile" = yes; then fi -AC_ARG_ENABLE(enable-sqlite, +AC_ARG_ENABLE(sqlite, [AC_HELP_STRING([--enable-sqlite], [Use SQLite for the database instead of flat text file.])], [], [])