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