Skip to content

Latest commit

 

History

History
2444 lines (2317 loc) · 81.7 KB

configure.in

File metadata and controls

2444 lines (2317 loc) · 81.7 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
dnl Process this file with autoconf to produce a configure script.
AC_INIT(README)
Feb 7, 2006
Feb 7, 2006
3
AC_CONFIG_HEADER(include/SDL_config.h)
Feb 9, 2006
Feb 9, 2006
4
AC_GNU_SOURCE
Apr 26, 2001
Apr 26, 2001
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dnl Set various version strings - taken gratefully from the GTk sources
#
# Making releases:
# Edit include/SDL/SDL_version.h and change the version, then:
# SDL_MICRO_VERSION += 1;
# SDL_INTERFACE_AGE += 1;
# SDL_BINARY_AGE += 1;
# if any functions have been added, set SDL_INTERFACE_AGE to 0.
# if backwards compatibility has been broken,
# set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0.
#
SDL_MAJOR_VERSION=1
SDL_MINOR_VERSION=2
Jan 4, 2006
Jan 4, 2006
19
20
21
SDL_MICRO_VERSION=10
SDL_INTERFACE_AGE=3
SDL_BINARY_AGE=10
Apr 26, 2001
Apr 26, 2001
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
AC_SUBST(SDL_MAJOR_VERSION)
AC_SUBST(SDL_MINOR_VERSION)
AC_SUBST(SDL_MICRO_VERSION)
AC_SUBST(SDL_INTERFACE_AGE)
AC_SUBST(SDL_BINARY_AGE)
AC_SUBST(SDL_VERSION)
# libtool versioning
LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION
LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE`
LT_REVISION=$SDL_INTERFACE_AGE
LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
AC_SUBST(LT_RELEASE)
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
dnl Detect the canonical host and target build environment
Feb 16, 2006
Feb 16, 2006
43
AC_CONFIG_AUX_DIRS($srcdir/build-scripts)
Dec 7, 2002
Dec 7, 2002
44
AC_CANONICAL_SYSTEM
Feb 9, 2006
Feb 9, 2006
45
46
47
48
49
50
AC_C_BIGENDIAN
if test x$ac_cv_c_bigendian = xyes; then
AC_DEFINE(SDL_BYTEORDER, 4321)
else
AC_DEFINE(SDL_BYTEORDER, 1234)
fi
Apr 26, 2001
Apr 26, 2001
51
Feb 20, 2006
Feb 20, 2006
52
53
54
55
56
dnl Set up the compiler and linker flags
INCLUDE="-I$srcdir/include"
if test x$srcdir != x.; then
INCLUDE="-Iinclude $INCLUDE"
fi
Feb 16, 2006
Feb 16, 2006
57
58
59
case "$target" in
*-*-cygwin*)
# We build SDL on cygwin without the UNIX emulation layer
Feb 21, 2006
Feb 21, 2006
60
CFLAGS="$CFLAGS -I/usr/include/mingw -mno-cygwin"
Feb 20, 2006
Feb 20, 2006
61
BUILD_CFLAGS="$CFLAGS \$(INCLUDE)"
Feb 20, 2006
Feb 20, 2006
62
BUILD_LDFLAGS="$LDFLAGS -mno-cygwin"
Feb 21, 2006
Feb 21, 2006
63
SDL_CFLAGS="-I/usr/include/mingw -mno-cygwin"
Feb 20, 2006
Feb 20, 2006
64
SDL_LIBS="-lSDL -mno-cygwin"
Feb 16, 2006
Feb 16, 2006
65
66
;;
*)
Feb 20, 2006
Feb 20, 2006
67
68
CFLAGS="$CFLAGS -D_GNU_SOURCE=1"
BUILD_CFLAGS="$CFLAGS \$(INCLUDE)"
Feb 20, 2006
Feb 20, 2006
69
BUILD_LDFLAGS="$LDFLAGS"
Feb 20, 2006
Feb 20, 2006
70
71
SDL_CFLAGS=""
SDL_LIBS="-lSDL"
Feb 16, 2006
Feb 16, 2006
72
73
;;
esac
Feb 19, 2006
Feb 19, 2006
74
Apr 26, 2001
Apr 26, 2001
75
76
dnl Check for tools
AC_LIBTOOL_WIN32_DLL
Feb 16, 2006
Feb 16, 2006
77
AC_PROG_LIBTOOL
Apr 26, 2001
Apr 26, 2001
78
AC_PROG_CC
Sep 30, 2001
Sep 30, 2001
79
AC_PROG_CXX
Apr 26, 2001
Apr 26, 2001
80
AC_PROG_INSTALL
Feb 20, 2006
Feb 20, 2006
81
AC_PROG_MAKE_SET
Feb 7, 2006
Feb 7, 2006
82
Feb 9, 2006
Feb 9, 2006
83
dnl Check for compiler characteristics
Feb 7, 2006
Feb 7, 2006
84
85
AC_C_CONST
AC_C_INLINE
Feb 9, 2006
Feb 9, 2006
86
87
AC_C_VOLATILE
Feb 16, 2006
Feb 16, 2006
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
dnl See whether we are allowed to use the system C library
AC_ARG_ENABLE(libc,
AC_HELP_STRING([--enable-libc], [Use the system C library [default=yes]]),
, enable_libc=yes)
if test x$enable_libc = xyes; then
AC_DEFINE(HAVE_LIBC)
dnl Check for C library headers
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h inttypes.h stdint.h ctype.h math.h signal.h)
dnl Check for typedefs, structures, etc.
AC_TYPE_SIZE_T
if test x$ac_cv_header_inttypes_h = xyes -o x$ac_cv_header_stdint_h = xyes; then
AC_CHECK_TYPE(int64_t)
if test x$ac_cv_type_int64_t = xyes; then
AC_DEFINE(SDL_HAS_64BIT_TYPE)
fi
have_inttypes=yes
fi
Feb 9, 2006
Feb 9, 2006
108
Feb 16, 2006
Feb 16, 2006
109
110
111
112
113
dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_MEMCMP
if test x$ac_cv_func_memcmp_working = xyes; then
AC_DEFINE(HAVE_MEMCMP)
Feb 9, 2006
Feb 9, 2006
114
fi
Feb 16, 2006
Feb 16, 2006
115
116
117
118
AC_FUNC_STRTOD
if test x$ac_cv_func_strtod = xyes; then
AC_DEFINE(HAVE_STRTOD)
fi
Feb 19, 2006
Feb 19, 2006
119
AC_CHECK_FUNCS(malloc calloc realloc free getenv putenv unsetenv qsort abs bcopy memset memcpy memmove strlen strlcpy strlcat strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa _uitoa _ultoa strtol _i64toa _ui64toa strtoll atoi atof strcmp strncmp stricmp strcasecmp sscanf snprintf vsnprintf sigaction setjmp nanosleep)
Feb 19, 2006
Feb 19, 2006
120
Feb 20, 2006
Feb 20, 2006
121
AC_CHECK_LIB(m, pow, [BUILD_LDFLAGS="$BUILD_LDFLAGS -lm"])
Feb 16, 2006
Feb 16, 2006
122
123
124
fi
if test x$have_inttypes != xyes; then
Feb 9, 2006
Feb 9, 2006
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
AC_CHECK_SIZEOF(char, 1)
AC_CHECK_SIZEOF(short, 2)
AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(long, 4)
AC_CHECK_SIZEOF(long long, 8)
if test x$ac_cv_sizeof_char = x1; then
AC_DEFINE(int8_t, signed char)
AC_DEFINE(uint8_t, unsigned char)
fi
if test x$ac_cv_sizeof_short = x2; then
AC_DEFINE(int16_t, signed short)
AC_DEFINE(uint16_t, unsigned short)
else
if test x$ac_cv_sizeof_int = x2; then
AC_DEFINE(int16_t, signed int)
AC_DEFINE(uint16_t, unsigned int)
fi
fi
if test x$ac_cv_sizeof_int = x4; then
AC_DEFINE(int32_t, signed int)
AC_DEFINE(uint32_t, unsigned int)
else
if test x$ac_cv_sizeof_long = x4; then
AC_DEFINE(int32_t, signed long)
AC_DEFINE(uint32_t, unsigned long)
fi
fi
if test x$ac_cv_sizeof_long = x8; then
AC_DEFINE(int64_t, signed long)
AC_DEFINE(uint64_t, unsigned long)
AC_DEFINE(SDL_HAS_64BIT_TYPE)
else
if test x$ac_cv_sizeof_long_long = x8; then
AC_DEFINE(int64_t, signed long long)
AC_DEFINE(uint64_t, unsigned long long)
AC_DEFINE(SDL_HAS_64BIT_TYPE)
fi
fi
Feb 16, 2006
Feb 16, 2006
163
164
AC_DEFINE(size_t, unsigned int)
AC_DEFINE(uintptr_t, unsigned long)
Feb 9, 2006
Feb 9, 2006
165
fi
Feb 7, 2006
Feb 7, 2006
166
Feb 16, 2006
Feb 16, 2006
167
168
169
170
171
172
173
174
175
176
177
178
179
# Standard C sources
SOURCES="$SOURCES $srcdir/src/*.c"
SOURCES="$SOURCES $srcdir/src/audio/*.c"
SOURCES="$SOURCES $srcdir/src/cdrom/*.c"
SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
SOURCES="$SOURCES $srcdir/src/events/*.c"
SOURCES="$SOURCES $srcdir/src/file/*.c"
SOURCES="$SOURCES $srcdir/src/joystick/*.c"
SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
SOURCES="$SOURCES $srcdir/src/thread/*.c"
SOURCES="$SOURCES $srcdir/src/timer/*.c"
SOURCES="$SOURCES $srcdir/src/video/*.c"
Apr 26, 2001
Apr 26, 2001
180
181
182
dnl Enable/disable various subsystems of the SDL library
AC_ARG_ENABLE(audio,
Feb 16, 2006
Feb 16, 2006
183
AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
184
, enable_audio=yes)
Feb 16, 2006
Feb 16, 2006
185
186
if test x$enable_audio != xyes; then
AC_DEFINE(SDL_AUDIO_DISABLED)
Apr 26, 2001
Apr 26, 2001
187
188
fi
AC_ARG_ENABLE(video,
Feb 16, 2006
Feb 16, 2006
189
AC_HELP_STRING([--enable-video], [Enable the video subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
190
, enable_video=yes)
Feb 16, 2006
Feb 16, 2006
191
192
if test x$enable_video != xyes; then
AC_DEFINE(SDL_VIDEO_DISABLED)
Apr 26, 2001
Apr 26, 2001
193
194
fi
AC_ARG_ENABLE(events,
Feb 16, 2006
Feb 16, 2006
195
AC_HELP_STRING([--enable-events], [Enable the events subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
196
, enable_events=yes)
Feb 16, 2006
Feb 16, 2006
197
198
if test x$enable_events != xyes; then
AC_DEFINE(SDL_EVENTS_DISABLED)
Apr 26, 2001
Apr 26, 2001
199
200
fi
AC_ARG_ENABLE(joystick,
Feb 16, 2006
Feb 16, 2006
201
AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
202
, enable_joystick=yes)
Feb 16, 2006
Feb 16, 2006
203
204
if test x$enable_joystick != xyes; then
AC_DEFINE(SDL_JOYSTICK_DISABLED)
Apr 26, 2001
Apr 26, 2001
205
206
fi
AC_ARG_ENABLE(cdrom,
Feb 16, 2006
Feb 16, 2006
207
AC_HELP_STRING([--enable-cdrom], [Enable the cdrom subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
208
, enable_cdrom=yes)
Feb 16, 2006
Feb 16, 2006
209
210
if test x$enable_cdrom != xyes; then
AC_DEFINE(SDL_CDROM_DISABLED)
Apr 26, 2001
Apr 26, 2001
211
212
fi
AC_ARG_ENABLE(threads,
Feb 16, 2006
Feb 16, 2006
213
AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
214
215
, enable_threads=yes)
if test x$enable_threads != xyes; then
Feb 16, 2006
Feb 16, 2006
216
AC_DEFINE(SDL_THREADS_DISABLED)
Apr 26, 2001
Apr 26, 2001
217
218
fi
AC_ARG_ENABLE(timers,
Feb 16, 2006
Feb 16, 2006
219
AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
220
, enable_timers=yes)
Feb 16, 2006
Feb 16, 2006
221
222
if test x$enable_timers != xyes; then
AC_DEFINE(SDL_TIMERS_DISABLED)
Apr 26, 2001
Apr 26, 2001
223
224
fi
AC_ARG_ENABLE(file,
Feb 16, 2006
Feb 16, 2006
225
AC_HELP_STRING([--enable-file], [Enable the file subsystem [default=yes]]),
Apr 26, 2001
Apr 26, 2001
226
, enable_file=yes)
Feb 16, 2006
Feb 16, 2006
227
228
229
230
231
232
233
234
if test x$enable_file != xyes; then
AC_DEFINE(SDL_FILE_DISABLED)
fi
AC_ARG_ENABLE(loadso,
AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [default=yes]]),
, enable_loadso=yes)
if test x$enable_loadso != xyes; then
AC_DEFINE(SDL_LOADSO_DISABLED)
Apr 26, 2001
Apr 26, 2001
235
fi
Nov 18, 2003
Nov 18, 2003
236
AC_ARG_ENABLE(cpuinfo,
Feb 16, 2006
Feb 16, 2006
237
AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [default=yes]]),
Nov 18, 2003
Nov 18, 2003
238
, enable_cpuinfo=yes)
Feb 16, 2006
Feb 16, 2006
239
240
241
if test x$enable_cpuinfo != xyes; then
AC_DEFINE(SDL_CPUINFO_DISABLED)
fi
Feb 21, 2006
Feb 21, 2006
242
243
244
245
246
AC_ARG_ENABLE(assembly,
AC_HELP_STRING([--enable-assembly], [Enable assembly routines [default=yes]]),
, enable_assembly=yes)
if test x$enable_assembly = xyes; then
AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
Nov 18, 2003
Nov 18, 2003
247
fi
Apr 26, 2001
Apr 26, 2001
248
249
250
251
252
dnl See if the OSS audio interface is supported
CheckOSS()
{
AC_ARG_ENABLE(oss,
Feb 16, 2006
Feb 16, 2006
253
AC_HELP_STRING([--enable-oss], [support the OSS audio API [default=yes]]),
Apr 26, 2001
Apr 26, 2001
254
255
256
257
, enable_oss=yes)
if test x$enable_audio = xyes -a x$enable_oss = xyes; then
AC_MSG_CHECKING(for OSS audio support)
have_oss=no
Jul 8, 2001
Jul 8, 2001
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
if test x$have_oss != xyes; then
AC_TRY_COMPILE([
#include <sys/soundcard.h>
],[
int arg = SNDCTL_DSP_SETFRAGMENT;
],[
have_oss=yes
])
fi
if test x$have_oss != xyes; then
AC_TRY_COMPILE([
#include <soundcard.h>
],[
int arg = SNDCTL_DSP_SETFRAGMENT;
],[
have_oss=yes
Feb 16, 2006
Feb 16, 2006
274
AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H)
Jul 8, 2001
Jul 8, 2001
275
276
])
fi
Apr 26, 2001
Apr 26, 2001
277
278
AC_MSG_RESULT($have_oss)
if test x$have_oss = xyes; then
Feb 16, 2006
Feb 16, 2006
279
280
281
282
283
284
285
AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
have_audio=yes
# OpenBSD needs linking with ossaudio emulation library
case "$target" in
Feb 20, 2006
Feb 20, 2006
286
*-*-openbsd*|*-*-netbsd*)
Feb 20, 2006
Feb 20, 2006
287
BUILD_LDFLAGS="$BUILD_LDFLAGS -lossaudio";;
Feb 16, 2006
Feb 16, 2006
288
esac
Apr 26, 2001
Apr 26, 2001
289
290
291
292
293
294
295
296
fi
fi
}
dnl See if the ALSA audio interface is supported
CheckALSA()
{
AC_ARG_ENABLE(alsa,
Feb 16, 2006
Feb 16, 2006
297
AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [default=yes]]),
Apr 26, 2001
Apr 26, 2001
298
299
, enable_alsa=yes)
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
Aug 24, 2004
Aug 24, 2004
300
AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
Dec 13, 2004
Dec 13, 2004
301
302
303
304
# Restore all flags from before the ALSA detection runs
CFLAGS="$alsa_save_CFLAGS"
LDFLAGS="$alsa_save_LDFLAGS"
LIBS="$alsa_save_LIBS"
Apr 15, 2002
Apr 15, 2002
305
if test x$have_alsa = xyes; then
Mar 2, 2004
Mar 2, 2004
306
AC_ARG_ENABLE(alsa-shared,
Feb 16, 2006
Feb 16, 2006
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [default=yes]]),
, enable_alsa_shared=yes)
if test "x`echo $ALSA_LIBS | grep -- -L`" = "x"; then
if test "x`ls /lib/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/lib $ALSA_LIBS"
elif test "x`ls /usr/lib/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/usr/lib $ALSA_LIBS"
elif test "x`ls /usr/local/lib/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/usr/local/lib $ALSA_LIBS"
fi
fi
alsa_lib_spec=`echo $ALSA_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libasound.so.*/'`
alsa_lib=`ls $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
echo "-- $alsa_lib_spec -> $alsa_lib"
AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $ALSA_CFLAGS"
if test x$have_loadso != xyes && \
test x$enable_alsa_shared = xyes; then
AC_MSG_ERROR([You must have SDL_LoadObject() support])
fi
if test x$have_loadso = xyes && \
test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib")
else
Feb 20, 2006
Feb 20, 2006
333
BUILD_LDFLAGS="$BUILD_LDFLAGS $ALSA_LIBS"
Feb 16, 2006
Feb 16, 2006
334
335
336
337
338
339
fi
have_audio=yes
fi
fi
if test x$have_alsa = xyes; then
AC_ARG_ENABLE(alsa-shared,
Mar 2, 2004
Mar 2, 2004
340
341
[ --enable-alsa-shared dynamically load ALSA audio support [default=yes]],
, enable_alsa_shared=yes)
Aug 21, 2004
Aug 21, 2004
342
if test "x`echo $ALSA_LIBS | grep -- -L`" = "x"; then
Nov 15, 2004
Nov 15, 2004
343
344
345
if test "x`ls /lib/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/lib $ALSA_LIBS"
elif test "x`ls /usr/lib/libasound.so.* 2> /dev/null`" != "x"; then
Aug 21, 2004
Aug 21, 2004
346
ALSA_LIBS="-L/usr/lib $ALSA_LIBS"
Nov 15, 2004
Nov 15, 2004
347
elif test "x`ls /usr/local/lib/libasound.so.* 2> /dev/null`" != "x"; then
Aug 21, 2004
Aug 21, 2004
348
ALSA_LIBS="-L/usr/local/lib $ALSA_LIBS"
Nov 15, 2004
Nov 15, 2004
349
fi
Aug 21, 2004
Aug 21, 2004
350
351
352
353
354
fi
alsa_lib_spec=`echo $ALSA_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libasound.so.*/'`
alsa_lib=`ls $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
echo "-- $alsa_lib_spec -> $alsa_lib"
Nov 17, 2005
Nov 17, 2005
355
if test x$have_loadso != xyes && \
Mar 2, 2004
Mar 2, 2004
356
test x$enable_alsa_shared = xyes; then
Nov 17, 2005
Nov 17, 2005
357
AC_MSG_ERROR([You must have SDL_LoadObject() support])
Mar 2, 2004
Mar 2, 2004
358
fi
Nov 17, 2005
Nov 17, 2005
359
if test x$have_loadso = xyes && \
Mar 2, 2004
Mar 2, 2004
360
test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
Aug 21, 2004
Aug 21, 2004
361
CFLAGS="$CFLAGS -DALSA_SUPPORT -DALSA_DYNAMIC=\$(alsa_lib) $ALSA_CFLAGS"
Mar 2, 2004
Mar 2, 2004
362
AC_SUBST(alsa_lib)
Aug 21, 2004
Aug 21, 2004
363
364
use_dlvsym=no
Sep 8, 2005
Sep 8, 2005
365
AC_CHECK_LIB(dl, dlvsym, [use_dlvsym=yes])
Aug 21, 2004
Aug 21, 2004
366
367
368
if test x$use_dlvsym = xyes; then
CFLAGS="$CFLAGS -DUSE_DLVSYM"
fi
Mar 2, 2004
Mar 2, 2004
369
else
Aug 21, 2004
Aug 21, 2004
370
371
CFLAGS="$CFLAGS -DALSA_SUPPORT $ALSA_CFLAGS"
SYSTEM_LIBS="$SYSTEM_LIBS $ALSA_LIBS"
Mar 2, 2004
Mar 2, 2004
372
fi
Apr 26, 2001
Apr 26, 2001
373
374
375
fi
}
Aug 9, 2001
Aug 9, 2001
376
377
378
379
380
381
382
383
384
385
386
387
388
dnl Check whether we want to use IRIX 6.5+ native audio or not
CheckDMEDIA()
{
if test x$enable_audio = xyes; then
AC_MSG_CHECKING(for dmedia audio support)
have_dmedia=no
AC_TRY_COMPILE([
#include <dmedia/audio.h>
],[
ALport audio_port;
],[
have_dmedia=yes
])
Aug 21, 2004
Aug 21, 2004
389
AC_MSG_RESULT($have_dmedia)
Aug 9, 2001
Aug 9, 2001
390
391
# Set up files for the audio library
if test x$have_dmedia = xyes; then
Feb 16, 2006
Feb 16, 2006
392
393
AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
Feb 20, 2006
Feb 20, 2006
394
BUILD_LDFLAGS="$BUILD_LDFLAGS -laudio"
Feb 16, 2006
Feb 16, 2006
395
have_audio=yes
Aug 9, 2001
Aug 9, 2001
396
397
398
399
fi
fi
}
Apr 26, 2001
Apr 26, 2001
400
401
402
403
dnl Find the ESD includes and libraries
CheckESD()
{
AC_ARG_ENABLE(esd,
Feb 16, 2006
Feb 16, 2006
404
AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [default=yes]]),
Apr 26, 2001
Apr 26, 2001
405
406
, enable_esd=yes)
if test x$enable_audio = xyes -a x$enable_esd = xyes; then
Aug 24, 2004
Aug 24, 2004
407
408
AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
if test x$have_esd = xyes; then
Mar 6, 2002
Mar 6, 2002
409
AC_ARG_ENABLE(esd-shared,
Feb 16, 2006
Feb 16, 2006
410
AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [default=yes]]),
Aug 9, 2003
Aug 9, 2003
411
, enable_esd_shared=yes)
Mar 6, 2002
Mar 6, 2002
412
esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'`
Mar 3, 2004
Mar 3, 2004
413
esd_lib=`ls $esd_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
May 19, 2002
May 19, 2002
414
echo "-- $esd_lib_spec -> $esd_lib"
Nov 17, 2005
Nov 17, 2005
415
if test x$have_loadso != xyes && \
Mar 6, 2002
Mar 6, 2002
416
test x$enable_esd_shared = xyes; then
Nov 17, 2005
Nov 17, 2005
417
AC_MSG_ERROR([You must have SDL_LoadObject() support])
Mar 6, 2002
Mar 6, 2002
418
fi
Nov 17, 2005
Nov 17, 2005
419
if test x$have_loadso = xyes && \
Mar 6, 2002
Mar 6, 2002
420
test x$enable_esd_shared = xyes && test x$esd_lib != x; then
Feb 16, 2006
Feb 16, 2006
421
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
Mar 6, 2002
Mar 6, 2002
422
fi
Feb 16, 2006
Feb 16, 2006
423
424
425
AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $ESD_CFLAGS"
Feb 20, 2006
Feb 20, 2006
426
BUILD_LDFLAGS="$BUILD_LDFLAGS $ESD_LIBS"
Feb 16, 2006
Feb 16, 2006
427
have_audio=yes
Mar 6, 2002
Mar 6, 2002
428
fi
Apr 26, 2001
Apr 26, 2001
429
430
431
432
433
434
fi
}
CheckARTSC()
{
AC_ARG_ENABLE(arts,
Feb 16, 2006
Feb 16, 2006
435
AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [default=yes]]),
Apr 26, 2001
Apr 26, 2001
436
437
, enable_arts=yes)
if test x$enable_audio = xyes -a x$enable_arts = xyes; then
Feb 16, 2006
Feb 16, 2006
438
439
AC_PATH_PROG(ARTSCONFIG, artsc-config)
if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
Apr 26, 2001
Apr 26, 2001
440
441
: # arts isn't installed
else
Feb 16, 2006
Feb 16, 2006
442
443
444
ARTS_CFLAGS=`$ARTSCONFIG --cflags`
ARTS_LIBS=`$ARTSCONFIG --libs`
ARTS_PREFIX=`$ARTSCONFIG --arts-prefix`
Apr 26, 2001
Apr 26, 2001
445
446
447
AC_MSG_CHECKING(for aRts development environment)
audio_arts=no
save_CFLAGS="$CFLAGS"
Feb 16, 2006
Feb 16, 2006
448
CFLAGS="$CFLAGS $ARTS_CFLAGS"
Apr 26, 2001
Apr 26, 2001
449
450
451
452
453
454
455
456
457
458
AC_TRY_COMPILE([
#include <artsc.h>
],[
arts_stream_t stream;
],[
audio_arts=yes
])
CFLAGS="$save_CFLAGS"
AC_MSG_RESULT($audio_arts)
if test x$audio_arts = xyes; then
Mar 6, 2002
Mar 6, 2002
459
AC_ARG_ENABLE(arts-shared,
Feb 16, 2006
Feb 16, 2006
460
AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [default=yes]]),
Aug 9, 2003
Aug 9, 2003
461
, enable_arts_shared=yes)
Feb 16, 2006
Feb 16, 2006
462
arts_lib_spec="$ARTS_PREFIX/lib/libartsc.so.*"
Mar 3, 2004
Mar 3, 2004
463
arts_lib=`ls $arts_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
May 19, 2002
May 19, 2002
464
echo "-- $arts_lib_spec -> $arts_lib"
Nov 17, 2005
Nov 17, 2005
465
if test x$have_loadso != xyes && \
Mar 6, 2002
Mar 6, 2002
466
test x$enable_arts_shared = xyes; then
Nov 17, 2005
Nov 17, 2005
467
AC_MSG_ERROR([You must have SDL_LoadObject() support])
Mar 6, 2002
Mar 6, 2002
468
fi
Nov 17, 2005
Nov 17, 2005
469
if test x$have_loadso = xyes && \
Mar 6, 2002
Mar 6, 2002
470
test x$enable_arts_shared = xyes && test x$arts_lib != x; then
Feb 16, 2006
Feb 16, 2006
471
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
Mar 6, 2002
Mar 6, 2002
472
fi
Feb 16, 2006
Feb 16, 2006
473
474
475
AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $ARTS_CFLAGS"
Feb 20, 2006
Feb 20, 2006
476
BUILD_LDFLAGS="$BUILD_LDFLAGS $ARTS_LIBS"
Feb 16, 2006
Feb 16, 2006
477
have_audio=yes
Apr 26, 2001
Apr 26, 2001
478
479
480
481
482
483
484
485
486
fi
fi
fi
}
dnl See if the NAS audio interface is supported
CheckNAS()
{
AC_ARG_ENABLE(nas,
Feb 16, 2006
Feb 16, 2006
487
AC_HELP_STRING([--enable-nas], [support the NAS audio API [default=yes]]),
May 27, 2001
May 27, 2001
488
, enable_nas=yes)
Apr 26, 2001
Apr 26, 2001
489
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
May 27, 2001
May 27, 2001
490
491
492
493
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
if test -r /usr/X11R6/include/audio/audiolib.h; then
have_nas=yes
Feb 16, 2006
Feb 16, 2006
494
495
NAS_CFLAGS="-I/usr/X11R6/include/"
NAS_LIBS="-laudio -lXt"
Mar 6, 2003
Mar 6, 2003
496
497
498
499
500
501
dnl On IRIX, the NAS includes are in a different directory,
dnl and libnas must be explicitly linked in
elif test -r /usr/freeware/include/nas/audiolib.h; then
have_nas=yes
Feb 16, 2006
Feb 16, 2006
502
NAS_LIBS="-lnas -lXt"
May 27, 2001
May 27, 2001
503
fi
Mar 6, 2003
Mar 6, 2003
504
AC_MSG_RESULT($have_nas)
Feb 16, 2006
Feb 16, 2006
505
506
507
508
if test x$have_nas = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $NAS_CFLAGS"
Feb 20, 2006
Feb 20, 2006
509
BUILD_LDFLAGS="$BUILD_LDFLAGS $NAS_LIBS"
Feb 16, 2006
Feb 16, 2006
510
511
have_audio=yes
fi
Apr 26, 2001
Apr 26, 2001
512
513
514
fi
}
Jun 16, 2001
Jun 16, 2001
515
516
517
518
dnl rcg07142001 See if the user wants the disk writer audio driver...
CheckDiskAudio()
{
AC_ARG_ENABLE(diskaudio,
Feb 16, 2006
Feb 16, 2006
519
AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [default=yes]]),
Jul 2, 2001
Jul 2, 2001
520
, enable_diskaudio=yes)
Jun 16, 2001
Jun 16, 2001
521
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
Feb 16, 2006
Feb 16, 2006
522
523
AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
Jun 16, 2001
Jun 16, 2001
524
525
526
fi
}
Jun 10, 2002
Jun 10, 2002
527
528
529
530
dnl Set up the Atari Audio driver
CheckAtariAudio()
{
AC_ARG_ENABLE(mintaudio,
Feb 16, 2006
Feb 16, 2006
531
AC_HELP_STRING([--enable-mintaudio], [support Atari audio driver [default=yes]]),
Jun 10, 2002
Jun 10, 2002
532
533
534
535
536
537
, enable_mintaudio=yes)
if test x$enable_audio = xyes -a x$enable_mintaudio = xyes; then
mintaudio=no
AC_CHECK_HEADER(mint/falcon.h, have_mint_falcon_hdr=yes)
if test x$have_mint_falcon_hdr = xyes; then
mintaudio=yes
Feb 16, 2006
Feb 16, 2006
538
AC_DEFINE(SDL_AUDIO_DRIVER_MINT)
Feb 16, 2006
Feb 16, 2006
539
SOURCES="$SOURCES $srcdir/src/audio/mint/*.c"
Feb 16, 2006
Feb 16, 2006
540
have_audio=yes
Jun 10, 2002
Jun 10, 2002
541
542
543
544
fi
fi
}
Apr 26, 2001
Apr 26, 2001
545
dnl See if we can use x86 assembly blitters
Feb 16, 2006
Feb 16, 2006
546
# NASM is available from: http://nasm.sourceforge.net
Apr 26, 2001
Apr 26, 2001
547
548
549
550
551
552
553
554
555
556
557
558
559
CheckNASM()
{
dnl Make sure we are running on an x86 platform
case $target in
i?86*)
;;
*)
# Nope, bail early.
return
;;
esac
dnl Check for NASM (for assembly blit routines)
AC_ARG_ENABLE(nasm,
Feb 16, 2006
Feb 16, 2006
560
AC_HELP_STRING([--enable-nasm], [use nasm assembly blitters on x86 [default=yes]]),
Apr 26, 2001
Apr 26, 2001
561
, enable_nasm=yes)
Feb 21, 2006
Feb 21, 2006
562
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_nasm = xyes; then
Apr 26, 2001
Apr 26, 2001
563
AC_PATH_PROG(NASM, nasm)
Feb 16, 2006
Feb 16, 2006
564
565
566
if test x$NASM != x -a x$NASM != x'"$NASM"'; then
AC_DEFINE(SDL_HERMES_BLITTERS)
SOURCES="$SOURCES $srcdir/src/hermes/*.asm"
Apr 26, 2001
Apr 26, 2001
567
568
569
570
case $ARCH in
win32)
NASMFLAGS="-f win32"
;;
Apr 18, 2002
Apr 18, 2002
571
572
573
openbsd)
NASMFLAGS="-f aoutb"
;;
Apr 26, 2001
Apr 26, 2001
574
*)
Dec 14, 2003
Dec 14, 2003
575
NASMFLAGS="-f elf"
Apr 26, 2001
Apr 26, 2001
576
577
;;
esac
Feb 16, 2006
Feb 16, 2006
578
AC_SUBST(NASM)
Apr 26, 2001
Apr 26, 2001
579
AC_SUBST(NASMFLAGS)
Feb 16, 2006
Feb 16, 2006
580
May 6, 2004
May 6, 2004
581
582
case "$target" in
# this line is needed for QNX, because it's not defined the __ELF__
Feb 16, 2006
Feb 16, 2006
583
584
585
586
*-*-qnx*)
BUILD_CFLAGS="$BUILD_CFLAGS -D__ELF__";;
*-*-solaris*)
BUILD_CFLAGS="$BUILD_CFLAGS -D__ELF__";;
May 6, 2004
May 6, 2004
587
esac
Feb 16, 2006
Feb 16, 2006
588
589
590
591
592
593
594
595
596
597
fi
fi
}
dnl Check for altivec instruction support using gas syntax
CheckAltivec()
{
AC_ARG_ENABLE(altivec,
AC_HELP_STRING([--enable-altivec], [use altivec assembly blitters on PPC [default=yes]]),
, enable_altivec=yes)
Feb 21, 2006
Feb 21, 2006
598
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_altivec = xyes; then
Feb 16, 2006
Feb 16, 2006
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
have_altivec_h_hdr=no
AC_CHECK_HEADER(altivec.h, have_altivec_h_hdr=yes)
save_CFLAGS="$CFLAGS"
have_gcc_altivec=no
AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
altivec_CFLAGS="-maltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
if test x$have_altivec_h_hdr = xyes; then
AC_TRY_COMPILE([
#include <altivec.h>
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
else
AC_TRY_COMPILE([
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
fi
if test x$have_gcc_altivec = xno; then
AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
altivec_CFLAGS="-faltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
if test x$have_altivec_h_hdr = xyes; then
AC_TRY_COMPILE([
#include <altivec.h>
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
else
AC_TRY_COMPILE([
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
fi
fi
CFLAGS="$save_CFLAGS"
May 6, 2004
May 6, 2004
659
Feb 16, 2006
Feb 16, 2006
660
661
662
663
664
665
if test x$have_gcc_altivec = xyes; then
AC_DEFINE(SDL_ALTIVEC_BLITTERS)
if test x$have_altivec_h_hdr = xyes; then
AC_DEFINE(HAVE_ALTIVEC_H)
fi
BUILD_CFLAGS="$BUILD_CFLAGS $altivec_CFLAGS"
Apr 26, 2001
Apr 26, 2001
666
667
668
669
fi
fi
}
Sep 8, 2005
Sep 8, 2005
670
671
672
673
dnl Do the iPod thing
CheckIPod()
{
AC_ARG_ENABLE(ipod,
Feb 16, 2006
Feb 16, 2006
674
675
AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [default=yes on arm-elf]]),
, enable_ipod=yes)
Sep 8, 2005
Sep 8, 2005
676
677
if test x$enable_ipod = xyes; then
Feb 16, 2006
Feb 16, 2006
678
679
680
BUILD_CFLAGS="$BUILD_CFLAGS -DIPOD"
AC_DEFINE(SDL_VIDEO_DRIVER_IPOD)
SOURCES="$SOURCES $srcdir/src/video/ipod/*.c"
Sep 8, 2005
Sep 8, 2005
681
fi
Feb 16, 2006
Feb 16, 2006
682
}
Sep 8, 2005
Sep 8, 2005
683
May 11, 2001
May 11, 2001
684
685
686
dnl Find the nanox include and library directories
CheckNANOX()
{
Mar 5, 2002
Mar 5, 2002
687
AC_ARG_ENABLE(video-nanox,
Feb 16, 2006
Feb 16, 2006
688
AC_HELP_STRING([--enable-video-nanox], [use nanox video driver [default=no]]),
Mar 5, 2002
Mar 5, 2002
689
690
691
, enable_video_nanox=no)
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then
Feb 16, 2006
Feb 16, 2006
692
693
694
AC_ARG_ENABLE(nanox-debug,
AC_HELP_STRING([--enable-nanox-debug], [print debug messages [default=no]]),
, enable_nanox_debug=no)
Mar 5, 2002
Mar 5, 2002
695
if test x$enable_nanox_debug = xyes; then
Feb 16, 2006
Feb 16, 2006
696
BUILD_CFLAGS="$BUILD_CFLAGS -DENABLE_NANOX_DEBUG"
Mar 5, 2002
Mar 5, 2002
697
698
fi
Feb 16, 2006
Feb 16, 2006
699
700
701
AC_ARG_ENABLE(nanox-share-memory,
AC_HELP_STRING([--enable-nanox-share-memory], [use share memory [default=no]]),
, enable_nanox_share_memory=no)
Mar 5, 2002
Mar 5, 2002
702
if test x$enable_nanox_share_memory = xyes; then
Feb 16, 2006
Feb 16, 2006
703
BUILD_CFLAGS="$BUILD_CFLAGS -DNANOX_SHARE_MEMORY"
Mar 5, 2002
Mar 5, 2002
704
705
fi
Feb 16, 2006
Feb 16, 2006
706
707
708
AC_ARG_ENABLE(nanox_direct_fb,
AC_HELP_STRING([--enable-nanox-direct-fb], [use direct framebuffer access [default=no]]),
, enable_nanox_direct_fb=no)
Aug 25, 2002
Aug 25, 2002
709
if test x$enable_nanox_direct_fb = xyes; then
Feb 16, 2006
Feb 16, 2006
710
BUILD_CFLAGS="$BUILD_CFLAGS -DENABLE_NANOX_DIRECT_FB"
Aug 25, 2002
Aug 25, 2002
711
fi
Mar 5, 2002
Mar 5, 2002
712
Feb 16, 2006
Feb 16, 2006
713
714
AC_DEFINE(SDL_VIDEO_DRIVER_NANOX)
SOURCES="$SOURCES $srcdir/src/video/nanox/*.c"
Feb 20, 2006
Feb 20, 2006
715
BUILD_LDFLAGS="$BUILD_LDFLAGS -lnano-X"
Feb 16, 2006
Feb 16, 2006
716
have_video=yes
Mar 5, 2002
Mar 5, 2002
717
fi
May 11, 2001
May 11, 2001
718
719
}
Apr 26, 2001
Apr 26, 2001
720
721
722
723
dnl Find the X11 include and library directories
CheckX11()
{
AC_ARG_ENABLE(video-x11,
Feb 16, 2006
Feb 16, 2006
724
AC_HELP_STRING([--enable-video-x11], [use X11 video driver [default=yes]]),
Apr 26, 2001
Apr 26, 2001
725
726
727
728
729
, enable_video_x11=yes)
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
AC_PATH_X
AC_PATH_XTRA
if test x$have_x = xyes; then
Nov 5, 2005
Nov 5, 2005
730
AC_ARG_ENABLE(x11-shared,
Feb 16, 2006
Feb 16, 2006
731
AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [default=yes]]),
Nov 5, 2005
Nov 5, 2005
732
733
, enable_x11_shared=yes)
Nov 17, 2005
Nov 17, 2005
734
case "$target" in
Feb 20, 2006
Feb 20, 2006
735
*-*-darwin*)
Nov 17, 2005
Nov 17, 2005
736
737
738
x11_lib='/usr/X11R6/lib/libX11.6.dylib'
x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
;;
Feb 20, 2006
Feb 20, 2006
739
740
741
742
743
*-*-osf*)
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
*-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
Jan 30, 2006
Jan 30, 2006
744
745
746
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
Nov 17, 2005
Nov 17, 2005
747
*)
Feb 18, 2006
Feb 18, 2006
748
if test x$X_LIBS = x; then X_LIBS="-L/usr/lib"; fi
Feb 20, 2006
Feb 20, 2006
749
x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1\/libX11.so.[0-9]/'`]
Feb 20, 2006
Feb 20, 2006
750
x11_lib=`ls $x11_lib_spec 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`
Feb 20, 2006
Feb 20, 2006
751
x11ext_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1\/libXext.so.[0-9]/'`]
Feb 20, 2006
Feb 20, 2006
752
x11ext_lib=`ls $x11ext_lib_spec 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`
Nov 17, 2005
Nov 17, 2005
753
754
;;
esac
Nov 5, 2005
Nov 5, 2005
755
Feb 16, 2006
Feb 16, 2006
756
757
758
759
X_CFLAGS="$X_CFLAGS -DXTHREADS"
if test x$ac_cv_func_shmat != xyes; then
X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
fi
Nov 17, 2005
Nov 17, 2005
760
if test x$have_loadso != xyes && \
Nov 5, 2005
Nov 5, 2005
761
test x$enable_x11_shared = xyes; then
Nov 17, 2005
Nov 17, 2005
762
AC_MSG_ERROR([You must have SDL_LoadObject() support])
Nov 5, 2005
Nov 5, 2005
763
764
fi
Nov 17, 2005
Nov 17, 2005
765
if test x$have_loadso = xyes && \
Nov 8, 2005
Nov 8, 2005
766
test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
Nov 17, 2005
Nov 17, 2005
767
768
echo "-- dynamic libX11 -> $x11_lib"
echo "-- dynamic libX11ext -> $x11ext_lib"
Feb 16, 2006
Feb 16, 2006
769
770
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib")
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib")
Nov 5, 2005
Nov 5, 2005
771
else
Feb 16, 2006
Feb 16, 2006
772
X_LIBS="$X_LIBS -lX11 -lXext"
Nov 5, 2005
Nov 5, 2005
773
774
fi
Feb 16, 2006
Feb 16, 2006
775
776
777
AC_DEFINE(SDL_VIDEO_DRIVER_X11)
SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $X_CFLAGS"
Feb 20, 2006
Feb 20, 2006
778
BUILD_LDFLAGS="$BUILD_LDFLAGS $X_LIBS"
Feb 16, 2006
Feb 16, 2006
779
have_video=yes
Apr 26, 2001
Apr 26, 2001
780
May 10, 2001
May 10, 2001
781
AC_ARG_ENABLE(dga,
Feb 16, 2006
Feb 16, 2006
782
AC_HELP_STRING([--enable-dga], [allow use of X11 DGA code [default=yes]]),
May 10, 2001
May 10, 2001
783
, enable_dga=yes)
Jan 31, 2006
Jan 31, 2006
784
if test x$enable_dga = xyes; then
Feb 16, 2006
Feb 16, 2006
785
SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86dga/*.c"
Jan 31, 2006
Jan 31, 2006
786
787
fi
AC_ARG_ENABLE(video-dga,
Feb 16, 2006
Feb 16, 2006
788
AC_HELP_STRING([--enable-video-dga], [use DGA 2.0 video driver [default=yes]]),
Jan 31, 2006
Jan 31, 2006
789
790
, enable_video_dga=yes)
if test x$enable_dga = xyes -a x$enable_video_dga = xyes; then
Feb 16, 2006
Feb 16, 2006
791
792
AC_DEFINE(SDL_VIDEO_DRIVER_DGA)
SOURCES="$SOURCES $srcdir/src/video/dga/*.c"
Jan 31, 2006
Jan 31, 2006
793
fi
Apr 26, 2001
Apr 26, 2001
794
AC_ARG_ENABLE(video-x11-dgamouse,
Feb 16, 2006
Feb 16, 2006
795
AC_HELP_STRING([--enable-video-x11-dgamouse], [use X11 DGA for mouse events [default=yes]]),
Apr 26, 2001
Apr 26, 2001
796
, enable_video_x11_dgamouse=yes)
Jan 31, 2006
Jan 31, 2006
797
if test x$enable_dga = xyes -a x$enable_video_x11_dgamouse = xyes; then
Feb 16, 2006
Feb 16, 2006
798
AC_DEFINE(SDL_VIDEO_DRIVER_X11_DGAMOUSE)
Jan 31, 2006
Jan 31, 2006
799
800
fi
AC_ARG_ENABLE(video-x11-vm,
Feb 16, 2006
Feb 16, 2006
801
AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [default=yes]]),
Jan 31, 2006
Jan 31, 2006
802
803
, enable_video_x11_vm=yes)
if test x$enable_video_x11_vm = xyes; then
Feb 16, 2006
Feb 16, 2006
804
805
AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE)
SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c"
Apr 26, 2001
Apr 26, 2001
806
807
fi
AC_ARG_ENABLE(video-x11-xv,
Feb 16, 2006
Feb 16, 2006
808
AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [default=yes]]),
Apr 26, 2001
Apr 26, 2001
809
810
, enable_video_x11_xv=yes)
if test x$enable_video_x11_xv = xyes; then
Feb 16, 2006
Feb 16, 2006
811
812
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV)
SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c"
Apr 26, 2001
Apr 26, 2001
813
fi
Nov 3, 2001
Nov 3, 2001
814
AC_ARG_ENABLE(video-x11-xinerama,
Feb 16, 2006
Feb 16, 2006
815
AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [default=yes]]),
Nov 3, 2001
Nov 3, 2001
816
817
, enable_video_x11_xinerama=yes)
if test x$enable_video_x11_xinerama = xyes; then
Feb 16, 2006
Feb 16, 2006
818
819
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA)
SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c"
Nov 3, 2001
Nov 3, 2001
820
fi
Nov 22, 2001
Nov 22, 2001
821
AC_ARG_ENABLE(video-x11-xme,
Feb 16, 2006
Feb 16, 2006
822
AC_HELP_STRING([--enable-video-x11-xme], [enable Xi Graphics XME for fullscreen [default=yes]]),
Nov 22, 2001
Nov 22, 2001
823
824
, enable_video_x11_xme=yes)
if test x$enable_video_x11_xme = xyes; then
Feb 16, 2006
Feb 16, 2006
825
826
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XME)
SOURCES="$SOURCES $srcdir/src/video/Xext/XME/*.c"
Nov 22, 2001
Nov 22, 2001
827
fi
Apr 26, 2001
Apr 26, 2001
828
829
830
fi
fi
}
Feb 14, 2002
Feb 14, 2002
831
Feb 16, 2006
Feb 16, 2006
832
dnl Check for QNX photon video driver
Apr 26, 2001
Apr 26, 2001
833
834
835
CheckPHOTON()
{
AC_ARG_ENABLE(video-photon,
Feb 16, 2006
Feb 16, 2006
836
AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [default=yes]]),
Apr 26, 2001
Apr 26, 2001
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
, enable_video_photon=yes)
if test x$enable_video = xyes -a x$enable_video_photon = xyes; then
AC_MSG_CHECKING(for QNX Photon support)
video_photon=no
AC_TRY_COMPILE([
#include <Ph.h>
#include <Pt.h>
#include <photon/Pg.h>
#include <photon/PdDirect.h>
],[
PgDisplaySettings_t *visual;
],[
video_photon=yes
])
AC_MSG_RESULT($video_photon)
if test x$video_photon = xyes; then
Feb 16, 2006
Feb 16, 2006
853
854
AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON)
SOURCES="$SOURCES $srcdir/src/video/photon/*.c"
Feb 20, 2006
Feb 20, 2006
855
BUILD_LDFLAGS="$BUILD_LDFLAGS -lph"
Feb 16, 2006
Feb 16, 2006
856
857
have_video=yes
Feb 14, 2002
Feb 14, 2002
858
CheckOpenGLQNX
Apr 26, 2001
Apr 26, 2001
859
860
861
862
fi
fi
}
Feb 16, 2006
Feb 16, 2006
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
dnl Set up the BWindow video driver if enabled
CheckBWINDOW()
{
if test x$enable_video = xyes; then
AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW)
SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc"
have_video=yes
fi
}
dnl Set up the Carbon/QuickDraw video driver for Mac OS X (but not Darwin)
CheckCARBON()
{
AC_ARG_ENABLE(video-carbon,
AC_HELP_STRING([--enable-video-carbon], [use Carbon/QuickDraw video driver [default=no]]),
, enable_video_carbon=no)
if test x$enable_video = xyes -a x$enable_video_carbon = xyes; then
AC_MSG_CHECKING(for Carbon framework)
have_carbon=no
AC_TRY_COMPILE([
#include <Carbon/Carbon.h>
],[
],[
have_carbon=yes
])
AC_MSG_RESULT($have_carbon)
if test x$have_carbon = xyes; then
AC_DEFINE(SDL_VIDEO_DRIVER_TOOLBOX)
SOURCES="$SOURCES $srcdir/src/video/maccommon/*.c"
SOURCES="$SOURCES $srcdir/src/video/macrom/*.c"
have_video=yes
fi
fi
}
dnl Set up the Cocoa/Quartz video driver for Mac OS X (but not Darwin)
CheckCOCOA()
{
AC_ARG_ENABLE(video-cocoa,
AC_HELP_STRING([--enable-video-cocoa], [use Cocoa/Quartz video driver [default=yes]]),
, enable_video_cocoa=yes)
if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
save_CFLAGS="$CFLAGS"
dnl work around that we don't have Objective-C support in autoconf
CFLAGS="$CFLAGS -x objective-c"
AC_MSG_CHECKING(for Cocoa framework)
have_cocoa=no
AC_TRY_COMPILE([
#import <Cocoa/Cocoa.h>
],[
],[
have_cocoa=yes
])
AC_MSG_RESULT($have_cocoa)
CFLAGS="$save_CFLAGS"
if test x$have_cocoa = xyes; then
AC_DEFINE(SDL_VIDEO_DRIVER_QUARTZ)
SOURCES="$SOURCES $srcdir/src/video/quartz/*.m"
have_video=yes
fi
fi
}
Apr 26, 2001
Apr 26, 2001
926
927
928
929
dnl Find the framebuffer console includes
CheckFBCON()
{
AC_ARG_ENABLE(video-fbcon,
Feb 16, 2006
Feb 16, 2006
930
AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [default=yes]]),
Apr 26, 2001
Apr 26, 2001
931
932
933
934
935
936
937
938
939
940
941
942
943
944
, enable_video_fbcon=yes)
if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
AC_MSG_CHECKING(for framebuffer console support)
video_fbcon=no
AC_TRY_COMPILE([
#include <linux/fb.h>
#include <linux/kd.h>
#include <linux/keyboard.h>
],[
],[
video_fbcon=yes
])
AC_MSG_RESULT($video_fbcon)
if test x$video_fbcon = xyes; then
Feb 16, 2006
Feb 16, 2006
945
946
947
AC_DEFINE(SDL_VIDEO_DRIVER_FBCON)
SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c"
have_video=yes
Apr 26, 2001
Apr 26, 2001
948
949
950
951
fi
fi
}
Sep 4, 2001
Sep 4, 2001
952
953
954
955
dnl Find DirectFB
CheckDirectFB()
{
AC_ARG_ENABLE(video-directfb,
Feb 16, 2006
Feb 16, 2006
956
AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [default=no]]),
Aug 9, 2003
Aug 9, 2003
957
, enable_video_directfb=no)
Sep 4, 2001
Sep 4, 2001
958
959
960
961
962
963
964
965
966
if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
video_directfb=no
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test x$PKG_CONFIG = xno ; then
AC_MSG_WARN([*** pkg-config is required to build the DirectFB video driver.])
else
AC_MSG_CHECKING(for DirectFB support)
Aug 31, 2002
Aug 31, 2002
967
968
if ! $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then
AC_MSG_ERROR([*** pkg-config too old; version 0.7 or better required.])
Sep 4, 2001
Sep 4, 2001
969
970
fi
Nov 17, 2002
Nov 17, 2002
971
DIRECTFB_REQUIRED_VERSION=0.9.15
Sep 4, 2001
Sep 4, 2001
972
973
974
975
976
977
978
979
980
981
if $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb ; then
DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
video_directfb=yes
fi
fi
AC_MSG_RESULT($video_directfb)
if test x$video_directfb = xyes; then
Feb 16, 2006
Feb 16, 2006
982
983
984
AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB)
SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
BUILD_CFLAGS="$BUILD_CFLAGS $DIRECTFB_CFLAGS"
Feb 20, 2006
Feb 20, 2006
985
BUILD_LDFLAGS="$BUILD_LDFLAGS $DIRECTFB_LIBS"
Feb 16, 2006
Feb 16, 2006
986
have_video=yes
Sep 4, 2001
Sep 4, 2001
987
988
989
990
fi
fi
}
Jun 16, 2001
Jun 16, 2001
991
992
993
dnl See if we're running on PlayStation 2 hardware
CheckPS2GS()
{
Jun 16, 2001
Jun 16, 2001
994
AC_ARG_ENABLE(video-ps2gs,
Feb 16, 2006
Feb 16, 2006
995
AC_HELP_STRING([--enable-video-ps2gs], [use PlayStation 2 GS video driver [default=yes]]),
Jun 16, 2001
Jun 16, 2001
996
, enable_video_ps2gs=yes)
Jun 16, 2001
Jun 16, 2001
997
if test x$enable_video = xyes -a x$enable_video_ps2gs = xyes; then
Jun 16, 2001
Jun 16, 2001
998
AC_MSG_CHECKING(for PlayStation 2 GS support)
Jun 16, 2001
Jun 16, 2001
999
1000
video_ps2gs=no
AC_TRY_COMPILE([