X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=d3d79acf03330d98837db0caca3d01021766631b;hb=697710a2b7e03f957b8af194bc87ef78147c4086;hp=6734517260c88097a20e795a2ae1eda444420b01;hpb=f6447cfcc7f77f216982dd6c01701e6c4f5d4fa1;p=supertux.git diff --git a/configure.ac b/configure.ac index 673451726..d3d79acf0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,14 +1,18 @@ 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.0pre1) AC_CONFIG_SRCDIR([src/supertux.cpp]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE @@ -44,7 +48,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 -W -DDEBUG -O0 -g3" AC_MSG_RESULT([enabled]) else AC_MSG_RESULT([disabled]) @@ -89,7 +93,7 @@ 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)