- reversed enable/disable to fit the default
[supertux.git] / configure.ac
1 dnl ===========================================================================
2 dnl    "configure.in"
3 dnl
4 dnl author: Duong-Khang NGUYEN
5 dnl         neoneurone@users.sf.net
6 dnl ===========================================================================
7
8 dnl Process this file with autoconf to produce a configure script.
9
10 AC_INIT(SuperTux, 0.0.6-cvs)
11 AC_CONFIG_SRCDIR([src/supertux.c])
12 AC_CANONICAL_TARGET
13 AM_INIT_AUTOMAKE
14
15 SDL_VERSION=1.2.4
16
17 AC_PROG_CC
18 AC_PROG_INSTALL
19 AC_LANG(C)
20
21 dnl Checks for header files.
22 AC_HEADER_DIRENT
23 AC_HEADER_STDC
24 AC_CHECK_HEADERS(unistd.h)
25
26 dnl Checks for typedefs, structures, and compiler characteristics.
27 AC_C_CONST
28
29 dnl ===========================================================================
30 dnl Give advanced users some options to play with
31
32 AC_MSG_CHECKING(for gprof mode)
33 AC_ARG_ENABLE(gprof,
34               AC_HELP_STRING([--enable-gprof], [enable GNU profiling support]),, enable_gprof="no")
35 if test "x${enable_gprof}" != "xno"; then
36     CFLAGS="$CFLAGS -pg"
37     AC_MSG_RESULT([enabled])
38 else
39     AC_MSG_RESULT([disabled])
40 fi
41
42 AC_MSG_CHECKING(for debug mode)
43 AC_ARG_ENABLE(debug,
44               AC_HELP_STRING([--enable-debug], [enable debugging mode]),, enable_debug="no")
45 if test "x${enable_debug}" != "xno"; then
46     CFLAGS="$CFLAGS -DDEBUG"
47     AC_MSG_RESULT([enabled])
48 else
49     AC_MSG_RESULT([disabled])
50 fi
51
52 AC_MSG_CHECKING(weather OpenGL should be used)
53 AC_ARG_ENABLE(opengl,
54               AC_HELP_STRING([--disable-opengl], [disable OpenGL support]),, enable_opengl="yes")
55 if test "x${enable_opengl}" != "xno"; then
56     CFLAGS="$CFLAGS -D__OPENGL"
57     AC_MSG_RESULT([yes])
58 else
59     CFLAGS="$CFLAGS -DNOOPENGL"
60     AC_MSG_RESULT([no])
61 fi
62
63 AC_MSG_CHECKING(weather Sound should be supported)
64 AC_ARG_ENABLE(sound,
65               AC_HELP_STRING([--disable-sound], [disable sound support]),, enable_sound="yes")
66 if test "x${enable_sound}" != "xno"; then
67     CFLAGS="$CFLAGS -D__SOUND"
68     AC_MSG_RESULT([yes])
69 else
70     CFLAGS="$CFLAGS -DNOSOUND"
71     AC_MSG_RESULT([no])
72 fi
73
74 dnl ===========================================================================
75 dnl Check for SDL
76 AM_PATH_SDL($SDL_VERSION,
77             :,
78             AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
79
80 CFLAGS="$CFLAGS $SDL_CFLAGS"
81 LDFLAGS="$LDFLAGS $SDL_LIBS"
82
83 dnl Checks for additional libraries.
84 if test "x${enable_sound}" != "xno"; then
85   AC_CHECK_LIB(SDL_mixer, SDL_OpenAudio,, 
86   [CFLAGS="$CFLAGS -DNOSOUND"
87    enable_sound="no"])
88 fi
89
90 AC_CHECK_LIB(SDL_image, IMG_Load, ,AC_MSG_ERROR(SDL_image library required))
91
92 if test "x${enable_opengl}" != "xno"; then
93   # grumbel: xlib path is needed on my system to get OpenGL right,
94   # else I end up with a black screen, might be a debian issue or a
95   # local issue on my system, not sure
96   AC_PATH_XTRA
97   CFLAGS="$CFLAGS $X_CFLAGS"
98   LDFLAGS="$LDFLAGS $X_LIBS"
99
100   AC_CHECK_LIB(GL, glBegin,, 
101   [CFLAGS="$CFLAGS -DNOOPENGL"
102    enable_opengl="no"])
103 fi
104
105 # FIXME: Evil
106 CFLAGS="$CFLAGS -DDATA_PREFIX='\"$datadir/games/supertux/\"' -DLINUX"
107
108 dnl Checks for library functions.
109 AC_CHECK_FUNCS(mkdir strdup strstr)
110
111 AC_OUTPUT(Makefile src/Makefile data/Makefile)
112
113 echo ""
114 echo "Features:"
115 echo "========="
116 echo " Profile Mode:   $enable_gprof"
117 echo " Debug Mode:     $enable_debug"
118 echo " OpenGL Support: $enable_opengl"
119 echo " Sound Support:  $enable_sound"
120 echo ""
121
122 # EOF #