Skip to content

Latest commit

 

History

History
2932 lines (2760 loc) · 99.3 KB

configure.in

File metadata and controls

2932 lines (2760 loc) · 99.3 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
AC_CONFIG_AUX_DIRS($srcdir/build-scripts)
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
20
21
22
SDL_MICRO_VERSION=14
SDL_INTERFACE_AGE=3
SDL_BINARY_AGE=14
23
24
25
26
27
28
29
30
31
32
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
33
34
LT_INIT([win32-dll])
35
36
37
38
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`
39
m4_pattern_allow([^LT_])
40
41
42
43
44
45
AC_SUBST(LT_RELEASE)
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
46
dnl Detect the canonical build and host environments
47
AC_CONFIG_AUX_DIR([build-scripts])
48
dnl AC_CANONICAL_HOST
49
50
51
52
53
54
AC_C_BIGENDIAN
if test x$ac_cv_c_bigendian = xyes; then
AC_DEFINE(SDL_BYTEORDER, 4321)
else
AC_DEFINE(SDL_BYTEORDER, 1234)
fi
56
57
58
59
60
61
dnl Check for tools
AC_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_MAKE_SET
62
AC_CHECK_TOOL(WINDRES, [windres], [:])
64
dnl Set up the compiler and linker flags
66
if test x$srcdir != x.; then
67
68
69
70
71
# 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
72
INCLUDE="-Iinclude $INCLUDE"
74
case "$host" in
75
76
*-*-cygwin*)
# We build SDL on cygwin without the UNIX emulation layer
77
78
BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin"
BASE_LDFLAGS="-mno-cygwin"
81
82
BASE_CFLAGS="-D_GNU_SOURCE=1"
BASE_LDFLAGS=""
85
BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
86
87
88
EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
BUILD_LDFLAGS="$LDFLAGS"
EXTRA_LDFLAGS="$BASE_LDFLAGS"
89
90
## These are common directories to find software packages
#for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
91
92
93
94
95
96
97
# 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
98
99
100
101
102
SDL_CFLAGS="$BASE_CFLAGS"
SDL_LIBS="-lSDL $BASE_LDFLAGS"
CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
dnl set this to use on systems that use lib64 instead of lib
base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
dnl Function to find a library in the compiler search path
find_lib()
{
gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`]
if test "$cross_compiling" = yes; then
host_lib_path=""
else
host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
fi
for path in $gcc_bin_path $gcc_lib_path $env_lib_path $host_lib_path; do
lib=[`ls -- $path/$1 2>/dev/null | sort | sed 's/.*\/\(.*\)/\1/; q'`]
if test x$lib != x; then
echo $lib
return
fi
done
}
132
133
dnl See whether we are allowed to use the system C library
AC_ARG_ENABLE(libc,
134
AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
135
136
137
138
139
140
, enable_libc=yes)
if test x$enable_libc = xyes; then
AC_DEFINE(HAVE_LIBC)
dnl Check for C library headers
AC_HEADER_STDC
141
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)
142
143
144
145
146
147
148
149
150
151
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
154
155
156
157
158
159
160
161
case "$host" in
*-*-cygwin* | *-*-mingw32*)
;;
*)
AC_FUNC_ALLOCA
;;
esac
162
163
164
AC_FUNC_MEMCMP
if test x$ac_cv_func_memcmp_working = xyes; then
AC_DEFINE(HAVE_MEMCMP)
166
167
168
169
AC_FUNC_STRTOD
if test x$ac_cv_func_strtod = xyes; then
AC_DEFINE(HAVE_STRTOD)
fi
170
171
172
173
174
175
176
177
178
179
AC_CHECK_FUNC(mprotect,
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/mman.h>
],[
],[
AC_DEFINE(HAVE_MPROTECT)
]),
)
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)
181
AC_CHECK_LIB(iconv, libiconv_open, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
182
AC_CHECK_LIB(m, pow, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
183
184
AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE(HAVE_SA_SIGACTION)], ,[#include <signal.h>])
185
186
187
fi
if test x$have_inttypes != xyes; then
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
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
226
227
AC_DEFINE(size_t, unsigned int)
AC_DEFINE(uintptr_t, unsigned long)
230
231
232
233
234
235
236
237
238
239
240
241
# 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"
242
243
244
dnl Enable/disable various subsystems of the SDL library
AC_ARG_ENABLE(audio,
245
AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
246
, enable_audio=yes)
247
248
if test x$enable_audio != xyes; then
AC_DEFINE(SDL_AUDIO_DISABLED)
249
250
fi
AC_ARG_ENABLE(video,
251
AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
252
, enable_video=yes)
253
254
if test x$enable_video != xyes; then
AC_DEFINE(SDL_VIDEO_DISABLED)
255
256
fi
AC_ARG_ENABLE(events,
257
AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
258
, enable_events=yes)
259
260
if test x$enable_events != xyes; then
AC_DEFINE(SDL_EVENTS_DISABLED)
261
262
fi
AC_ARG_ENABLE(joystick,
263
AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
264
, enable_joystick=yes)
265
266
if test x$enable_joystick != xyes; then
AC_DEFINE(SDL_JOYSTICK_DISABLED)
267
268
else
SOURCES="$SOURCES $srcdir/src/joystick/*.c"
269
270
fi
AC_ARG_ENABLE(cdrom,
271
AC_HELP_STRING([--enable-cdrom], [Enable the cdrom subsystem [[default=yes]]]),
272
, enable_cdrom=yes)
273
274
if test x$enable_cdrom != xyes; then
AC_DEFINE(SDL_CDROM_DISABLED)
275
276
fi
AC_ARG_ENABLE(threads,
277
AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
278
279
, enable_threads=yes)
if test x$enable_threads != xyes; then
281
282
fi
AC_ARG_ENABLE(timers,
283
AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
284
, enable_timers=yes)
285
286
if test x$enable_timers != xyes; then
AC_DEFINE(SDL_TIMERS_DISABLED)
287
288
fi
AC_ARG_ENABLE(file,
289
AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
290
, enable_file=yes)
291
292
293
294
if test x$enable_file != xyes; then
AC_DEFINE(SDL_FILE_DISABLED)
fi
AC_ARG_ENABLE(loadso,
295
AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
296
297
298
, enable_loadso=yes)
if test x$enable_loadso != xyes; then
AC_DEFINE(SDL_LOADSO_DISABLED)
301
AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
303
304
305
if test x$enable_cpuinfo != xyes; then
AC_DEFINE(SDL_CPUINFO_DISABLED)
fi
307
AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
308
309
310
, enable_assembly=yes)
if test x$enable_assembly = xyes; then
AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
312
313
314
315
316
dnl See if the OSS audio interface is supported
CheckOSS()
{
AC_ARG_ENABLE(oss,
317
AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
318
319
320
321
, 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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
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
341
342
AC_MSG_RESULT($have_oss)
if test x$have_oss = xyes; then
343
344
345
346
347
AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
have_audio=yes
348
# We may need to link with ossaudio emulation library
349
case "$host" in
350
*-*-openbsd*|*-*-netbsd*)
351
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
353
354
355
356
357
358
359
360
fi
fi
}
dnl See if the ALSA audio interface is supported
CheckALSA()
{
AC_ARG_ENABLE(alsa,
361
AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
362
363
, enable_alsa=yes)
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
364
AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
365
366
367
368
# Restore all flags from before the ALSA detection runs
CFLAGS="$alsa_save_CFLAGS"
LDFLAGS="$alsa_save_LDFLAGS"
LIBS="$alsa_save_LIBS"
369
if test x$have_alsa = xyes; then
370
AC_ARG_ENABLE(alsa-shared,
371
AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
373
alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
374
375
376
AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
377
EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
378
379
if test x$have_loadso != xyes && \
test x$enable_alsa_shared = xyes; then
380
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
381
382
383
fi
if test x$have_loadso = xyes && \
test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
385
386
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib")
else
387
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
394
395
396
397
398
399
400
401
402
403
404
405
406
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
])
408
409
# Set up files for the audio library
if test x$have_dmedia = xyes; then
410
411
AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
412
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
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
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"
449
450
EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
451
452
453
454
455
have_audio=yes
fi
fi
}
456
457
458
459
dnl Find the ESD includes and libraries
CheckESD()
{
AC_ARG_ENABLE(esd,
460
AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
461
462
, enable_esd=yes)
if test x$enable_audio = xyes -a x$enable_esd = xyes; then
463
464
AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
if test x$have_esd = xyes; then
465
AC_ARG_ENABLE(esd-shared,
466
AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
468
esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
469
470
471
AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
472
EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
473
if test x$have_loadso != xyes && \
474
test x$enable_esd_shared = xyes; then
475
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
477
if test x$have_loadso = xyes && \
478
test x$enable_esd_shared = xyes && test x$esd_lib != x; then
480
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
482
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
486
487
488
fi
}
489
490
491
492
493
dnl Find PulseAudio
CheckPulseAudio()
{
AC_ARG_ENABLE(pulseaudio,
AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
494
495
, enable_pulseaudio=yes)
if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
496
497
498
499
500
501
502
audio_pulse=no
PULSE_REQUIRED_VERSION=0.9
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
AC_MSG_CHECKING(for PulseAudio $PULSE_REQUIRED_VERSION support)
if test x$PKG_CONFIG != xno; then
503
if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSE_REQUIRED_VERSION libpulse-simple; then
504
505
506
PULSE_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple`
PULSE_LIBS=`$PKG_CONFIG --libs libpulse-simple`
audio_pulse=yes
508
509
510
511
512
513
fi
AC_MSG_RESULT($audio_pulse)
if test x$audio_pulse = xyes; then
AC_ARG_ENABLE(pulseaudio-shared,
AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
514
, enable_pulseaudio_shared=yes)
515
pulse_lib=[`find_lib "libpulse-simple.so.*" "$PULSE_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
516
517
518
519
520
AC_DEFINE(SDL_AUDIO_DRIVER_PULSE)
SOURCES="$SOURCES $srcdir/src/audio/pulse/*.c"
EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSE_CFLAGS"
if test x$have_loadso != xyes && \
521
test x$enable_pulseaudio_shared = xyes; then
522
523
524
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
fi
if test x$have_loadso = xyes && \
525
test x$enable_pulseaudio_shared = xyes && test x$pulse_lib != x; then
526
echo "-- dynamic libpulse-simple -> $pulse_lib"
527
528
529
530
531
532
533
534
535
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSE_DYNAMIC, "$pulse_lib")
else
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSE_LIBS"
fi
have_audio=yes
fi
fi
}
536
537
538
CheckARTSC()
{
AC_ARG_ENABLE(arts,
539
AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
540
541
, enable_arts=yes)
if test x$enable_audio = xyes -a x$enable_arts = xyes; then
542
543
AC_PATH_PROG(ARTSCONFIG, artsc-config)
if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
544
545
: # arts isn't installed
else
546
547
ARTS_CFLAGS=`$ARTSCONFIG --cflags`
ARTS_LIBS=`$ARTSCONFIG --libs`
548
549
550
AC_MSG_CHECKING(for aRts development environment)
audio_arts=no
save_CFLAGS="$CFLAGS"
552
553
554
555
556
557
558
559
560
561
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
562
AC_ARG_ENABLE(arts-shared,
563
AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
565
arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
566
567
568
AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
569
EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
570
if test x$have_loadso != xyes && \
571
test x$enable_arts_shared = xyes; then
572
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
574
if test x$have_loadso = xyes && \
575
test x$enable_arts_shared = xyes && test x$arts_lib != x; then
577
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
579
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
582
583
584
585
586
587
588
589
590
fi
fi
fi
}
dnl See if the NAS audio interface is supported
CheckNAS()
{
AC_ARG_ENABLE(nas,
591
AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
592
, enable_nas=yes)
593
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
594
595
AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
597
598
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
599
600
601
602
603
604
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
606
607
608
609
610
611
612
NAS_CFLAGS="-I/usr/X11R6/include/"
NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
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
617
AC_MSG_RESULT($have_nas)
620
621
622
AC_ARG_ENABLE(nas-shared,
AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
, enable_nas_shared=yes)
623
nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
624
625
626
627
628
629
630
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 && \
test x$enable_nas_shared = xyes && test x$nas_lib != x; then
632
633
634
635
636
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
else
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
fi
637
638
AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
639
EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
642
643
644
fi
}
645
646
647
648
dnl rcg07142001 See if the user wants the disk writer audio driver...
CheckDiskAudio()
{
AC_ARG_ENABLE(diskaudio,
649
AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
651
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
652
653
AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
657
658
659
660
dnl rcg03142006 See if the user wants the dummy audio driver...
CheckDummyAudio()
{
AC_ARG_ENABLE(dummyaudio,
661
AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
662
663
664
665
666
667
668
, 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
}
669
670
671
672
dnl Set up the Atari Audio driver
CheckAtariAudio()
{
AC_ARG_ENABLE(mintaudio,
673
AC_HELP_STRING([--enable-mintaudio], [support Atari audio driver [[default=yes]]]),
674
675
676
677
678
679
, 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
681
SOURCES="$SOURCES $srcdir/src/audio/mint/*.c"
682
SOURCES="$SOURCES $srcdir/src/audio/mint/*.S"
688
dnl See if we can use x86 assembly blitters
689
# NASM is available from: http://nasm.sourceforge.net
690
691
692
CheckNASM()
{
dnl Make sure we are running on an x86 platform
693
case $host in
694
695
696
697
698
699
700
i?86*)
;;
*)
# Nope, bail early.
return
;;
esac
701
702
703
704
dnl Mac OS X might report itself as "i386" but generate x86_64 code.
dnl So see what size we think a pointer is, and bail if not 32-bit.
AC_CHECK_SIZEOF([void *], 4)
705
if test x$ac_cv_sizeof_void_p != x4; then
709
710
dnl Check for NASM (for assembly blit routines)
AC_ARG_ENABLE(nasm,
711
AC_HELP_STRING([--enable-nasm], [use nasm assembly blitters on x86 [[default=yes]]]),
712
, enable_nasm=yes)
713
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_nasm = xyes; then
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
CompileNASM()
{
# Usage: CompileNASM <filename>
AC_MSG_CHECKING(to see if $NASM supports $1)
if $NASM $NASMFLAGS $1 -o $1.o >&AS_MESSAGE_LOG_FD 2>&1; then
CompileNASM_ret="yes"
else
CompileNASM_ret="no"
fi
rm -f $1 $1.o
AC_MSG_RESULT($CompileNASM_ret)
test "$CompileNASM_ret" = "yes"
}
if test x"$NASMFLAGS" = x; then
case $ARCH in
win32)
NASMFLAGS="-f win32"
;;
macosx)
NASMFLAGS="-f macho"
;;
*)
737
NASMFLAGS="-f elf32"
742
AC_PATH_PROG(NASM, nasm)
743
echo "%ifidn __OUTPUT_FORMAT__,elf32" > unquoted-sections
744
745
746
747
echo "section .note.GNU-stack noalloc noexec nowrite progbits" >> unquoted-sections
echo "%endif" >> unquoted-sections
CompileNASM unquoted-sections || NASM=""
748
if test "x$NASM" != x -a "x$NASM" != x'"$NASM"'; then
749
750
AC_DEFINE(SDL_HERMES_BLITTERS)
SOURCES="$SOURCES $srcdir/src/hermes/*.asm"
751
NASMFLAGS="$NASMFLAGS -I $srcdir/src/hermes/"
752
753
dnl See if hidden visibility is supported
754
755
756
echo "GLOBAL _bar:function hidden" > symbol-visibility
echo "_bar:" >> symbol-visibility
CompileNASM symbol-visibility && NASMFLAGS="$NASMFLAGS -DHIDDEN_VISIBILITY"
759
AC_SUBST(NASMFLAGS)
761
case "$host" in
762
# this line is needed for QNX, because it's not defined the __ELF__
764
EXTRA_CFLAGS="$EXTRA_CFLAGS -D__ELF__";;
766
EXTRA_CFLAGS="$EXTRA_CFLAGS -D__ELF__";;
768
769
770
771
772
773
774
775
fi
fi
}
dnl Check for altivec instruction support using gas syntax
CheckAltivec()
{
AC_ARG_ENABLE(altivec,
776
AC_HELP_STRING([--enable-altivec], [use altivec assembly blitters on PPC [[default=yes]]]),
778
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_altivec = xyes; then
779
780
save_CFLAGS="$CFLAGS"
have_gcc_altivec=no
782
783
784
altivec_CFLAGS="-maltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
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)
809
810
811
fi
if test x$have_gcc_altivec = xno; then
812
AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
813
814
altivec_CFLAGS="-faltivec"
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
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)
842
843
844
845
846
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
847
EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
848
849
850
851
fi
fi
}
852
853
854
855
856
857
858
859
860
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"
861
CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
863
864
865
#if !defined(__GNUC__) || __GNUC__ < 4
#error SDL only uses visibility attributes in GCC 4 or newer
#endif
866
867
868
869
870
871
872
873
],[
],[
have_gcc_fvisibility=yes
])
AC_MSG_RESULT($have_gcc_fvisibility)
CFLAGS="$save_CFLAGS"
if test x$have_gcc_fvisibility = xyes; then
874
EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
dnl See if GCC's -Wall is supported.
CheckWarnAll()
{
AC_MSG_CHECKING(for GCC -Wall option)
have_gcc_Wall=no
save_CFLAGS="$CFLAGS"
CFLAGS="$save_CFLAGS -Wall"
AC_TRY_COMPILE([
int x = 0;
],[
],[
have_gcc_Wall=yes
])
AC_MSG_RESULT($have_gcc_Wall)
CFLAGS="$save_CFLAGS"
if test x$have_gcc_Wall = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
fi
}
901
902
903
904
dnl Do the iPod thing
CheckIPod()
{
AC_ARG_ENABLE(ipod,
905
906
AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [[default=no]]]),
, enable_ipod=no)
907
908
if test x$enable_ipod = xyes; then
909
EXTRA_CFLAGS="$EXTRA_CFLAGS -DIPOD"
910
911
AC_DEFINE(SDL_VIDEO_DRIVER_IPOD)
SOURCES="$SOURCES $srcdir/src/video/ipod/*.c"
915
916
917
dnl Find the nanox include and library directories
CheckNANOX()
{
918
AC_ARG_ENABLE(video-nanox,
919
AC_HELP_STRING([--enable-video-nanox], [use nanox video driver [[default=no]]]),
920
921
922
, enable_video_nanox=no)
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then
924
AC_HELP_STRING([--enable-nanox-debug], [print debug messages [[default=no]]]),
926
if test x$enable_nanox_debug = xyes; then
927
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DEBUG"
931
AC_HELP_STRING([--enable-nanox-share-memory], [use share memory [[default=no]]]),
933
if test x$enable_nanox_share_memory = xyes; then
934
EXTRA_CFLAGS="$EXTRA_CFLAGS -DNANOX_SHARE_MEMORY"
938
AC_HELP_STRING([--enable-nanox-direct-fb], [use direct framebuffer access [[default=no]]]),
940
if test x$enable_nanox_direct_fb = xyes; then
941
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DIRECT_FB"
944
945
AC_DEFINE(SDL_VIDEO_DRIVER_NANOX)
SOURCES="$SOURCES $srcdir/src/video/nanox/*.c"
946
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lnano-X"
951
952
953
954
dnl Find the X11 include and library directories
CheckX11()
{
AC_ARG_ENABLE(video-x11,
955
AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
956
957
, enable_video_x11=yes)
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
959
960
*-*-darwin*)
# This isn't necessary for X11, but fixes GLX detection
961
if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
962
963
964
965
966
x_includes="/usr/X11R6/include"
x_libraries="/usr/X11R6/lib"
fi
;;
esac
967
968
969
AC_PATH_X
AC_PATH_XTRA
if test x$have_x = xyes; then
970
971
972
973
974
# 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
976
977
AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
, enable_x11_shared=maybe)
979
case "$host" in
980
*-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs...
982
983
x11_lib='/usr/X11R6/lib/libX11.6.dylib'
x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
984
xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
985
xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
987
988
989
990
991
*-*-osf*)
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
*-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
992
993
994
x11_lib='libX11.so'
x11ext_lib='libXext.so'
;;
996
997
998
999
x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]