From: Ingo Ruhnke Date: Mon, 15 Mar 2004 01:14:11 +0000 (+0000) Subject: - reversed enable/disable to fit the default X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=a9b7269815d156e8f073a025e6a2b14534a670f6;p=supertux.git - reversed enable/disable to fit the default SVN-Revision: 231 --- diff --git a/configure.ac b/configure.ac index 2ecf8b49e..7bb1e49e2 100644 --- a/configure.ac +++ b/configure.ac @@ -51,7 +51,7 @@ fi AC_MSG_CHECKING(weather OpenGL should be used) AC_ARG_ENABLE(opengl, - AC_HELP_STRING([--enable-opengl], [enable OpenGL support]),, enable_opengl="yes") + AC_HELP_STRING([--disable-opengl], [disable OpenGL support]),, enable_opengl="yes") if test "x${enable_opengl}" != "xno"; then CFLAGS="$CFLAGS -D__OPENGL" AC_MSG_RESULT([yes]) @@ -62,7 +62,7 @@ fi AC_MSG_CHECKING(weather Sound should be supported) AC_ARG_ENABLE(sound, - AC_HELP_STRING([--enable-sound], [enable sound support]),, enable_sound="yes") + AC_HELP_STRING([--disable-sound], [disable sound support]),, enable_sound="yes") if test "x${enable_sound}" != "xno"; then CFLAGS="$CFLAGS -D__SOUND" AC_MSG_RESULT([yes])