-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
115 lines (95 loc) · 2.99 KB
/
Copy pathconfigure.ac
File metadata and controls
115 lines (95 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
dnl ===========================================================================
dnl "configure.in"
dnl
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.1.3)
AC_CONFIG_SRCDIR([src/supertux.cpp])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(dist-bzip2)
SDL_VERSION=1.2.4
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS(unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl ===========================================================================
dnl Give advanced users some options to play with
AC_MSG_CHECKING(for gprof mode)
AC_ARG_ENABLE(gprof,
AC_HELP_STRING([--enable-gprof], [enable GNU profiling support]),
[enable_gprof="$enableval"],
[enable_gprof="no"])
if test "x${enable_gprof}" != "xno"; then
CXXFLAGS="$CXXFLAGS -pg"
AC_MSG_RESULT([enabled])
else
AC_MSG_RESULT([disabled])
fi
AC_MSG_CHECKING(for debug mode)
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug], [enable debugging mode]),
[enable_debug="$enableval"],
[enable_debug="no"])
if test "x${enable_debug}" != "xno"; then
CXXFLAGS="$CXXFLAGS -Wall -W -DDEBUG -O0 -g3"
AC_MSG_RESULT([enabled])
else
AC_MSG_RESULT([disabled])
fi
AC_MSG_CHECKING(wether OpenGL should be used)
AC_ARG_ENABLE(opengl,
AC_HELP_STRING([--disable-opengl], [disable OpenGL support]),, enable_opengl="yes")
if test "x${enable_opengl}" != "xno"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
dnl ===========================================================================
dnl Check for SDL
AM_PATH_SDL($SDL_VERSION,
:,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
CFLAGS="$CFLAGS $SDL_CFLAGS"
LIBS="$LIBS $SDL_LIBS"
dnl Checks for additional libraries.
AC_CHECK_LIB(SDL_mixer, Mix_OpenAudio,,
AC_MSG_ERROR([SDL_mixer library required]))
AC_CHECK_LIB(SDL_image, IMG_Load,,
AC_MSG_ERROR([SDL_image library required]))
if test "x${enable_opengl}" != "xno"; then
AX_CHECK_GL
fi
if test "x$no_gl" = "xyes" -o "x$enable_opengl" = "xno"; then
CXXFLAGS="$CXXFLAGS -DNOOPENGL"
enable_opengl="no"
else
CFLAGS="$CFLAGS $GL_CFLAGS"
CXXFLAGS="$CXXFLAGS $GL_CFLAGS"
LIBS="$LIBS $GL_LIBS"
fi
AC_CHECK_LIB(z, gzopen,, AC_MSG_ERROR([*** zlib is missing]))
CXXFLAGS="$CXXFLAGS -DDATA_PREFIX='\"$datadir/supertux\"'"
dnl Checks for library functions.
AC_CHECK_FUNCS(mkdir strdup strstr)
AC_OUTPUT(Makefile src/Makefile data/Makefile)
echo ""
echo "Features:"
echo "========="
echo " Profile Mode: $enable_gprof"
echo " Debug Mode: $enable_debug"
echo " OpenGL Support: $enable_opengl"
echo ""
# EOF #