- fixed configure.ac's AM_CONFIG_HEADER issue
[supertux.git] / configure.ac
1 dnl ===========================================================================
2 dnl    "configure.in"
3 dnl
4 dnl current contact:
5 dnl          SuperTux development team
6 dnl
7 dnl original author:
8 dnl          Duong-Khang NGUYEN
9 dnl          neoneurone@users.sf.net
10 dnl ===========================================================================
11
12 dnl Process this file with autoconf to produce a configure script.
13 AC_PREREQ([2.54])
14 AC_INIT(SuperTux, 0.1.1)
15 AM_CONFIG_HEADER(config.h)
16 AC_CONFIG_SRCDIR([src/supertux.cpp])
17 AC_CANONICAL_TARGET
18 AM_INIT_AUTOMAKE
19
20 SDL_VERSION=1.2.4
21
22 AC_PROG_CC
23 AC_PROG_CXX
24 AC_PROG_INSTALL
25
26 dnl Checks for header files.
27 AC_HEADER_DIRENT
28 AC_HEADER_STDC
29 AC_CHECK_HEADERS(unistd.h)
30
31 dnl Checks for typedefs, structures, and compiler characteristics.
32 AC_C_CONST
33
34 dnl ===========================================================================
35 dnl Give advanced users some options to play with
36
37 AC_MSG_CHECKING(for gprof mode)
38 AC_ARG_ENABLE(gprof,
39               AC_HELP_STRING([--enable-gprof], [enable GNU profiling support]),, enable_gprof="no")
40 if test "x${enable_gprof}" != "xno"; then
41     CXXFLAGS="$CXXFLAGS -pg"
42     AC_MSG_RESULT([enabled])
43 else
44     AC_MSG_RESULT([disabled])
45 fi
46
47 AC_MSG_CHECKING(for debug mode)
48 AC_ARG_ENABLE(debug,
49               AC_HELP_STRING([--enable-debug], [enable debugging mode]),, enable_debug="yes")
50 if test "x${enable_debug}" != "xno"; then
51     CXXFLAGS="$CXXFLAGS -Wall -Werror -DDEBUG -O3 -g"
52     AC_MSG_RESULT([enabled])
53 else
54     AC_MSG_RESULT([disabled])
55 fi
56
57 AC_MSG_CHECKING(wether OpenGL should be used)
58 AC_ARG_ENABLE(opengl,
59               AC_HELP_STRING([--disable-opengl], [disable OpenGL support]),, enable_opengl="yes")
60 if test "x${enable_opengl}" != "xno"; then
61     AC_MSG_RESULT([yes])
62 else
63     AC_MSG_RESULT([no])
64 fi
65
66 AM_GNU_GETTEXT
67
68 dnl ===========================================================================
69 dnl Check for SDL
70 AM_PATH_SDL($SDL_VERSION,
71             :,
72             AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
73 CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
74 CFLAGS="$CFLAGS $SDL_CFLAGS"
75 LIBS="$LIBS $SDL_LIBS"
76 GL_LIBS="-lGL"
77
78 dnl Checks for additional libraries.
79 AC_CHECK_LIB(SDL_mixer, Mix_OpenAudio,,
80         AC_MSG_ERROR([SDL_mixer library required]))
81
82 AC_CHECK_LIB(SDL_image, IMG_Load,,
83         AC_MSG_ERROR([SDL_image library required]))
84
85 if test "x${enable_opengl}" != "xno"; then
86   AX_CHECK_GL
87 fi
88 if test "x$no_gl" = "xyes" -o "x$enable_opengl" = "xno"; then
89   CXXFLAGS="$CXXFLAGS -DNOOPENGL"
90   enable_opengl="no"
91 else
92   CFLAGS="$CFLAGS $GL_CFLAGS"
93   CXXFLAGS="$CXXFLAGS $GL_CFLAGS"
94   LIBS="$LIBS $GL_LIBS"
95 fi
96
97 AC_CHECK_LIB(z, gzopen,, AC_MSG_ERROR([*** zlib is missing]))
98
99 CXXFLAGS="$CXXFLAGS -DDATA_PREFIX='\"$datadir/supertux\"'" 
100
101 dnl Checks for library functions.
102 AC_CHECK_FUNCS(mkdir strdup strstr)
103
104 AC_OUTPUT(Makefile m4/Makefile intl/Makefile
105           src/Makefile
106           data/Makefile
107           po/Makefile.in)
108
109 echo ""
110 echo "Features:"
111 echo "========="
112 echo " Profile Mode:   $enable_gprof"
113 echo " Debug Mode:     $enable_debug"
114 echo " OpenGL Support: $enable_opengl"
115 echo ""
116
117 # EOF #