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

Latest commit

 

History

History
2668 lines (2511 loc) · 91.9 KB

configure.in

File metadata and controls

2668 lines (2511 loc) · 91.9 KB
 
1
2
dnl Process this file with autoconf to produce a configure script.
AC_INIT(README)
3
AC_CONFIG_HEADER(include/SDL_config.h)
5
6
7
8
9
10
11
12
13
14
15
16
17
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
20
SDL_INTERFACE_AGE=0
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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)
42
dnl Detect the canonical build and host environments
44
AC_CANONICAL_HOST
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
52
dnl Set up the compiler and linker flags
54
if test x$srcdir != x.; then
55
56
57
58
59
# 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
60
INCLUDE="-Iinclude $INCLUDE"
62
case "$host" in
63
64
*-*-cygwin*)
# We build SDL on cygwin without the UNIX emulation layer
65
66
BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin"
BASE_LDFLAGS="-mno-cygwin"
69
70
BASE_CFLAGS="-D_GNU_SOURCE=1"
BASE_LDFLAGS=""
73
BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
74
75
76
EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
BUILD_LDFLAGS="$LDFLAGS"
EXTRA_LDFLAGS="$BASE_LDFLAGS"
77
78
## These are common directories to find software packages
#for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
79
80
81
82
83
84
85
# 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
86
87
88
89
90
SDL_CFLAGS="$BASE_CFLAGS"
SDL_LIBS="-lSDL $BASE_LDFLAGS"
CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
92
93
dnl Check for tools
AC_LIBTOOL_WIN32_DLL
95
AC_PROG_CC
96
AC_PROG_CXX
97
AC_PROG_INSTALL
99
100
101
102
103
104
if test -z "$host_alias"; then
hostaliaswindres=
else
hostaliaswindres="$host_alias-windres"
fi
AC_CHECK_PROGS(WINDRES, [windres $hostaliaswindres $host_os-windres])
111
112
dnl See whether we are allowed to use the system C library
AC_ARG_ENABLE(libc,
113
AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
114
115
116
117
118
119
, enable_libc=yes)
if test x$enable_libc = xyes; then
AC_DEFINE(HAVE_LIBC)
dnl Check for C library headers
AC_HEADER_STDC
120
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)
121
122
123
124
125
126
127
128
129
130
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
133
134
135
136
137
138
139
140
case "$host" in
*-*-cygwin* | *-*-mingw32*)
;;
*)
AC_FUNC_ALLOCA
;;
esac
141
142
143
AC_FUNC_MEMCMP
if test x$ac_cv_func_memcmp_working = xyes; then
AC_DEFINE(HAVE_MEMCMP)
145
146
147
148
AC_FUNC_STRTOD
if test x$ac_cv_func_strtod = xyes; then
AC_DEFINE(HAVE_STRTOD)
fi
149
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 iconv sigaction setjmp nanosleep)
151
AC_CHECK_LIB(iconv, libiconv_open, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
152
AC_CHECK_LIB(m, pow, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
153
154
155
fi
if test x$have_inttypes != xyes; then
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
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
194
195
AC_DEFINE(size_t, unsigned int)
AC_DEFINE(uintptr_t, unsigned long)
198
199
200
201
202
203
204
205
206
207
208
209
# 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/stdlib/*.c"
SOURCES="$SOURCES $srcdir/src/thread/*.c"
SOURCES="$SOURCES $srcdir/src/timer/*.c"
SOURCES="$SOURCES $srcdir/src/video/*.c"
210
211
212
dnl Enable/disable various subsystems of the SDL library
AC_ARG_ENABLE(audio,
213
AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
214
, enable_audio=yes)
215
216
if test x$enable_audio != xyes; then
AC_DEFINE(SDL_AUDIO_DISABLED)
217
218
fi
AC_ARG_ENABLE(video,
219
AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
220
, enable_video=yes)
221
222
if test x$enable_video != xyes; then
AC_DEFINE(SDL_VIDEO_DISABLED)
223
224
fi
AC_ARG_ENABLE(events,
225
AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
226
, enable_events=yes)
227
228
if test x$enable_events != xyes; then
AC_DEFINE(SDL_EVENTS_DISABLED)
229
230
fi
AC_ARG_ENABLE(joystick,
231
AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
232
, enable_joystick=yes)
233
234
if test x$enable_joystick != xyes; then
AC_DEFINE(SDL_JOYSTICK_DISABLED)
235
236
else
SOURCES="$SOURCES $srcdir/src/joystick/*.c"
237
238
fi
AC_ARG_ENABLE(cdrom,
239
AC_HELP_STRING([--enable-cdrom], [Enable the cdrom subsystem [[default=yes]]]),
240
, enable_cdrom=yes)
241
242
if test x$enable_cdrom != xyes; then
AC_DEFINE(SDL_CDROM_DISABLED)
243
244
fi
AC_ARG_ENABLE(threads,
245
AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
246
247
, enable_threads=yes)
if test x$enable_threads != xyes; then
249
250
fi
AC_ARG_ENABLE(timers,
251
AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
252
, enable_timers=yes)
253
254
if test x$enable_timers != xyes; then
AC_DEFINE(SDL_TIMERS_DISABLED)
255
256
fi
AC_ARG_ENABLE(file,
257
AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
258
, enable_file=yes)
259
260
261
262
if test x$enable_file != xyes; then
AC_DEFINE(SDL_FILE_DISABLED)
fi
AC_ARG_ENABLE(loadso,
263
AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
264
265
266
, enable_loadso=yes)
if test x$enable_loadso != xyes; then
AC_DEFINE(SDL_LOADSO_DISABLED)
269
AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
271
272
273
if test x$enable_cpuinfo != xyes; then
AC_DEFINE(SDL_CPUINFO_DISABLED)
fi
275
AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
276
277
278
, enable_assembly=yes)
if test x$enable_assembly = xyes; then
AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
279
280
281
282
283
284
285
286
287
288
289
290
291
292
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>
293
294
295
#ifndef __MMX__
#error Assembler CPP flag not enabled
#endif
296
297
298
299
300
],[
],[
have_gcc_mmx=yes
])
AC_MSG_RESULT($have_gcc_mmx)
301
CFLAGS="$save_CFLAGS"
302
303
304
305
306
307
if test x$have_gcc_mmx = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
fi
fi
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
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)
328
CFLAGS="$save_CFLAGS"
329
330
331
332
333
334
if test x$have_gcc_3dnow = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
fi
fi
335
336
337
338
339
340
341
342
343
344
345
346
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>
347
348
349
#ifndef __SSE__
#error Assembler CPP flag not enabled
#endif
350
351
352
353
354
],[
],[
have_gcc_sse=yes
])
AC_MSG_RESULT($have_gcc_sse)
355
CFLAGS="$save_CFLAGS"
356
357
358
359
360
361
if test x$have_gcc_sse = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
fi
fi
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
AC_ARG_ENABLE(sse2,
AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=yes]]]),
, enable_sse2=yes)
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)
382
CFLAGS="$save_CFLAGS"
383
384
385
386
387
388
if test x$have_gcc_sse2 = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
fi
fi
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
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
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"
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
463
464
465
466
467
dnl See if the OSS audio interface is supported
CheckOSS()
{
AC_ARG_ENABLE(oss,
468
AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
469
470
471
472
, 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
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
492
493
AC_MSG_RESULT($have_oss)
if test x$have_oss = xyes; then
494
495
496
497
498
AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
have_audio=yes
499
# We may need to link with ossaudio emulation library
500
case "$host" in
501
*-*-openbsd*|*-*-netbsd*)
502
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
504
505
506
507
508
509
510
511
fi
fi
}
dnl See if the ALSA audio interface is supported
CheckALSA()
{
AC_ARG_ENABLE(alsa,
512
AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
513
514
, enable_alsa=yes)
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
515
AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
516
517
518
519
# Restore all flags from before the ALSA detection runs
CFLAGS="$alsa_save_CFLAGS"
LDFLAGS="$alsa_save_LDFLAGS"
LIBS="$alsa_save_LIBS"
520
if test x$have_alsa = xyes; then
521
AC_ARG_ENABLE(alsa-shared,
522
AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
523
524
525
526
527
528
529
530
531
532
533
, 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.*/'`
534
alsa_lib=`ls -- $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
535
536
537
538
echo "-- $alsa_lib_spec -> $alsa_lib"
AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
539
EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
540
541
if test x$have_loadso != xyes && \
test x$enable_alsa_shared = xyes; then
542
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
543
544
545
546
547
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
548
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
555
556
557
558
559
560
561
562
563
564
565
566
567
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
])
569
570
# Set up files for the audio library
if test x$have_dmedia = xyes; then
571
572
AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
573
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
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"
610
611
EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
612
613
614
615
616
have_audio=yes
fi
fi
}
617
618
619
620
dnl Find the ESD includes and libraries
CheckESD()
{
AC_ARG_ENABLE(esd,
621
AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
622
623
, enable_esd=yes)
if test x$enable_audio = xyes -a x$enable_esd = xyes; then
624
625
AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
if test x$have_esd = xyes; then
626
AC_ARG_ENABLE(esd-shared,
627
AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
629
esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'`
630
esd_lib=`ls -- $esd_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
631
echo "-- $esd_lib_spec -> $esd_lib"
632
633
634
AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
635
EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
636
if test x$have_loadso != xyes && \
637
test x$enable_esd_shared = xyes; then
638
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
640
if test x$have_loadso = xyes && \
641
test x$enable_esd_shared = xyes && test x$esd_lib != x; then
642
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
644
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
648
649
650
fi
}
651
652
653
654
655
656
657
658
659
660
661
662
663
664
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
696
697
698
699
700
701
702
703
704
705
706
707
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
if test "x`ls /lib/libpulse-simple.so.* 2> /dev/null`" != "x"; then
PULSEAUDIO_LIBS="-L/lib $PULSEAUDIO_LIBS"
elif test "x`ls /usr/lib/libpulse-simple.so.* 2> /dev/null`" != "x"; then
PULSEAUDIO_LIBS="-L/usr/lib $PULSEAUDIO_LIBS"
elif test "x`ls /usr/local/lib/libpulse-simple.so.* 2> /dev/null`" != "x"; then
PULSEAUDIO_LIBS="-L/usr/local/lib $PULSEAUDIO_LIBS"
fi
fi
pulseaudio_lib_spec=`echo $PULSEAUDIO_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libpulse-simple.so.*/'`
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
}
708
709
710
CheckARTSC()
{
AC_ARG_ENABLE(arts,
711
AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
712
713
, enable_arts=yes)
if test x$enable_audio = xyes -a x$enable_arts = xyes; then
714
715
AC_PATH_PROG(ARTSCONFIG, artsc-config)
if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
716
717
: # arts isn't installed
else
718
719
720
ARTS_CFLAGS=`$ARTSCONFIG --cflags`
ARTS_LIBS=`$ARTSCONFIG --libs`
ARTS_PREFIX=`$ARTSCONFIG --arts-prefix`
721
722
723
AC_MSG_CHECKING(for aRts development environment)
audio_arts=no
save_CFLAGS="$CFLAGS"
725
726
727
728
729
730
731
732
733
734
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
735
AC_ARG_ENABLE(arts-shared,
736
AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
738
arts_lib_spec="$ARTS_PREFIX/lib/libartsc.so.*"
739
arts_lib=`ls -- $arts_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
740
echo "-- $arts_lib_spec -> $arts_lib"
741
742
743
AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
744
EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
745
if test x$have_loadso != xyes && \
746
test x$enable_arts_shared = xyes; then
747
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
749
if test x$have_loadso = xyes && \
750
test x$enable_arts_shared = xyes && test x$arts_lib != x; then
751
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
753
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
756
757
758
759
760
761
762
763
764
fi
fi
fi
}
dnl See if the NAS audio interface is supported
CheckNAS()
{
AC_ARG_ENABLE(nas,
765
AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
766
, enable_nas=yes)
767
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
768
769
770
AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
771
772
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
773
774
775
776
777
778
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
782
783
784
785
786
787
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
791
AC_MSG_RESULT($have_nas)
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
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.*/'`
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 && \
815
test x$enable_nas_shared = xyes && test x$nas_lib != x; then
816
817
818
819
820
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
else
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
fi
821
822
AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
823
EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
826
827
828
fi
}
829
830
831
832
dnl rcg07142001 See if the user wants the disk writer audio driver...
CheckDiskAudio()
{
AC_ARG_ENABLE(diskaudio,
833
AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
835
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
836
837
AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
841
842
843
844
dnl rcg03142006 See if the user wants the dummy audio driver...
CheckDummyAudio()
{
AC_ARG_ENABLE(dummyaudio,
845
AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
846
847
848
849
850
851
852
, 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
}
853
854
855
856
dnl Set up the Atari Audio driver
CheckAtariAudio()
{
AC_ARG_ENABLE(mintaudio,
857
AC_HELP_STRING([--enable-mintaudio], [support Atari audio driver [[default=yes]]]),
858
859
860
861
862
863
, 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
865
SOURCES="$SOURCES $srcdir/src/audio/mint/*.c"
866
SOURCES="$SOURCES $srcdir/src/audio/mint/*.S"
872
873
874
875
876
877
878
879
880
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"
881
CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
883
884
885
#if !defined(__GNUC__) || __GNUC__ < 4
#error SDL only uses visibility attributes in GCC 4 or newer
#endif
886
887
888
889
890
891
892
893
],[
],[
have_gcc_fvisibility=yes
])
AC_MSG_RESULT($have_gcc_fvisibility)
CFLAGS="$save_CFLAGS"
if test x$have_gcc_fvisibility = xyes; then
894
EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
899
900
901
902
dnl Do the iPod thing
CheckIPod()
{
AC_ARG_ENABLE(ipod,
903
904
AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [default=yes on arm-elf]]),
, enable_ipod=yes)
905
906
if test x$enable_ipod = xyes; then
907
EXTRA_CFLAGS="$EXTRA_CFLAGS -DIPOD"
908
909
AC_DEFINE(SDL_VIDEO_DRIVER_IPOD)
SOURCES="$SOURCES $srcdir/src/video/ipod/*.c"
913
914
915
dnl Find the nanox include and library directories
CheckNANOX()
{
916
AC_ARG_ENABLE(video-nanox,
917
AC_HELP_STRING([--enable-video-nanox], [use nanox video driver [[default=no]]]),
918
919
920
, enable_video_nanox=no)
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then
922
AC_HELP_STRING([--enable-nanox-debug], [print debug messages [[default=no]]]),
924
if test x$enable_nanox_debug = xyes; then
925
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DEBUG"
929
AC_HELP_STRING([--enable-nanox-share-memory], [use share memory [[default=no]]]),
931
if test x$enable_nanox_share_memory = xyes; then
932
EXTRA_CFLAGS="$EXTRA_CFLAGS -DNANOX_SHARE_MEMORY"
936
AC_HELP_STRING([--enable-nanox-direct-fb], [use direct framebuffer access [[default=no]]]),
938
if test x$enable_nanox_direct_fb = xyes; then
939
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DIRECT_FB"
942
943
AC_DEFINE(SDL_VIDEO_DRIVER_NANOX)
SOURCES="$SOURCES $srcdir/src/video/nanox/*.c"
944
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lnano-X"
949
950
951
952
dnl Find the X11 include and library directories
CheckX11()
{
AC_ARG_ENABLE(video-x11,
953
AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
954
955
, enable_video_x11=yes)
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
957
958
*-*-darwin*)
# This isn't necessary for X11, but fixes GLX detection
959
if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
960
961
962
963
964
x_includes="/usr/X11R6/include"
x_libraries="/usr/X11R6/lib"
fi
;;
esac
965
966
967
AC_PATH_X
AC_PATH_XTRA
if test x$have_x = xyes; then
968
969
970
971
972
# 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
974
975
AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
, enable_x11_shared=maybe)
977
case "$host" in
978
*-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs...
980
981
x11_lib='/usr/X11R6/lib/libX11.6.dylib'
x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
982
xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
983
xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
985
986
987
988
989
*-*-osf*)
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
*-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
990
991
992
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
994
x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1/'`]
995
996
for path in $x11_lib_path /usr/lib /usr/X11/lib /usr/X11R6/lib; do
if test "x$x11_lib" = "x"; then
997
x11_lib=[`ls -- $path/libX11.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
998
999
1000
if test "x$x11_lib" = "x"; then
x11_lib=[`ls -- $path/libX11.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
fi