X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=d2bad3be4f0cf5ff8235edb935edc13dbc3d610f;hb=ae4c5568a656ac0d8130019fb44c58ed5eafb99a;hp=0b8b1f3f076c7e5080e7602835fcb492d92eee4f;hpb=e59a8e5e758978341d5410f09b705c4e969dc9a0;p=supertux.git diff --git a/configure.ac b/configure.ac index 0b8b1f3f0..d2bad3be4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,22 +1,29 @@ 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_INIT(SuperTux, 0.0.7-cvs) +AC_PREREQ([2.54]) +AC_INIT(SuperTux, 0.1.1) +AC_CONFIG_HEADERS(config.h) AC_CONFIG_SRCDIR([src/supertux.cpp]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE +dnl This is obsolete see automake1.7 // AM_CONFIG_HEADER SDL_VERSION=1.2.4 AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL +AC_PROG_LIBTOOL dnl Checks for header files. AC_HEADER_DIRENT @@ -43,7 +50,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 -O3 -g" AC_MSG_RESULT([enabled]) else AC_MSG_RESULT([disabled]) @@ -58,6 +65,8 @@ else AC_MSG_RESULT([no]) fi +AM_GNU_GETTEXT + dnl =========================================================================== dnl Check for SDL AM_PATH_SDL($SDL_VERSION, @@ -66,6 +75,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,, @@ -88,12 +98,16 @@ fi AC_CHECK_LIB(z, gzopen,, AC_MSG_ERROR([*** zlib is missing])) -CXXFLAGS="$CXXFLAGS -DDATA_PREFIX='\"$datatdir/supertux\"'" +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 + lib/Makefile) echo "" echo "Features:"