Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
2898 lines (2723 loc) · 102 KB

configure.in

File metadata and controls

2898 lines (2723 loc) · 102 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
Mar 4, 2009
Mar 4, 2009
5
AC_CONFIG_AUX_DIRS($srcdir/build-scripts)
Apr 26, 2001
Apr 26, 2001
6
Oct 11, 2009
Oct 11, 2009
7
8
9
dnl Save the CFLAGS to see whether they were passed in or generated
orig_CFLAGS="$CFLAGS"
Apr 26, 2001
Apr 26, 2001
10
11
12
13
14
15
16
17
18
19
20
21
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
Jul 10, 2006
Jul 10, 2006
22
23
SDL_MINOR_VERSION=3
SDL_MICRO_VERSION=0
Jun 25, 2006
Jun 25, 2006
24
SDL_INTERFACE_AGE=0
Jul 10, 2006
Jul 10, 2006
25
SDL_BINARY_AGE=0
Apr 26, 2001
Apr 26, 2001
26
27
28
29
30
31
32
33
34
35
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
Mar 4, 2009
Mar 4, 2009
36
37
LT_INIT([win32-dll])
Apr 26, 2001
Apr 26, 2001
38
39
40
41
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`
Oct 10, 2009
Oct 10, 2009
42
m4_pattern_allow([^LT_])
Apr 26, 2001
Apr 26, 2001
43
44
45
46
47
48
AC_SUBST(LT_RELEASE)
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
Mar 19, 2006
Mar 19, 2006
49
dnl Detect the canonical build and host environments
Oct 10, 2009
Oct 10, 2009
50
dnl AC_CANONICAL_HOST
Feb 9, 2006
Feb 9, 2006
51
52
53
54
55
56
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
57
Oct 2, 2009
Oct 2, 2009
58
59
60
61
62
63
64
65
66
67
68
69
70
dnl Check for tools
AC_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_MAKE_SET
if test -z "$host_alias"; then
hostaliaswindres=
else
hostaliaswindres="$host_alias-windres"
fi
AC_CHECK_PROGS(WINDRES, [windres $hostaliaswindres $host_os-windres])
Feb 20, 2006
Feb 20, 2006
71
dnl Set up the compiler and linker flags
Mar 21, 2006
Mar 21, 2006
72
INCLUDE="-I$srcdir/include"
Feb 20, 2006
Feb 20, 2006
73
if test x$srcdir != x.; then
Apr 28, 2006
Apr 28, 2006
74
75
76
77
78
# Remove SDL_config.h from the source directory, since it's the
# default one, and we want to include the one that we generate.
if test -f $srcdir/include/SDL_config.h; then
rm $srcdir/include/SDL_config.h
fi
Mar 21, 2006
Mar 21, 2006
79
INCLUDE="-Iinclude $INCLUDE"
Feb 20, 2006
Feb 20, 2006
80
fi
Mar 19, 2006
Mar 19, 2006
81
case "$host" in
Feb 16, 2006
Feb 16, 2006
82
83
*-*-cygwin*)
# We build SDL on cygwin without the UNIX emulation layer
Mar 14, 2006
Mar 14, 2006
84
85
BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin"
BASE_LDFLAGS="-mno-cygwin"
Feb 16, 2006
Feb 16, 2006
86
87
;;
*)
Mar 14, 2006
Mar 14, 2006
88
89
BASE_CFLAGS="-D_GNU_SOURCE=1"
BASE_LDFLAGS=""
Feb 16, 2006
Feb 16, 2006
90
91
;;
esac
Apr 22, 2006
Apr 22, 2006
92
BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
Oct 11, 2009
Oct 11, 2009
93
94
95
96
# The default optimization for SDL 1.3 is -O3 (Bug #31)
if test x$orig_CFLAGS = x; then
BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'`
fi
Mar 14, 2006
Mar 14, 2006
97
98
99
EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
BUILD_LDFLAGS="$LDFLAGS"
EXTRA_LDFLAGS="$BASE_LDFLAGS"
Jul 10, 2007
Jul 10, 2007
100
101
## These are common directories to find software packages
#for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
May 12, 2006
May 12, 2006
102
103
104
105
106
107
108
# if test -d $path/include; then
# EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
# fi
# if test -d $path/lib; then
# EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
# fi
#done
Mar 14, 2006
Mar 14, 2006
109
110
111
112
113
SDL_CFLAGS="$BASE_CFLAGS"
SDL_LIBS="-lSDL $BASE_LDFLAGS"
CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
Feb 19, 2006
Feb 19, 2006
114
Feb 9, 2006
Feb 9, 2006
115
dnl Check for compiler characteristics
Feb 7, 2006
Feb 7, 2006
116
117
AC_C_CONST
AC_C_INLINE
Feb 9, 2006
Feb 9, 2006
118
119
AC_C_VOLATILE
Oct 8, 2009
Oct 8, 2009
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
dnl See whether we can use gcc style dependency tracking
AC_ARG_ENABLE(dependency-tracking,
AC_HELP_STRING([--enable-dependency-tracking],
[Use gcc -MMD -MT dependency tracking [[default=yes]]]),
, enable_dependency_tracking=yes)
if test x$enable_dependency_tracking = xyes; then
have_gcc_mmd_mt=no
AC_MSG_CHECKING(for GCC -MMD -MT option)
AC_TRY_COMPILE([
#if !defined(__GNUC__) || __GNUC__ < 3
#error Dependency tracking requires GCC 3.0 or newer
#endif
],[
],[
have_gcc_mmd_mt=yes
])
AC_MSG_RESULT($have_gcc_mmd_mt)
if test x$have_gcc_mmd_mt = xyes; then
DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@"
fi
fi
Feb 16, 2006
Feb 16, 2006
143
144
dnl See whether we are allowed to use the system C library
AC_ARG_ENABLE(libc,
Apr 14, 2006
Apr 14, 2006
145
AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
Feb 16, 2006
Feb 16, 2006
146
147
148
149
150
151
, enable_libc=yes)
if test x$enable_libc = xyes; then
AC_DEFINE(HAVE_LIBC)
dnl Check for C library headers
AC_HEADER_STDC
Mar 13, 2006
Mar 13, 2006
152
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 iconv.h signal.h)
Feb 16, 2006
Feb 16, 2006
153
154
155
156
157
158
159
160
161
162
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
163
Jan 10, 2009
Jan 10, 2009
164
165
166
dnl Check for defines
AC_CHECK_DEFINE(M_PI, math.h)
Feb 16, 2006
Feb 16, 2006
167
dnl Checks for library functions.
Dec 1, 2006
Dec 1, 2006
168
169
170
171
172
173
174
175
case "$host" in
*-*-cygwin* | *-*-mingw32*)
;;
*)
AC_FUNC_ALLOCA
;;
esac
Feb 16, 2006
Feb 16, 2006
176
177
178
AC_FUNC_MEMCMP
if test x$ac_cv_func_memcmp_working = xyes; then
AC_DEFINE(HAVE_MEMCMP)
Feb 9, 2006
Feb 9, 2006
179
fi
Feb 16, 2006
Feb 16, 2006
180
181
182
183
AC_FUNC_STRTOD
if test x$ac_cv_func_strtod = xyes; then
AC_DEFINE(HAVE_STRTOD)
fi
Jan 10, 2009
Jan 10, 2009
184
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 strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp sscanf snprintf vsnprintf sigaction setjmp nanosleep)
Feb 19, 2006
Feb 19, 2006
185
Jan 10, 2009
Jan 10, 2009
186
AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
Jan 12, 2009
Jan 12, 2009
187
AC_CHECK_FUNCS(ceil copysign cos cosf fabs floor log pow scalbn sin sinf sqrt)
Jan 10, 2009
Jan 10, 2009
188
189
190
AC_CHECK_LIB(iconv, libiconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
AC_CHECK_FUNCS(iconv)
Feb 16, 2006
Feb 16, 2006
191
192
fi
Jun 9, 2009
Jun 9, 2009
193
AC_CHECK_SIZEOF(void*)
Feb 16, 2006
Feb 16, 2006
194
if test x$have_inttypes != xyes; then
Feb 9, 2006
Feb 9, 2006
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
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
233
234
AC_DEFINE(size_t, unsigned int)
AC_DEFINE(uintptr_t, unsigned long)
Feb 9, 2006
Feb 9, 2006
235
fi
Feb 7, 2006
Feb 7, 2006
236
Feb 16, 2006
Feb 16, 2006
237
238
239
240
241
242
243
244
245
246
247
# Standard C sources
SOURCES="$SOURCES $srcdir/src/*.c"
SOURCES="$SOURCES $srcdir/src/audio/*.c"
SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
SOURCES="$SOURCES $srcdir/src/events/*.c"
SOURCES="$SOURCES $srcdir/src/file/*.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
248
249
dnl Enable/disable various subsystems of the SDL library
Jun 24, 2009
Jun 24, 2009
250
251
252
253
254
255
AC_ARG_ENABLE(atomic,
AC_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]),
, enable_atomic=yes)
if test x$enable_atomic != xyes; then
AC_DEFINE(SDL_ATOMIC_DISABLED)
fi
Apr 26, 2001
Apr 26, 2001
256
AC_ARG_ENABLE(audio,
Apr 14, 2006
Apr 14, 2006
257
AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
258
, enable_audio=yes)
Feb 16, 2006
Feb 16, 2006
259
260
if test x$enable_audio != xyes; then
AC_DEFINE(SDL_AUDIO_DISABLED)
Apr 26, 2001
Apr 26, 2001
261
262
fi
AC_ARG_ENABLE(video,
Apr 14, 2006
Apr 14, 2006
263
AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
264
, enable_video=yes)
Feb 16, 2006
Feb 16, 2006
265
266
if test x$enable_video != xyes; then
AC_DEFINE(SDL_VIDEO_DISABLED)
Apr 26, 2001
Apr 26, 2001
267
268
fi
AC_ARG_ENABLE(events,
Apr 14, 2006
Apr 14, 2006
269
AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
270
, enable_events=yes)
Feb 16, 2006
Feb 16, 2006
271
272
if test x$enable_events != xyes; then
AC_DEFINE(SDL_EVENTS_DISABLED)
Apr 26, 2001
Apr 26, 2001
273
274
fi
AC_ARG_ENABLE(joystick,
Apr 14, 2006
Apr 14, 2006
275
AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
276
, enable_joystick=yes)
Feb 16, 2006
Feb 16, 2006
277
278
if test x$enable_joystick != xyes; then
AC_DEFINE(SDL_JOYSTICK_DISABLED)
Apr 4, 2007
Apr 4, 2007
279
280
else
SOURCES="$SOURCES $srcdir/src/joystick/*.c"
Apr 26, 2001
Apr 26, 2001
281
fi
Aug 25, 2008
Aug 25, 2008
282
283
284
285
286
287
288
289
AC_ARG_ENABLE(haptic,
AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]),
, enable_haptic=yes)
if test x$enable_haptic != xyes; then
AC_DEFINE(SDL_HAPTIC_DISABLED)
else
SOURCES="$SOURCES $srcdir/src/haptic/*.c"
fi
Jun 7, 2009
Jun 7, 2009
290
291
292
293
294
295
296
297
AC_ARG_ENABLE(power,
AC_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]),
, enable_power=yes)
if test x$enable_power != xyes; then
AC_DEFINE(SDL_POWER_DISABLED)
else
SOURCES="$SOURCES $srcdir/src/power/*.c"
fi
Apr 26, 2001
Apr 26, 2001
298
AC_ARG_ENABLE(threads,
Apr 14, 2006
Apr 14, 2006
299
AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
300
301
, enable_threads=yes)
if test x$enable_threads != xyes; then
Feb 16, 2006
Feb 16, 2006
302
AC_DEFINE(SDL_THREADS_DISABLED)
Apr 26, 2001
Apr 26, 2001
303
304
fi
AC_ARG_ENABLE(timers,
Apr 14, 2006
Apr 14, 2006
305
AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
306
, enable_timers=yes)
Feb 16, 2006
Feb 16, 2006
307
308
if test x$enable_timers != xyes; then
AC_DEFINE(SDL_TIMERS_DISABLED)
Apr 26, 2001
Apr 26, 2001
309
310
fi
AC_ARG_ENABLE(file,
Apr 14, 2006
Apr 14, 2006
311
AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
312
, enable_file=yes)
Feb 16, 2006
Feb 16, 2006
313
314
315
316
if test x$enable_file != xyes; then
AC_DEFINE(SDL_FILE_DISABLED)
fi
AC_ARG_ENABLE(loadso,
Apr 14, 2006
Apr 14, 2006
317
AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
Feb 16, 2006
Feb 16, 2006
318
319
320
, enable_loadso=yes)
if test x$enable_loadso != xyes; then
AC_DEFINE(SDL_LOADSO_DISABLED)
Apr 26, 2001
Apr 26, 2001
321
fi
Nov 18, 2003
Nov 18, 2003
322
AC_ARG_ENABLE(cpuinfo,
Apr 14, 2006
Apr 14, 2006
323
AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
Nov 18, 2003
Nov 18, 2003
324
, enable_cpuinfo=yes)
Feb 16, 2006
Feb 16, 2006
325
326
327
if test x$enable_cpuinfo != xyes; then
AC_DEFINE(SDL_CPUINFO_DISABLED)
fi
Feb 21, 2006
Feb 21, 2006
328
AC_ARG_ENABLE(assembly,
Apr 14, 2006
Apr 14, 2006
329
AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
Feb 21, 2006
Feb 21, 2006
330
331
332
, enable_assembly=yes)
if test x$enable_assembly = xyes; then
AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
Aug 15, 2007
Aug 15, 2007
333
Dec 7, 2008
Dec 7, 2008
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# Make sure that we don't generate floating point code that would
# cause illegal instruction exceptions on older processors
case "$host" in
*-*-darwin*)
# Don't need to worry about Apple hardware, it's all SSE capable
default_ssemath=yes
;;
*64-*-*)
# x86 64-bit architectures all have SSE instructions
default_ssemath=yes
;;
*)
default_ssemath=no
;;
esac
AC_ARG_ENABLE(ssemath,
AC_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [[default=no]]]),
, enable_ssemath=$default_ssemath)
if test x$enable_ssemath = xno; then
if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387"
fi
fi
Aug 15, 2007
Aug 15, 2007
358
359
360
361
362
363
364
365
366
367
368
369
370
dnl Check for various instruction support
AC_ARG_ENABLE(mmx,
AC_HELP_STRING([--enable-mmx], [use MMX assembly routines [[default=yes]]]),
, enable_mmx=yes)
if test x$enable_mmx = xyes; then
save_CFLAGS="$CFLAGS"
have_gcc_mmx=no
AC_MSG_CHECKING(for GCC -mmmx option)
mmx_CFLAGS="-mmmx"
CFLAGS="$save_CFLAGS $mmx_CFLAGS"
AC_TRY_COMPILE([
#include <mmintrin.h>
Aug 17, 2007
Aug 17, 2007
371
372
373
#ifndef __MMX__
#error Assembler CPP flag not enabled
#endif
Aug 15, 2007
Aug 15, 2007
374
375
376
377
378
],[
],[
have_gcc_mmx=yes
])
AC_MSG_RESULT($have_gcc_mmx)
Dec 29, 2007
Dec 29, 2007
379
CFLAGS="$save_CFLAGS"
Aug 15, 2007
Aug 15, 2007
380
381
382
383
384
385
if test x$have_gcc_mmx = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
fi
fi
Aug 17, 2007
Aug 17, 2007
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
AC_ARG_ENABLE(3dnow,
AC_HELP_STRING([--enable-3dnow], [use MMX assembly routines [[default=yes]]]),
, enable_3dnow=yes)
if test x$enable_3dnow = xyes; then
save_CFLAGS="$CFLAGS"
have_gcc_3dnow=no
AC_MSG_CHECKING(for GCC -m3dnow option)
amd3dnow_CFLAGS="-m3dnow"
CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
AC_TRY_COMPILE([
#include <mm3dnow.h>
#ifndef __3dNOW__
#error Assembler CPP flag not enabled
#endif
],[
],[
have_gcc_3dnow=yes
])
AC_MSG_RESULT($have_gcc_3dnow)
Dec 29, 2007
Dec 29, 2007
406
CFLAGS="$save_CFLAGS"
Aug 17, 2007
Aug 17, 2007
407
408
409
410
411
412
if test x$have_gcc_3dnow = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
fi
fi
Aug 15, 2007
Aug 15, 2007
413
414
415
416
417
418
419
420
421
422
423
424
AC_ARG_ENABLE(sse,
AC_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]),
, enable_sse=yes)
if test x$enable_sse = xyes; then
save_CFLAGS="$CFLAGS"
have_gcc_sse=no
AC_MSG_CHECKING(for GCC -msse option)
sse_CFLAGS="-msse"
CFLAGS="$save_CFLAGS $sse_CFLAGS"
AC_TRY_COMPILE([
#include <xmmintrin.h>
Aug 17, 2007
Aug 17, 2007
425
426
427
#ifndef __SSE__
#error Assembler CPP flag not enabled
#endif
Aug 15, 2007
Aug 15, 2007
428
429
430
431
432
],[
],[
have_gcc_sse=yes
])
AC_MSG_RESULT($have_gcc_sse)
Dec 29, 2007
Dec 29, 2007
433
CFLAGS="$save_CFLAGS"
Aug 15, 2007
Aug 15, 2007
434
435
436
437
438
439
if test x$have_gcc_sse = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
fi
fi
Aug 17, 2007
Aug 17, 2007
440
AC_ARG_ENABLE(sse2,
Dec 7, 2008
Dec 7, 2008
441
442
AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=no]]]),
, enable_sse2=$default_ssemath)
Aug 17, 2007
Aug 17, 2007
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
if test x$enable_sse2 = xyes; then
save_CFLAGS="$CFLAGS"
have_gcc_sse2=no
AC_MSG_CHECKING(for GCC -msse2 option)
sse2_CFLAGS="-msse2"
CFLAGS="$save_CFLAGS $sse2_CFLAGS"
AC_TRY_COMPILE([
#include <emmintrin.h>
#ifndef __SSE2__
#error Assembler CPP flag not enabled
#endif
],[
],[
have_gcc_sse2=yes
])
AC_MSG_RESULT($have_gcc_sse2)
Dec 29, 2007
Dec 29, 2007
460
CFLAGS="$save_CFLAGS"
Aug 17, 2007
Aug 17, 2007
461
462
463
464
465
466
if test x$have_gcc_sse2 = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
fi
fi
Aug 15, 2007
Aug 15, 2007
467
468
469
470
471
472
AC_ARG_ENABLE(altivec,
AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]),
, enable_altivec=yes)
if test x$enable_altivec = xyes; then
save_CFLAGS="$CFLAGS"
have_gcc_altivec=no
Oct 13, 2009
Oct 13, 2009
473
have_altivec_h_hdr=no
Aug 15, 2007
Aug 15, 2007
474
475
476
altivec_CFLAGS="-maltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
Oct 13, 2009
Oct 13, 2009
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
AC_TRY_COMPILE([
#include <altivec.h>
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
have_altivec_h_hdr=yes
])
AC_MSG_RESULT($have_gcc_altivec)
if test x$have_gcc_altivec = xno; then
AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
AC_TRY_COMPILE([
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
Aug 15, 2007
Aug 15, 2007
501
502
503
fi
if test x$have_gcc_altivec = xno; then
Oct 13, 2009
Oct 13, 2009
504
AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
Aug 15, 2007
Aug 15, 2007
505
506
altivec_CFLAGS="-faltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
Oct 13, 2009
Oct 13, 2009
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
AC_TRY_COMPILE([
#include <altivec.h>
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
have_altivec_h_hdr=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)
AC_TRY_COMPILE([
vector unsigned int vzero() {
return vec_splat_u32(0);
}
],[
],[
have_gcc_altivec=yes
])
AC_MSG_RESULT($have_gcc_altivec)
Aug 15, 2007
Aug 15, 2007
531
532
533
534
535
536
537
538
539
540
541
fi
CFLAGS="$save_CFLAGS"
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
EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
fi
fi
Nov 18, 2003
Nov 18, 2003
542
fi
Apr 26, 2001
Apr 26, 2001
543
Sep 21, 2009
Sep 21, 2009
544
545
546
dnl set this to use on systems that use lib64 instead of lib
base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
Apr 26, 2001
Apr 26, 2001
547
548
549
550
dnl See if the OSS audio interface is supported
CheckOSS()
{
AC_ARG_ENABLE(oss,
Apr 14, 2006
Apr 14, 2006
551
AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
552
553
554
555
, 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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
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
572
AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H)
Jul 8, 2001
Jul 8, 2001
573
574
])
fi
Apr 26, 2001
Apr 26, 2001
575
576
AC_MSG_RESULT($have_oss)
if test x$have_oss = xyes; then
Feb 16, 2006
Feb 16, 2006
577
578
579
580
581
AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
have_audio=yes
Mar 21, 2006
Mar 21, 2006
582
# We may need to link with ossaudio emulation library
Mar 19, 2006
Mar 19, 2006
583
case "$host" in
Feb 20, 2006
Feb 20, 2006
584
*-*-openbsd*|*-*-netbsd*)
Mar 14, 2006
Mar 14, 2006
585
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
Feb 16, 2006
Feb 16, 2006
586
esac
Apr 26, 2001
Apr 26, 2001
587
588
589
590
591
592
593
594
fi
fi
}
dnl See if the ALSA audio interface is supported
CheckALSA()
{
AC_ARG_ENABLE(alsa,
Apr 14, 2006
Apr 14, 2006
595
AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
596
597
, enable_alsa=yes)
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
Aug 24, 2004
Aug 24, 2004
598
AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
Dec 13, 2004
Dec 13, 2004
599
600
601
602
# 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
603
if test x$have_alsa = xyes; then
Mar 2, 2004
Mar 2, 2004
604
AC_ARG_ENABLE(alsa-shared,
Apr 14, 2006
Apr 14, 2006
605
AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
Feb 16, 2006
Feb 16, 2006
606
607
, enable_alsa_shared=yes)
if test "x`echo $ALSA_LIBS | grep -- -L`" = "x"; then
Sep 21, 2009
Sep 21, 2009
608
609
610
611
612
613
if test "x`ls /$base_libdir/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/$base_libdir $ALSA_LIBS"
elif test "x`ls /usr/$base_libdir/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/usr/$base_libdir $ALSA_LIBS"
elif test "x`ls /usr/local/$base_libdir/libasound.so.* 2> /dev/null`" != "x"; then
ALSA_LIBS="-L/usr/local/$base_libdir $ALSA_LIBS"
Feb 16, 2006
Feb 16, 2006
614
615
616
fi
fi
alsa_lib_spec=`echo $ALSA_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libasound.so.*/'`
Oct 10, 2009
Oct 10, 2009
617
if test x$alsa_lib_spec = x; then
Sep 23, 2009
Sep 23, 2009
618
619
alsa_lib_spec="/usr/$base_libdir/libasound.so.*"
fi
Mar 23, 2006
Mar 23, 2006
620
alsa_lib=`ls -- $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
Feb 16, 2006
Feb 16, 2006
621
622
623
624
echo "-- $alsa_lib_spec -> $alsa_lib"
AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
Mar 14, 2006
Mar 14, 2006
625
EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
Feb 16, 2006
Feb 16, 2006
626
627
if test x$have_loadso != xyes && \
test x$enable_alsa_shared = xyes; then
Mar 6, 2006
Mar 6, 2006
628
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
Feb 16, 2006
Feb 16, 2006
629
630
631
632
633
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
Mar 14, 2006
Mar 14, 2006
634
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
Feb 16, 2006
Feb 16, 2006
635
636
637
638
fi
have_audio=yes
fi
fi
Apr 26, 2001
Apr 26, 2001
639
640
}
Aug 9, 2001
Aug 9, 2001
641
642
643
644
645
646
647
648
649
650
651
652
653
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
654
AC_MSG_RESULT($have_dmedia)
Aug 9, 2001
Aug 9, 2001
655
656
# Set up files for the audio library
if test x$have_dmedia = xyes; then
Feb 16, 2006
Feb 16, 2006
657
658
AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
Mar 14, 2006
Mar 14, 2006
659
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
Feb 16, 2006
Feb 16, 2006
660
have_audio=yes
Aug 9, 2001
Aug 9, 2001
661
662
663
664
fi
fi
}
Feb 26, 2006
Feb 26, 2006
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
dnl Check whether we want to use Tru64 UNIX native audio or not
CheckMME()
{
dnl Make sure we are running on an Tru64 UNIX
case $ARCH in
osf)
;;
*)
return
;;
esac
if test x$enable_audio = xyes; then
AC_MSG_CHECKING(for MME audio support)
MME_CFLAGS="-I/usr/include/mme"
MME_LIBS="-lmme"
have_mme=no
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $MME_CFLAGS"
AC_TRY_COMPILE([
#include <mme_api.h>
],[
HWAVEOUT sound;
],[
have_mme=yes
])
CFLAGS="$save_CFLAGS"
AC_MSG_RESULT($have_mme)
# Set up files for the audio library
if test x$have_mme = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_MMEAUDIO)
SOURCES="$SOURCES $srcdir/src/audio/mme/*.c"
Mar 14, 2006
Mar 14, 2006
696
697
EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
Feb 26, 2006
Feb 26, 2006
698
699
700
701
702
have_audio=yes
fi
fi
}
Apr 26, 2001
Apr 26, 2001
703
704
705
706
dnl Find the ESD includes and libraries
CheckESD()
{
AC_ARG_ENABLE(esd,
Apr 14, 2006
Apr 14, 2006
707
AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
708
709
, enable_esd=yes)
if test x$enable_audio = xyes -a x$enable_esd = xyes; then
Aug 24, 2004
Aug 24, 2004
710
711
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
712
AC_ARG_ENABLE(esd-shared,
Apr 14, 2006
Apr 14, 2006
713
AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
Aug 9, 2003
Aug 9, 2003
714
, enable_esd_shared=yes)
Mar 6, 2002
Mar 6, 2002
715
esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'`
Oct 10, 2009
Oct 10, 2009
716
if test x$esd_lib_spec = x; then
Sep 23, 2009
Sep 23, 2009
717
718
esd_lib_spec="/usr/$base_libdir/libesd.so.*"
fi
Mar 23, 2006
Mar 23, 2006
719
esd_lib=`ls -- $esd_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
May 19, 2002
May 19, 2002
720
echo "-- $esd_lib_spec -> $esd_lib"
Mar 6, 2006
Mar 6, 2006
721
722
723
AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
Mar 14, 2006
Mar 14, 2006
724
EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
Nov 17, 2005
Nov 17, 2005
725
if test x$have_loadso != xyes && \
Mar 6, 2002
Mar 6, 2002
726
test x$enable_esd_shared = xyes; then
Mar 6, 2006
Mar 6, 2006
727
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
Mar 6, 2002
Mar 6, 2002
728
fi
Nov 17, 2005
Nov 17, 2005
729
if test x$have_loadso = xyes && \
Mar 6, 2002
Mar 6, 2002
730
test x$enable_esd_shared = xyes && test x$esd_lib != x; then
Feb 16, 2006
Feb 16, 2006
731
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
Mar 6, 2006
Mar 6, 2006
732
else
Mar 14, 2006
Mar 14, 2006
733
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
Mar 6, 2002
Mar 6, 2002
734
fi
Feb 16, 2006
Feb 16, 2006
735
have_audio=yes
Mar 6, 2002
Mar 6, 2002
736
fi
Apr 26, 2001
Apr 26, 2001
737
738
739
fi
}
Aug 20, 2007
Aug 20, 2007
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
dnl Find PulseAudio
CheckPulseAudio()
{
AC_ARG_ENABLE(pulseaudio,
AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
, enable_pulseaudio=yes)
if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
audio_pulseaudio=no
PULSEAUDIO_REQUIRED_VERSION=0.9
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
AC_MSG_CHECKING(for PulseAudio $PULSEAUDIO_REQUIRED_VERSION support)
if test x$PKG_CONFIG != xno; then
if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSEAUDIO_REQUIRED_VERSION libpulse-simple; then
PULSEAUDIO_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple`
PULSEAUDIO_LIBS=`$PKG_CONFIG --libs libpulse-simple`
audio_pulseaudio=yes
fi
fi
AC_MSG_RESULT($audio_pulseaudio)
if test x$audio_pulseaudio = xyes; then
AC_ARG_ENABLE(pulseaudio-shared,
AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
, enable_pulseaudio_shared=yes)
if test "x`echo $PULSEAUDIO_LIBS | grep -- -L`" = "x"; then
Sep 21, 2009
Sep 21, 2009
767
if test "x`ls /$base_libdir/libpulse-simple.so.* 2> /dev/null`" != "x"; then
Oct 13, 2009
Oct 13, 2009
768
PULSEAUDIO_LIBS="-L/$base_libdir $PULSEAUDIO_LIBS"
Sep 21, 2009
Sep 21, 2009
769
elif test "x`ls /usr/$base_libdir/libpulse-simple.so.* 2> /dev/null`" != "x"; then
Oct 13, 2009
Oct 13, 2009
770
PULSEAUDIO_LIBS="-L/usr/$base_libdir $PULSEAUDIO_LIBS"
Sep 21, 2009
Sep 21, 2009
771
elif test "x`ls /usr/local/$base_libdir/libpulse-simple.so.* 2> /dev/null`" != "x"; then
Oct 13, 2009
Oct 13, 2009
772
PULSEAUDIO_LIBS="-L/usr/local/$base_libdir $PULSEAUDIO_LIBS"
Aug 20, 2007
Aug 20, 2007
773
774
775
fi
fi
pulseaudio_lib_spec=`echo $PULSEAUDIO_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libpulse-simple.so.*/'`
Oct 10, 2009
Oct 10, 2009
776
if test x$pulse_lib_spec = x; then
Sep 23, 2009
Sep 23, 2009
777
778
pulse_lib_spec="/usr/$base_libdir/libpulse-simple.so.*"
fi
Aug 20, 2007
Aug 20, 2007
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
pulseaudio_lib=`ls -- $pulseaudio_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
echo "-- $pulseaudio_lib_spec -> $pulseaudio_lib"
AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO)
SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
if test x$have_loadso != xyes && \
test x$enable_pulseaudio_shared = xyes; then
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
fi
if test x$have_loadso = xyes && \
test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib")
else
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
fi
have_audio=yes
fi
fi
}
Apr 26, 2001
Apr 26, 2001
800
801
802
CheckARTSC()
{
AC_ARG_ENABLE(arts,
Apr 14, 2006
Apr 14, 2006
803
AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
804
805
, enable_arts=yes)
if test x$enable_audio = xyes -a x$enable_arts = xyes; then
Feb 16, 2006
Feb 16, 2006
806
807
AC_PATH_PROG(ARTSCONFIG, artsc-config)
if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
Apr 26, 2001
Apr 26, 2001
808
809
: # arts isn't installed
else
Feb 16, 2006
Feb 16, 2006
810
811
812
ARTS_CFLAGS=`$ARTSCONFIG --cflags`
ARTS_LIBS=`$ARTSCONFIG --libs`
ARTS_PREFIX=`$ARTSCONFIG --arts-prefix`
Apr 26, 2001
Apr 26, 2001
813
814
815
AC_MSG_CHECKING(for aRts development environment)
audio_arts=no
save_CFLAGS="$CFLAGS"
Feb 16, 2006
Feb 16, 2006
816
CFLAGS="$CFLAGS $ARTS_CFLAGS"
Apr 26, 2001
Apr 26, 2001
817
818
819
820
821
822
823
824
825
826
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
827
AC_ARG_ENABLE(arts-shared,
Apr 14, 2006
Apr 14, 2006
828
AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
Aug 9, 2003
Aug 9, 2003
829
, enable_arts_shared=yes)
Sep 21, 2009
Sep 21, 2009
830
arts_lib_spec="$ARTS_PREFIX/$base_libdir/libartsc.so.*"
Mar 23, 2006
Mar 23, 2006
831
arts_lib=`ls -- $arts_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
May 19, 2002
May 19, 2002
832
echo "-- $arts_lib_spec -> $arts_lib"
Mar 6, 2006
Mar 6, 2006
833
834
835
AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
Mar 14, 2006
Mar 14, 2006
836
EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
Nov 17, 2005
Nov 17, 2005
837
if test x$have_loadso != xyes && \
Mar 6, 2002
Mar 6, 2002
838
test x$enable_arts_shared = xyes; then
Mar 6, 2006
Mar 6, 2006
839
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
Mar 6, 2002
Mar 6, 2002
840
fi
Nov 17, 2005
Nov 17, 2005
841
if test x$have_loadso = xyes && \
Mar 6, 2002
Mar 6, 2002
842
test x$enable_arts_shared = xyes && test x$arts_lib != x; then
Feb 16, 2006
Feb 16, 2006
843
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
Mar 6, 2006
Mar 6, 2006
844
else
Mar 14, 2006
Mar 14, 2006
845
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
Mar 6, 2002
Mar 6, 2002
846
fi
Feb 16, 2006
Feb 16, 2006
847
have_audio=yes
Apr 26, 2001
Apr 26, 2001
848
849
850
851
852
853
854
855
856
fi
fi
fi
}
dnl See if the NAS audio interface is supported
CheckNAS()
{
AC_ARG_ENABLE(nas,
Apr 14, 2006
Apr 14, 2006
857
AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
May 27, 2001
May 27, 2001
858
, enable_nas=yes)
Apr 26, 2001
Apr 26, 2001
859
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
Oct 17, 2006
Oct 17, 2006
860
861
862
AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
May 27, 2001
May 27, 2001
863
864
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
Oct 17, 2006
Oct 17, 2006
865
866
867
868
869
870
if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
have_nas=yes
NAS_LIBS="-laudio"
elif test -r /usr/X11R6/include/audio/audiolib.h; then
May 27, 2001
May 27, 2001
871
have_nas=yes
Feb 16, 2006
Feb 16, 2006
872
NAS_CFLAGS="-I/usr/X11R6/include/"
Mar 13, 2006
Mar 13, 2006
873
NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
Mar 6, 2003
Mar 6, 2003
874
875
876
877
878
879
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
880
NAS_LIBS="-lnas -lXt"
May 27, 2001
May 27, 2001
881
fi
Oct 17, 2006
Oct 17, 2006
882
Mar 6, 2003
Mar 6, 2003
883
AC_MSG_RESULT($have_nas)
Oct 17, 2006
Oct 17, 2006
884
Feb 16, 2006
Feb 16, 2006
885
if test x$have_nas = xyes; then
Oct 17, 2006
Oct 17, 2006
886
887
888
889
890
891
892
893
894
895
896
897
898
AC_ARG_ENABLE(nas-shared,
AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
, enable_nas_shared=yes)
if test "x`echo $NAS_LIBS | grep -- -L`" = "x"; then
if test "x`ls /lib/libaudio.so.* 2> /dev/null`" != "x"; then
NAS_LIBS="-L/lib $NAS_LIBS"
elif test "x`ls /usr/lib/libaudio.so.* 2> /dev/null`" != "x"; then
NAS_LIBS="-L/usr/lib $NAS_LIBS"
elif test "x`ls /usr/local/lib/libaudio.so.* 2> /dev/null`" != "x"; then
NAS_LIBS="-L/usr/local/lib $NAS_LIBS"
fi
fi
nas_lib_spec=`echo $NAS_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libaudio.so.*/'`
Oct 10, 2009
Oct 10, 2009
899
if test x$nas_lib_spec = x; then
Sep 23, 2009
Sep 23, 2009
900
901
nas_lib_spec="/usr/$base_libdir/libaudio.so.*"
fi
Oct 17, 2006
Oct 17, 2006
902
903
904
905
906
907
908
909
nas_lib=`ls -- $nas_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
echo "-- $nas_lib_spec -> $nas_lib"
if test x$have_loadso != xyes && \
test x$enable_nas_shared = xyes; then
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
fi
if test x$have_loadso = xyes && \
Jul 10, 2007
Jul 10, 2007
910
test x$enable_nas_shared = xyes && test x$nas_lib != x; then
Oct 17, 2006
Oct 17, 2006
911
912
913
914
915
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
else
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
fi
Feb 16, 2006
Feb 16, 2006
916
917
AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
Mar 14, 2006
Mar 14, 2006
918
EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
Feb 16, 2006
Feb 16, 2006
919
920
have_audio=yes
fi
Apr 26, 2001
Apr 26, 2001
921
922
923
fi
}
Jun 16, 2001
Jun 16, 2001
924
925
926
927
dnl rcg07142001 See if the user wants the disk writer audio driver...
CheckDiskAudio()
{
AC_ARG_ENABLE(diskaudio,
Apr 14, 2006
Apr 14, 2006
928
AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
Jul 2, 2001
Jul 2, 2001
929
, enable_diskaudio=yes)
Jun 16, 2001
Jun 16, 2001
930
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
Feb 16, 2006
Feb 16, 2006
931
932
AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
Jun 16, 2001
Jun 16, 2001
933
934
935
fi
}
Mar 14, 2006
Mar 14, 2006
936
937
938
939
dnl rcg03142006 See if the user wants the dummy audio driver...
CheckDummyAudio()
{
AC_ARG_ENABLE(dummyaudio,
Apr 14, 2006
Apr 14, 2006
940
AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
Mar 14, 2006
Mar 14, 2006
941
942
943
944
945
946
947
, enable_dummyaudio=yes)
if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY)
SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
fi
}
Mar 22, 2006
Mar 22, 2006
948
949
950
951
952
953
954
955
956
dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
CheckVisibilityHidden()
{
AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
have_gcc_fvisibility=no
visibility_CFLAGS="-fvisibility=hidden"
save_CFLAGS="$CFLAGS"
Dec 30, 2007
Dec 30, 2007
957
CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
Mar 22, 2006
Mar 22, 2006
958
AC_TRY_COMPILE([
Apr 29, 2006
Apr 29, 2006
959
960
961
#if !defined(__GNUC__) || __GNUC__ < 4
#error SDL only uses visibility attributes in GCC 4 or newer
#endif
Mar 22, 2006
Mar 22, 2006
962
963
964
965
966
967
968
969
],[
],[
have_gcc_fvisibility=yes
])
AC_MSG_RESULT($have_gcc_fvisibility)
CFLAGS="$save_CFLAGS"
if test x$have_gcc_fvisibility = xyes; then
Mar 22, 2006
Mar 22, 2006
970
EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
Mar 22, 2006
Mar 22, 2006
971
972
973
974
fi
}
Apr 26, 2001
Apr 26, 2001
975
976
977
978
dnl Find the X11 include and library directories
CheckX11()
{
AC_ARG_ENABLE(video-x11,
Apr 14, 2006
Apr 14, 2006
979
AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
Apr 26, 2001
Apr 26, 2001
980
981
, enable_video_x11=yes)
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
May 10, 2006
May 10, 2006
982
case "$host" in
May 10, 2006
May 10, 2006
983
984
*-*-darwin*)
# This isn't necessary for X11, but fixes GLX detection
May 10, 2006
May 10, 2006
985
if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
May 10, 2006
May 10, 2006
986
987
988
989
990
x_includes="/usr/X11R6/include"
x_libraries="/usr/X11R6/lib"
fi
;;
esac
Apr 26, 2001
Apr 26, 2001
991
992
993
AC_PATH_X
AC_PATH_XTRA
if test x$have_x = xyes; then
Jun 23, 2006
Jun 23, 2006
994
995
996
997
998
# Only allow dynamically loaded X11 if the X11 function pointers
# will not end up in the global namespace, which causes problems
# with other libraries calling X11 functions.
x11_symbols_private=$have_gcc_fvisibility
Nov 5, 2005
Nov 5, 2005
999
AC_ARG_ENABLE(x11-shared,
Jun 23, 2006
Jun 23, 2006
1000
AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),