X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=2f132b65b5d0a334b52974b7dfafed0df5af517c;hb=f571fe4b6772b6f64ab231b89f26825362e78f9a;hp=7aa5911c3536391c0f877a69c569cf5d92e0dbeb;hpb=44bb878117ecd515518e08d67db8cfe18486c5a3;p=supertux.git diff --git a/configure.ac b/configure.ac index 7aa5911c3..2f132b65b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,14 +1,17 @@ dnl =========================================================================== dnl "configure.in" dnl -dnl author: Duong-Khang NGUYEN -dnl neoneurone@users.sf.net +dnl current contact: +dnl SuperTux development team +dnl +dnl original author: +dnl Duong-Khang NGUYEN +dnl neoneurone@users.sf.net dnl =========================================================================== dnl Process this file with autoconf to produce a configure script. - AC_PREREQ([2.54]) -AC_INIT(SuperTux, 0.0.7-cvs) +AC_INIT(SuperTux, 0.1.1) AC_CONFIG_SRCDIR([src/supertux.cpp]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE @@ -44,7 +47,7 @@ AC_MSG_CHECKING(for debug mode) AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [enable debugging mode]),, enable_debug="yes") if test "x${enable_debug}" != "xno"; then - CXXFLAGS="$CXXFLAGS -Wall -W -DDEBUG" + CXXFLAGS="$CXXFLAGS -Wall -Werror -DDEBUG -O0 -g3" AC_MSG_RESULT([enabled]) else AC_MSG_RESULT([disabled]) @@ -59,6 +62,8 @@ else AC_MSG_RESULT([no]) fi +AM_GNU_GETTEXT + dnl =========================================================================== dnl Check for SDL AM_PATH_SDL($SDL_VERSION, @@ -67,6 +72,7 @@ AM_PATH_SDL($SDL_VERSION, CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" +GL_LIBS="-lGL" dnl Checks for additional libraries. AC_CHECK_LIB(SDL_mixer, Mix_OpenAudio,, @@ -94,7 +100,10 @@ CXXFLAGS="$CXXFLAGS -DDATA_PREFIX='\"$datadir/supertux\"'" dnl Checks for library functions. AC_CHECK_FUNCS(mkdir strdup strstr) -AC_OUTPUT(Makefile src/Makefile data/Makefile) +AC_OUTPUT(Makefile m4/Makefile intl/Makefile + src/Makefile + data/Makefile + po/Makefile.in) echo "" echo "Features:"