]> skyeroc.xyz Git - dgamelaunch/commitdiff
AC_ARG_ENABLE does not take the full --enable-foo option. Thanks cph!
authorPasi Kallinen <paxed@alt.org>
Sat, 17 Oct 2009 21:15:59 +0000 (21:15 +0000)
committerPasi Kallinen <paxed@alt.org>
Sat, 17 Oct 2009 21:15:59 +0000 (21:15 +0000)
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@469 db0b04b0-f4d1-0310-9a6d-de3e77497b0e

configure.ac

index b5b8b85ab0d808516ad46484e1d3c9ea20b257dc..e869c7f8943c8cc1865890a65a293f0ae212e1e2 100644 (file)
@@ -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.])],
 [], [])