forked from adoptware/pinball
-
Notifications
You must be signed in to change notification settings - Fork 5
/
configure.ac
313 lines (254 loc) · 9.45 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
dnl Process this file with autoconf 2.53 to produce a configure script.
dnl init autoconf and automake
AC_INIT([pinball],
[0.3.20230219],
[[[email protected]]],
[pinball],
[https://pinball.sf.net])
AC_CONFIG_MACRO_DIRS([libltdl/m4])
AM_CONFIG_HEADER(pinconfig.h)
LT_CONFIG_LTDL_DIR([libltdl])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AC_PROG_MKDIR_P
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION(0.19.8)
dnl this is a c++ program
dnl CFLAGS="-g -W -Wall -O2"
dnl CXXFLAGS="-g -W -Wall -O2"
AC_ARG_WITH(cflags,
[AS_HELP_STRING([--with-cflags=CFLAGS], [use CFLAGS as compile time arguments.])],
[CFLAGS=$with_cflags; export CFLAGS])
AC_ARG_WITH(cxxflags,
[AS_HELP_STRING([--with-cxxflags=CXXFLAGS], [use CXXFLAGS as compile time arguments.])],
[CXXFLAGS=$with_cxxflags; export CXXFLAGS])
dnl Checks for programs.
AC_PROG_CC
AM_PROG_AR
AC_PROG_CXX
AC_PROG_INSTALL
_LT_SET_OPTION([LT_INIT],[dlopen])
AC_DIAGNOSE([obsolete],[AC_LIBTOOL_DLOPEN: Remove this warning and the call to _LT_SET_OPTION when you
put the 'dlopen' option into LT_INIT's first parameter.])
LT_INIT
LTDL_INIT
AC_SUBST(INCLTDL)
AC_SUBST(LIBLTDL)
dnl *******************************************
dnl PATHS AND DIRS ****************************
dnl data dirs, fuck I hate autoconf, spent 4 hours getting this right, had to
dnl steal it from xine and even that took a couple of hours
if test "x$prefix" = xNONE; then
prefix="${ac_default_prefix}"
fi
if test "x$exec_prefix" = xNONE; then
exec_prefix="$prefix"
fi
EM_DATADIR="$datadir/$PACKAGE_NAME"
AC_SUBST(EM_DATADIR)
eval EM_DATAPATH=`eval echo "$EM_DATADIR"`
AC_DEFINE_UNQUOTED(EM_DATADIR, "$EM_DATAPATH", [The data dir /usr/local/share/pinball])
EM_LIBDIR="$libdir/$PACKAGE_NAME"
AC_SUBST(EM_LIBDIR)
eval EM_LIBPATH=`eval echo "$EM_LIBDIR"`
AC_DEFINE_UNQUOTED(EM_LIBDIR, "$EM_LIBPATH", [The library or plugin dir /usr/local/lib/pinball])
dnl special fix for rpmbuild, I hate rpmbuild even more than I hate autoconf
AC_ARG_WITH(buildroot-prefix,
[AS_HELP_STRING([--with-buildroot-prefix=PFX], [Only used when building packages])],
buildroot_prefix="$withval",
buildroot_prefix="")
if test x"$buildroot_prefix" != "x"; then
EM_BUILD_ROOT=$buildroot_prefix
else
EM_BUILD_ROOT="/"
fi
AC_SUBST(EM_BUILD_ROOT)
AC_ARG_WITH(highscore-prefix,
[AS_HELP_STRING([--with-highscore-prefix=PFX], [Install highscore files in PFX (/var/games/pinball)])],
highscore_prefix="$withval",
highscore_prefix="")
if test x"$highscore_prefix" != "x"; then
EM_HIGHSCORE_DIR=$highscore_prefix
else
EM_HIGHSCORE_DIR="/var/games/pinball"
fi
dnl EM_HIGHSCORE_DIR="/var/games/pinball"
AC_SUBST(EM_HIGHSCORE_DIR)
eval EM_HIGHSCORE_PATH=`eval echo "$EM_HIGHSCORE_DIR"`
AC_DEFINE_UNQUOTED(EM_HIGHSCORE_DIR, "$EM_HIGHSCORE_PATH", [Highscore directory])
dnl EM_LOCALIZATION_DIR="/usr/share/locale"
AC_SUBST(EM_LOCALIZATION_DIR)
eval EM_LOCALIZATION_PATH=`eval echo "$EM_LOCALIZATION_DIR"`
AC_DEFINE_UNQUOTED(EM_LOCALIZATION_DIR, "$EM_LOCALIZATION_PATH", [Localization directory])
AC_ARG_ENABLE(libtest,
[AS_HELP_STRING([--disable-libtest],[SDL_image _mixer libtest work around ])],
,
enable_libtest=yes)
dnl *******************************************
dnl Allegro or SDL version ********************
AC_ARG_WITH(allegro,
[AS_HELP_STRING([--with-allegro],[use allegro (software rendering) instead of SDL and OpenGL])],
use_allegro="yes",
use_allegro="no")
if test x"$use_allegro" = "xno"; then
AC_DEFINE(EM_USE_SDL, [1], [Shall we use SDL and OpenGL])
dnl *******************************************
dnl OPENGL ************************************
dnl Figure out which math and GL library to use
AC_ARG_ENABLE([gles],
[AS_HELP_STRING([--enable-gles],[Enable OpenGL ES])],
[],
[enable_gles=no])
if test "x$enable_gles" = "xyes"; then
MATHLIB="-lm"
AC_CHECK_HEADER(
[GLES/gl.h],
[ac_cv_search_glLoadMatrixx="none required"],
[AC_MSG_ERROR(*** OpenGL ES headers not found on system!)]
)
AC_ARG_WITH(gles-library,
[AS_HELP_STRING([--with-gles-library=LIBRARY],[OpenGL ES library @<:@default=GLESv1_CM@:>@])],
GL_LIBS=-l"$withval",
GL_LIBS="-lGLESv1_CM")
AC_DEFINE(HAVE_OPENGLES, [1], [Support for OpenGL ES])
else
case "$target" in
*-*-darwin*)
MATHLIB=""
AC_CHECK_HEADER(
[OpenGL/gl.h],
[ac_cv_search_glVertex3f="none required"],
[AC_MSG_ERROR(*** OpenGL headers not found on system!)]
)
;;
*-*-aix*)
if test x$ac_cv_c_compiler_gnu = xyes; then
CFLAGS="-mthreads"
fi
SYS_GL_LIBS=""
;;
*)
MATHLIB="-lm"
AC_CHECK_HEADER(
[GL/gl.h],
AC_SEARCH_LIBS(glVertex3f, [opengl32 GL GL2 OpenGL], [test $ac_cv_search_glVertex3f = "none required" || GL_LIBS="$ac_cv_search_gVertex3f $GL_LIBS"], [AC_MSG_ERROR(*** OpenGL library not found on system!)]),
[AC_MSG_ERROR(*** OpenGL headers not found on system!)]
)
;;
esac
fi
AC_SUBST(MATHLIB)
LIBS="$MATHLIB $LIBS"
AC_SUBST(GL_LIBS)
LIBS="$GL_LIBS $LIBS"
dnl SDL ***************************************
PKG_CHECK_MODULES([SDL],
[sdl2 >= 2.0.0],
[],
[SDL_VERSION=2.0.0
AM_PATH_SDL2($SDL_VERSION, :,
AC_MSG_ERROR([SDL version $SDL_VERSION not found! http://www.libsdl.org]))])
CFLAGS="$CFLAGS $SDL_CFLAGS"
CPPFLAGS="$CPPFLAGS $SDL_CFLAGS"
LIBS="$LIBS $SDL_LIBS"
DEP_PKGS="$DEP_PKGS sdl2 >= 2.0.0"
dnl SDL_image *********************************
AC_ARG_WITH(sdl2image-prefix,
[AS_HELP_STRING([--with-sdl2image-prefix=PFX], [prefix where SDL2_image library is installed])],
sdl2image_prefix="$withval",
sdl2image_prefix="")
if test x"$sdl2image_prefix" != "x"; then
SDL2IMAGE_LIB="-L$sdl2image_prefix/lib"
SDL2IMAGE_CFLAGS="-I$sdl2image_prefix/include"
LDFLAGS="$SDL2IMAGE_LIB $LDFLAGS"
CPPFLAGS="$CPPFLAGS $SDL2IMAGE_CFLAGS"
CFLAGS="$CFLAGS $SDL2IMAGE_CFLAGS"
fi
if test x"$enable_libtest" = x"yes"; then
PKG_CHECK_MODULES([SDL2_IMAGE],
[SDL2_image],
[],
[AC_MSG_NOTICE([SDL2_image not located by pkg-config, checking with AC CHECK LIB:])
AC_CHECK_LIB([SDL2_image],
[IMG_Load],
[],
[AC_MSG_ERROR([SDL2_image not found! http://www.libsdl.org/projects/SDL2_image])])])
LIBS="$LIBS -lSDL2_image"
fi
dnl SDL_mixer **********************************
AC_ARG_WITH(sdl2mixer-prefix,
[AS_HELP_STRING([--with-sdl2mixer-prefix=PFX],[prefix where SDL2_mixer library is installed])],
sdl2mixer_prefix="$withval",
sdl2mixer_prefix="")
if test x"$sdl2mixer_prefix" != "x"; then
SDL2MIXER_LIB="-L$sdl2mixer_prefix/lib"
SDL2MIXER_CFLAGS="-I$sdl2mixer_prefix/include"
LDFLAGS="$SDL2MIXER_LIB $LDFLAGS"
CPPLAGS="$CPPFLAGS $SDL2MIXER_CFLAGS"
CFLAGS="$CFLAGS $SDL2MIXER_CFLAGS"
fi
if test x"$enable_libtest" = x"yes"; then
AC_CHECK_LIB(SDL2_mixer, Mix_OpenAudio, : ,AC_MSG_ERROR([*** libSDL2_mixer not found. Make sure you have the development package of SDL2_mixer installed - (www.libsdl.org) - or try to use --with-sdl2mixer-prefix option]), )
fi
LIBS="$LIBS -lSDL2_mixer"
dnl else use allegro instead of sdl
else
AC_DEFINE(EM_USE_ALLEGRO, [1], [Shall we use allegro - software rendering])
dnl *******************************************
dnl ALLEGRO ***********************************
AM_PATH_ALLEGRO(4.0.0, : , AC_MSG_ERROR([*** Allegro version 4.0.0 not found! Make sure you have the development package of Allegro installed - (www.talula.demon.co.uk/allegro) - or try to use the --with-allegro-prefix option]) )
CFLAGS="$CFLAGS $ALLEGRO_CFLAGS"
CPPFLAGS="$CPPFLAGS $ALLEGRO_CFLAGS"
LIBS="$LIBS $ALLEGRO_LIBS"
fi
dnl End Allegro or SDL *************************
dnl ********************************************
dnl CPP_UNIT ***********************************
AC_ARG_WITH(unittest,
[AS_HELP_STRING([--with-unittest],[Try to use unitest])],
use_unittest="yes",
use_unittest="no")
if test x"$use_unittest" = "xyes"; then
AM_PATH_CPPUNIT(1.8.0, [
AC_DEFINE(EM_UNIT_TEST, [1], [Shall we compile unittests])
CPPFLAGS="$CPPFLAGS $CPPUNIT_CFLAGS"
CFLAGS="$CFLAGS $CPPUNIT_CFLAGS"
LIBS="$LIBS $CPPUNIT_LIBS"
], AC_MSG_ERROR([*** CppUnit was not found. No unit testing.]))
fi
dnl ********************************************
dnl HEADERS ************************************
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/stat.h, : ,AC_MSG_ERROR([*** Header sys/stat.h not found. Not able to save config]))
AC_CHECK_HEADERS(sys/types.h, : ,AC_MSG_ERROR([*** Header sys/types.h not found. Not able to save config]))
dnl ********************************************
dnl Debug and Config ***************************
AC_ARG_WITH(debug,
[AS_HELP_STRING([--with-debug],[Compile debug version])],
use_debug="yes",
use_debug="no")
if test x"$use_debug" = "xyes"; then
AC_DEFINE(EM_DEBUG, [1], [Shall we use debug features such as profiling and keyboard ball steering])
fi
AC_ARG_WITH(trako,
[AS_HELP_STRING([--with-trako],[Compile trako version])],
use_trako="yes",
use_trako="no")
if test x"$use_trako" = "xyes"; then
AC_DEFINE(EM_TRAKO, [1], [Shall we use trako features such as profiling functs and classes])
fi
AC_DEFINE(EM_USE_SOURCE_SPECULAR, [1], [Specular])
dnl AC_DEFINE(EM_USE_FAST_FLOAT2INT)
dnl AC_DEFINE(EM_DEBUG_COLLISION)
AC_DEFINE(EM_USE_QUADTREE, [1], [Quadtree instead of octtree])
AC_DEFINE(EM_USE_SHARED_COLOR, [1], [One color per vertex])
dnl AC_SUBST(pkglibdir)
dnl AC_SUBST(pkgincludedir)
AC_CONFIG_FILES([Makefile addon/Makefile base/Makefile data/Makefile
src/Makefile test/Makefile pinball-config
data/tux/Makefile data/professor/Makefile data/hurd/Makefile
data/gnu/Makefile data/professor2/Makefile data/locale/Makefile.in
])
AC_OUTPUT