-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
275 lines (244 loc) · 7.46 KB
/
configure.ac
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
dnl Process this file with autoconf to produce a configure script.
dnl Written in 2000 by Christian Bauer <[email protected]>
AC_INIT([Aleph One/SDL], m4_esyscmd([ grep '^#define A1_DATE_VERSION' Source_Files/Misc/alephversion.h | sed -e 's/\(.*\"\)\(.*\)\(\"\)/\2/g' | tr -d '\n']), [http://sourceforge.net/bugs/?group_id=1997], [AlephOne])
AC_CONFIG_SRCDIR([Source_Files/shell.cpp])
AC_PREREQ(2.52)
dnl Detect the canonical host and target build environment.
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
dnl Init automake.
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)
dnl Configure options.
AC_ARG_ENABLE(opengl,
[ --enable-opengl use OpenGL for rendering [default=yes]], , enable_opengl=yes)
AC_ARG_ENABLE(mad,
[ --enable-mad use libmad for mp3 playback [default=yes]], , enable_mad=yes)
AC_ARG_ENABLE(sndfile,
[ --enable-sndfile use libsndfile for decoding audio files [default=yes]], , enable_sndfile=yes)
AC_ARG_ENABLE(vorbis,
[ --enable-vorbis enable ogg/vorbis music playback [default=yes]], , enable_vorbis=yes)
AC_ARG_ENABLE(lua,
[ --enable-lua use built-in Lua scripting [default=yes]], , enable_lua=yes)
AC_ARG_ENABLE(smpeg,
[ --enable-smpeg use SMPEG for movie playback [default=yes]], , enable_smpeg=yes)
AC_ARG_ENABLE(speex,
[ --enable-speex enable Speex net mic playback [default=yes]], , enable_speex=yes)
AC_ARG_ENABLE(alsa,
[ --enable-alsa enable ALSA net mic transmission [default=yes]], , enable_alsa=yes)
AC_ARG_ENABLE(ttf,
[ --enable-ttf enable SDL_ttf font rendering [default=yes]], , enable_ttf=yes)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
AC_PROG_INSTALL
AC_PROG_RANLIB
dnl some platform specific stuff
case $target in
*-*-mingw32*)
AC_CHECK_TOOL(WINDRES, windres, :)
;;
*-*-netbsd*)
CPPFLAGS="$CPPFLAGS -I/usr/pkg/include"
;;
*)
;;
esac
dnl Checks for headers.
AC_CHECK_HEADERS(unistd.h)
AC_CHECK_HEADERS(pwd.h)
dnl Checks for library functions.
AC_CHECK_FUNC(snprintf, [
AC_DEFINE(HAVE_SNPRINTF, 1, [snprintf() is available])
])
AC_CHECK_FUNC(vsnprintf, [
AC_DEFINE(HAVE_VSNPRINTF, 1, [vsnprintf() is available])
])
dnl Check for SDL.
AM_PATH_SDL(1.2.0, , AC_MSG_ERROR([You need SDL 1.2 to run Aleph One.]))
CPPFLAGS="$CPPFLAGS $SDL_CFLAGS -DSDL"
LIBS="$LIBS $SDL_LIBS"
dnl Check for SDL_image.
AC_CHECK_HEADERS(SDL_image.h, [
AC_CHECK_LIB(SDL_image, IMG_Load, [
LIBS="-lSDL_image $LIBS"
AC_DEFINE(HAVE_SDL_IMAGE, 1, [SDL_image support is enabled])
])
])
if [[ "x$enable_ttf" = "xyes" ]]; then
AC_CHECK_HEADERS(SDL_ttf.h, [
AC_CHECK_LIB(SDL_ttf, TTF_Init, [
LIBS="-lSDL_ttf $LIBS"
AC_DEFINE(HAVE_SDL_TTF, 1, [SDL_TTF support is enabled])
])
])
fi
dnl Check for SDL_net.
AC_CHECK_HEADERS(SDL_net.h, [
AC_CHECK_LIB(SDL_net, SDLNet_Init, [
LIBS="-lSDL_net $LIBS"
AC_DEFINE(HAVE_SDL_NET, 1, [SDL_net support is enabled])
])
])
if [[ "x$ac_cv_lib_SDL_net_SDLNet_Init" != xyes ]]; then
AC_MSG_ERROR([You need SDL_net to run Aleph One.])
fi
AM_CONDITIONAL(HAVE_SDL_NET, test x$ac_cv_lib_SDL_net_SDLNet_Init = xyes)
AC_SEARCH_LIBS(gethostbyname, nsl)
AC_SEARCH_LIBS(socket, socket, ,
[AC_CHECK_LIB(nsl, socket, LIBS="$LIBS -lsocket -lnsl", , -lsocket)])
dnl Check for zlib
AC_CHECK_HEADER(zlib.h, , AC_ERROR([Aleph One requires zlib]))
AC_CHECK_LIB(z, zlibVersion, LIBS="-lz $LIBS", AC_ERROR([Aleph One requires zlib]))
dnl Check for boost/bind
AC_LANG_PUSH(C++)
AC_CHECK_HEADER([boost/bind.hpp], , [AC_MSG_ERROR([You need boost/bind.hpp from the boost library to run Aleph One])])
AC_LANG_POP(C++)
dnl Check for boost/function
AC_LANG_PUSH(C++)
AC_CHECK_HEADER([boost/function.hpp], , [AC_MSG_ERROR([You need boost/function.hpp from the boost library to run Aleph One])])
AC_LANG_POP(C++)
if [[ "x$enable_smpeg" = "xyes" ]]; then
dnl Check for SMPEG
AC_CHECK_HEADERS([smpeg/smpeg.h], [
AC_CHECK_LIB(smpeg, SMPEG_new, [
LIBS="-lsmpeg $LIBS"
AC_DEFINE(HAVE_SMPEG, 1, [SMPEG movie playback is enabled])
])
])
fi
if [[ "x$enable_mad" = "xyes" ]]; then
dnl Check for libmad
AC_CHECK_HEADERS([mad.h], [
AC_CHECK_LIB(mad, mad_stream_init, [
LIBS="-lmad $LIBS"
AC_DEFINE(HAVE_MAD, 1, [MAD mp3 playback is enabled])
])
])
fi
if [[ "x$enable_sndfile" = "xyes" ]]; then
dnl Check for libsndfile
AC_CHECK_HEADERS([sndfile.h], [
AC_CHECK_LIB(sndfile, sf_open, [
LIBS="-lsndfile $LIBS"
AC_DEFINE(HAVE_SNDFILE, 1, [libsndfile support is enabled])
])
])
fi
if [[ "x$enable_vorbis" = "xyes" ]]; then
dnl Check for vorbisfile
AC_CHECK_HEADERS([vorbis/vorbisfile.h], [
AC_CHECK_LIB(vorbisfile, ov_open, [
LIBS="-lvorbisfile $LIBS"
AC_DEFINE(HAVE_VORBISFILE, 1, [vorbis support is enabled])
])
])
fi
if [[ "x$enable_lua" = "xyes" ]]; then
AC_DEFINE(HAVE_LUA, 1, [Lua support is enabled])
fi
if [[ "x$enable_speex" = "xyes" ]]; then
dnl Check for Speex
AC_CHECK_HEADERS(speex/speex.h, [
AC_CHECK_LIB(speex, speex_decoder_init, [
LIBS="-lspeex $LIBS"
AC_DEFINE(SPEEX, 1, [Speex support is enabled])
])
AC_CHECK_LIB(speexdsp, speex_preprocess_state_init, [
LIBS="-lspeexdsp $LIBS"
])
])
fi
if [[ "x$enable_alsa" = "xyes" ]]; then
dnl Check for ALSA
AC_CHECK_HEADERS([alsa/asoundlib.h], [
AC_CHECK_LIB(asound, snd_pcm_open, [
LIBS="-lasound $LIBS"
AC_DEFINE(HAVE_ALSA, 1, [ALSA netmic is enabled])
])
])
fi
dnl Figure out which OpenGL library to use
case "$target" in
*-*-cygwin* | *-*-mingw32*)
SYS_GL_LIBS="-lopengl32 -lglu32"
LIBS="$LIBS -lstdc++"
;;
*-*-darwin*)
SYS_GL_LIBS="-F/System/Library/Frameworks -framework AGL -framework OpenGL"
CPPFLAGS="$CPPFLAGS -D__DARWIN__ -F/System/Library/Frameworks -I/System/Library/Frameworks/OpenGL.framework/Headers"
;;
*-*-linux*)
SYS_GL_LIBS="-lGL -lpthread"
;;
*)
SYS_GL_LIBS="-lGL"
;;
esac
dnl Check for OpenGL.
if [[ "x$enable_opengl" = "xyes" ]]; then
AC_MSG_CHECKING(for OpenGL support)
have_opengl=no
AC_TRY_COMPILE([
#ifndef __DARWIN__
#include <GL/gl.h>
#else
#include <OpenGL/gl.h>
#endif
],[
],[
have_opengl=yes
])
AC_MSG_RESULT($have_opengl)
if test x$have_opengl = xyes; then
AC_DEFINE(HAVE_OPENGL, 1, [OpenGL support is enabled])
AC_CHECK_LIB(GLU, gluScaleImage, [SYS_GL_LIBS="$SYS_GL_LIBS -lGLU"], , $SYS_GL_LIBS)
LIBS="$LIBS $SYS_GL_LIBS"
AC_CHECK_HEADERS(GL/glext.h, [], [], [#include <GL/gl.h>])
else
AC_MSG_WARN([Could not find OpenGL, ignoring --enable-opengl.])
fi
fi
dnl Set target system name.
AC_DEFINE_UNQUOTED(TARGET_PLATFORM, "$target_os $target_cpu", [Target platform name])
dnl add some windows goodies
case $target in
*-*-mingw32*)
make_windows=true
AC_DEFINE(WIN32_DISABLE_MUSIC, 1, [Win32 music is disabled])
LIBS="$LIBS -ldsound -lwsock32"
;;
*)
make_windows=false ;;
esac
AM_CONDITIONAL(MAKE_WINDOWS, test x$make_windows = xtrue)
dnl Generate Makefiles.
AC_CONFIG_FILES([
Makefile
AlephOne.spec
Source_Files/Makefile
Source_Files/CSeries/Makefile
Source_Files/Expat/Makefile
Source_Files/Files/Makefile
Source_Files/GameWorld/Makefile
Source_Files/Input/Makefile
Source_Files/LibNAT/Makefile
Source_Files/Lua/Makefile
Source_Files/Misc/Makefile
Source_Files/ModelView/Makefile
Source_Files/Network/Makefile
Source_Files/Network/Metaserver/Makefile
Source_Files/RenderMain/Makefile
Source_Files/RenderOther/Makefile
Source_Files/Sound/Makefile
Source_Files/TCPMess/Makefile
Source_Files/XML/Makefile
tools/Makefile
data/Makefile
data/default_theme/Makefile
])
AC_OUTPUT
dnl Print summary.
echo "Configuration done. Now type \"make\"."