Changed revision details to be a string (an hg changeset) instead of an int.
1 dnl Process this file with autoconf to produce a configure script.
3 AC_CONFIG_HEADER(include/SDL_config.h)
5 AC_CONFIG_AUX_DIRS($srcdir/build-scripts)
7 dnl Save the CFLAGS to see whether they were passed in or generated
10 dnl Set various version strings - taken gratefully from the GTk sources
13 # Edit include/SDL/SDL_version.h and change the version, then:
14 # SDL_MICRO_VERSION += 1;
15 # SDL_INTERFACE_AGE += 1;
16 # SDL_BINARY_AGE += 1;
17 # if any functions have been added, set SDL_INTERFACE_AGE to 0.
18 # if backwards compatibility has been broken,
19 # set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0.
26 SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
28 AC_SUBST(SDL_MAJOR_VERSION)
29 AC_SUBST(SDL_MINOR_VERSION)
30 AC_SUBST(SDL_MICRO_VERSION)
31 AC_SUBST(SDL_INTERFACE_AGE)
32 AC_SUBST(SDL_BINARY_AGE)
38 LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION
39 LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE`
40 LT_REVISION=$SDL_INTERFACE_AGE
41 LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
42 m4_pattern_allow([^LT_])
49 dnl Detect the canonical build and host environments
58 if test -z "$host_alias"; then
61 hostaliaswindres="$host_alias-windres"
63 AC_CHECK_PROGS(WINDRES, [windres $hostaliaswindres $host_os-windres])
65 dnl Set up the compiler and linker flags
66 INCLUDE="-I$srcdir/include"
67 if test x$srcdir != x.; then
68 # Remove SDL_config.h from the source directory, since it's the
69 # default one, and we want to include the one that we generate.
70 if test -f $srcdir/include/SDL_config.h; then
71 rm $srcdir/include/SDL_config.h
73 INCLUDE="-Iinclude $INCLUDE"
77 # We build SDL on cygwin without the UNIX emulation layer
78 BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin"
79 BASE_LDFLAGS="-mno-cygwin"
86 BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
87 # The default optimization for SDL 1.3 is -O3 (Bug #31)
88 if test x$orig_CFLAGS = x; then
89 BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'`
91 EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
92 BUILD_LDFLAGS="$LDFLAGS"
93 EXTRA_LDFLAGS="$BASE_LDFLAGS"
94 ## These are common directories to find software packages
95 #for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
96 # if test -d $path/include; then
97 # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
99 # if test -d $path/lib; then
100 # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
103 SDL_CFLAGS="$BASE_CFLAGS"
104 SDL_LIBS="-lSDL $BASE_LDFLAGS"
105 CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
106 CFLAGS="$CFLAGS $EXTRA_CFLAGS"
107 LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
109 dnl set this to use on systems that use lib64 instead of lib
110 base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
112 dnl Function to find a library in the compiler search path
115 gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
116 gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
117 env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`]
118 if test "$cross_compiling" = yes; then
121 host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
123 for path in $gcc_bin_path $gcc_lib_path $env_lib_path $host_lib_path; do
124 lib=[`ls -- $path/$1 2>/dev/null | sort | sed 's/.*\/\(.*\)/\1/; q'`]
125 if test x$lib != x; then
132 dnl Check for compiler characteristics
137 dnl See whether we want assertions for debugging/sanity checking SDL itself.
138 AC_ARG_ENABLE(assertions,
139 AC_HELP_STRING([--enable-assertions],
140 [Enable internal sanity checks (auto/disabled/release/enabled/paranoid) [[default=auto]]]),
141 , enable_assertions=auto)
142 case "$enable_assertions" in
143 auto) # Use optimization settings to determine assertion level
146 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0)
149 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1)
152 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2)
155 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3)
158 AC_MSG_ERROR([*** unknown assertion level. stop.])
162 dnl See whether we can use gcc style dependency tracking
163 AC_ARG_ENABLE(dependency-tracking,
164 AC_HELP_STRING([--enable-dependency-tracking],
165 [Use gcc -MMD -MT dependency tracking [[default=yes]]]),
166 , enable_dependency_tracking=yes)
167 if test x$enable_dependency_tracking = xyes; then
169 AC_MSG_CHECKING(for GCC -MMD -MT option)
171 #if !defined(__GNUC__) || __GNUC__ < 3
172 #error Dependency tracking requires GCC 3.0 or newer
178 AC_MSG_RESULT($have_gcc_mmd_mt)
180 if test x$have_gcc_mmd_mt = xyes; then
181 DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@"
185 dnl See whether we are allowed to use the system C library
187 AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
189 if test x$enable_libc = xyes; then
192 dnl Check for C library headers
194 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)
196 dnl Check for typedefs, structures, etc.
198 if test x$ac_cv_header_inttypes_h = xyes -o x$ac_cv_header_stdint_h = xyes; then
199 AC_CHECK_TYPE(int64_t)
200 if test x$ac_cv_type_int64_t = xyes; then
201 AC_DEFINE(SDL_HAS_64BIT_TYPE)
206 dnl Check for defines
207 AC_CHECK_DEFINE(M_PI, math.h)
209 dnl Checks for library functions.
211 *-*-cygwin* | *-*-mingw32*)
219 if test x$ac_cv_func_memcmp_working = xyes; then
220 AC_DEFINE(HAVE_MEMCMP)
223 if test x$ac_cv_func_strtod = xyes; then
224 AC_DEFINE(HAVE_STRTOD)
226 AC_CHECK_FUNC(mprotect,
228 #include <sys/types.h>
229 #include <sys/mman.h>
232 AC_DEFINE(HAVE_MPROTECT)
235 AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv 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 sysconf sysctlbyname)
237 AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
238 AC_CHECK_FUNCS(ceil copysign cos cosf fabs floor log pow scalbn sin sinf sqrt)
240 AC_CHECK_LIB(iconv, libiconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
241 AC_CHECK_FUNCS(iconv)
244 AC_CHECK_SIZEOF(void*)
245 if test x$have_inttypes != xyes; then
246 AC_CHECK_SIZEOF(char, 1)
247 AC_CHECK_SIZEOF(short, 2)
248 AC_CHECK_SIZEOF(int, 4)
249 AC_CHECK_SIZEOF(long, 4)
250 AC_CHECK_SIZEOF(long long, 8)
251 if test x$ac_cv_sizeof_char = x1; then
252 AC_DEFINE(int8_t, signed char)
253 AC_DEFINE(uint8_t, unsigned char)
255 if test x$ac_cv_sizeof_short = x2; then
256 AC_DEFINE(int16_t, signed short)
257 AC_DEFINE(uint16_t, unsigned short)
259 if test x$ac_cv_sizeof_int = x2; then
260 AC_DEFINE(int16_t, signed int)
261 AC_DEFINE(uint16_t, unsigned int)
264 if test x$ac_cv_sizeof_int = x4; then
265 AC_DEFINE(int32_t, signed int)
266 AC_DEFINE(uint32_t, unsigned int)
268 if test x$ac_cv_sizeof_long = x4; then
269 AC_DEFINE(int32_t, signed long)
270 AC_DEFINE(uint32_t, unsigned long)
273 if test x$ac_cv_sizeof_long = x8; then
274 AC_DEFINE(int64_t, signed long)
275 AC_DEFINE(uint64_t, unsigned long)
276 AC_DEFINE(SDL_HAS_64BIT_TYPE)
278 if test x$ac_cv_sizeof_long_long = x8; then
279 AC_DEFINE(int64_t, signed long long)
280 AC_DEFINE(uint64_t, unsigned long long)
281 AC_DEFINE(SDL_HAS_64BIT_TYPE)
284 AC_DEFINE(size_t, unsigned int)
285 AC_DEFINE(uintptr_t, unsigned long)
289 SOURCES="$SOURCES $srcdir/src/*.c"
290 SOURCES="$SOURCES $srcdir/src/audio/*.c"
291 SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
292 SOURCES="$SOURCES $srcdir/src/events/*.c"
293 SOURCES="$SOURCES $srcdir/src/file/*.c"
294 SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
295 SOURCES="$SOURCES $srcdir/src/thread/*.c"
296 SOURCES="$SOURCES $srcdir/src/timer/*.c"
297 SOURCES="$SOURCES $srcdir/src/video/*.c"
299 dnl Enable/disable various subsystems of the SDL library
301 AC_ARG_ENABLE(atomic,
302 AC_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]),
304 if test x$enable_atomic != xyes; then
305 AC_DEFINE(SDL_ATOMIC_DISABLED)
308 AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
310 if test x$enable_audio != xyes; then
311 AC_DEFINE(SDL_AUDIO_DISABLED)
314 AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
316 if test x$enable_video != xyes; then
317 AC_DEFINE(SDL_VIDEO_DISABLED)
319 AC_ARG_ENABLE(events,
320 AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
322 if test x$enable_events != xyes; then
323 AC_DEFINE(SDL_EVENTS_DISABLED)
325 AC_ARG_ENABLE(joystick,
326 AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
327 , enable_joystick=yes)
328 if test x$enable_joystick != xyes; then
329 AC_DEFINE(SDL_JOYSTICK_DISABLED)
331 SOURCES="$SOURCES $srcdir/src/joystick/*.c"
333 AC_ARG_ENABLE(haptic,
334 AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]),
336 if test x$enable_haptic != xyes; then
337 AC_DEFINE(SDL_HAPTIC_DISABLED)
339 SOURCES="$SOURCES $srcdir/src/haptic/*.c"
342 AC_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]),
344 if test x$enable_power != xyes; then
345 AC_DEFINE(SDL_POWER_DISABLED)
347 SOURCES="$SOURCES $srcdir/src/power/*.c"
349 AC_ARG_ENABLE(threads,
350 AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
351 , enable_threads=yes)
352 if test x$enable_threads != xyes; then
353 AC_DEFINE(SDL_THREADS_DISABLED)
355 AC_ARG_ENABLE(timers,
356 AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
358 if test x$enable_timers != xyes; then
359 AC_DEFINE(SDL_TIMERS_DISABLED)
362 AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
364 if test x$enable_file != xyes; then
365 AC_DEFINE(SDL_FILE_DISABLED)
367 AC_ARG_ENABLE(loadso,
368 AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
370 if test x$enable_loadso != xyes; then
371 AC_DEFINE(SDL_LOADSO_DISABLED)
373 AC_ARG_ENABLE(cpuinfo,
374 AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
375 , enable_cpuinfo=yes)
376 if test x$enable_cpuinfo != xyes; then
377 AC_DEFINE(SDL_CPUINFO_DISABLED)
379 AC_ARG_ENABLE(assembly,
380 AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
381 , enable_assembly=yes)
382 if test x$enable_assembly = xyes; then
383 AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
385 # Make sure that we don't generate floating point code that would
386 # cause illegal instruction exceptions on older processors
389 # Don't need to worry about Apple hardware, it's all SSE capable
393 # x86 64-bit architectures all have SSE instructions
400 AC_ARG_ENABLE(ssemath,
401 AC_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [[default=no]]]),
402 , enable_ssemath=$default_ssemath)
403 if test x$enable_ssemath = xno; then
404 if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes; then
405 EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387"
409 dnl Check for various instruction support
411 AC_HELP_STRING([--enable-mmx], [use MMX assembly routines [[default=yes]]]),
413 if test x$enable_mmx = xyes; then
414 save_CFLAGS="$CFLAGS"
416 AC_MSG_CHECKING(for GCC -mmmx option)
418 CFLAGS="$save_CFLAGS $mmx_CFLAGS"
421 #include <mmintrin.h>
423 #error Assembler CPP flag not enabled
429 AC_MSG_RESULT($have_gcc_mmx)
430 CFLAGS="$save_CFLAGS"
432 if test x$have_gcc_mmx = xyes; then
433 EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
438 AC_HELP_STRING([--enable-3dnow], [use MMX assembly routines [[default=yes]]]),
440 if test x$enable_3dnow = xyes; then
441 save_CFLAGS="$CFLAGS"
443 AC_MSG_CHECKING(for GCC -m3dnow option)
444 amd3dnow_CFLAGS="-m3dnow"
445 CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
450 #error Assembler CPP flag not enabled
456 AC_MSG_RESULT($have_gcc_3dnow)
457 CFLAGS="$save_CFLAGS"
459 if test x$have_gcc_3dnow = xyes; then
460 EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
465 AC_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]),
467 if test x$enable_sse = xyes; then
468 save_CFLAGS="$CFLAGS"
470 AC_MSG_CHECKING(for GCC -msse option)
472 CFLAGS="$save_CFLAGS $sse_CFLAGS"
475 #include <xmmintrin.h>
477 #error Assembler CPP flag not enabled
483 AC_MSG_RESULT($have_gcc_sse)
484 CFLAGS="$save_CFLAGS"
486 if test x$have_gcc_sse = xyes; then
487 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
492 AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=no]]]),
493 , enable_sse2=$default_ssemath)
494 if test x$enable_sse2 = xyes; then
495 save_CFLAGS="$CFLAGS"
497 AC_MSG_CHECKING(for GCC -msse2 option)
499 CFLAGS="$save_CFLAGS $sse2_CFLAGS"
502 #include <emmintrin.h>
504 #error Assembler CPP flag not enabled
510 AC_MSG_RESULT($have_gcc_sse2)
511 CFLAGS="$save_CFLAGS"
513 if test x$have_gcc_sse2 = xyes; then
514 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
518 AC_ARG_ENABLE(altivec,
519 AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]),
520 , enable_altivec=yes)
521 if test x$enable_altivec = xyes; then
522 save_CFLAGS="$CFLAGS"
524 have_altivec_h_hdr=no
525 altivec_CFLAGS="-maltivec"
526 CFLAGS="$save_CFLAGS $altivec_CFLAGS"
528 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
531 vector unsigned int vzero() {
532 return vec_splat_u32(0);
537 have_altivec_h_hdr=yes
539 AC_MSG_RESULT($have_gcc_altivec)
541 if test x$have_gcc_altivec = xno; then
542 AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
544 vector unsigned int vzero() {
545 return vec_splat_u32(0);
551 AC_MSG_RESULT($have_gcc_altivec)
554 if test x$have_gcc_altivec = xno; then
555 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
556 altivec_CFLAGS="-faltivec"
557 CFLAGS="$save_CFLAGS $altivec_CFLAGS"
560 vector unsigned int vzero() {
561 return vec_splat_u32(0);
566 have_altivec_h_hdr=yes
568 AC_MSG_RESULT($have_gcc_altivec)
571 if test x$have_gcc_altivec = xno; then
572 AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
574 vector unsigned int vzero() {
575 return vec_splat_u32(0);
581 AC_MSG_RESULT($have_gcc_altivec)
583 CFLAGS="$save_CFLAGS"
585 if test x$have_gcc_altivec = xyes; then
586 AC_DEFINE(SDL_ALTIVEC_BLITTERS)
587 if test x$have_altivec_h_hdr = xyes; then
588 AC_DEFINE(HAVE_ALTIVEC_H)
590 EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
595 dnl See if the OSS audio interface is supported
599 AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
601 if test x$enable_audio = xyes -a x$enable_oss = xyes; then
602 AC_MSG_CHECKING(for OSS audio support)
604 if test x$have_oss != xyes; then
606 #include <sys/soundcard.h>
608 int arg = SNDCTL_DSP_SETFRAGMENT;
613 if test x$have_oss != xyes; then
615 #include <soundcard.h>
617 int arg = SNDCTL_DSP_SETFRAGMENT;
620 AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H)
623 AC_MSG_RESULT($have_oss)
624 if test x$have_oss = xyes; then
625 AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
626 SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
627 SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
630 # We may need to link with ossaudio emulation library
632 *-*-openbsd*|*-*-netbsd*)
633 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
639 dnl See if the ALSA audio interface is supported
643 AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
645 if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
646 AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
647 # Restore all flags from before the ALSA detection runs
648 CFLAGS="$alsa_save_CFLAGS"
649 LDFLAGS="$alsa_save_LDFLAGS"
650 LIBS="$alsa_save_LIBS"
651 if test x$have_alsa = xyes; then
652 AC_ARG_ENABLE(alsa-shared,
653 AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
654 , enable_alsa_shared=yes)
655 alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
657 AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
658 SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
659 EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
660 if test x$have_loadso != xyes && \
661 test x$enable_alsa_shared = xyes; then
662 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
664 if test x$have_loadso = xyes && \
665 test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
666 echo "-- dynamic libasound -> $alsa_lib"
667 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib")
669 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
676 dnl Check whether we want to use IRIX 6.5+ native audio or not
679 if test x$enable_audio = xyes; then
680 AC_MSG_CHECKING(for dmedia audio support)
683 #include <dmedia/audio.h>
689 AC_MSG_RESULT($have_dmedia)
690 # Set up files for the audio library
691 if test x$have_dmedia = xyes; then
692 AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
693 SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
694 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
700 dnl Check whether we want to use Tru64 UNIX native audio or not
703 dnl Make sure we are running on an Tru64 UNIX
711 if test x$enable_audio = xyes; then
712 AC_MSG_CHECKING(for MME audio support)
713 MME_CFLAGS="-I/usr/include/mme"
716 save_CFLAGS="$CFLAGS"
717 CFLAGS="$CFLAGS $MME_CFLAGS"
725 CFLAGS="$save_CFLAGS"
726 AC_MSG_RESULT($have_mme)
727 # Set up files for the audio library
728 if test x$have_mme = xyes; then
729 AC_DEFINE(SDL_AUDIO_DRIVER_MMEAUDIO)
730 SOURCES="$SOURCES $srcdir/src/audio/mme/*.c"
731 EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
732 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
738 dnl Find the ESD includes and libraries
742 AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
744 if test x$enable_audio = xyes -a x$enable_esd = xyes; then
745 AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
746 if test x$have_esd = xyes; then
747 AC_ARG_ENABLE(esd-shared,
748 AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
749 , enable_esd_shared=yes)
750 esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
752 AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
753 SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
754 EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
755 if test x$have_loadso != xyes && \
756 test x$enable_esd_shared = xyes; then
757 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
759 if test x$have_loadso = xyes && \
760 test x$enable_esd_shared = xyes && test x$esd_lib != x; then
761 echo "-- dynamic libesd -> $esd_lib"
762 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
764 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
774 AC_ARG_ENABLE(pulseaudio,
775 AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
776 , enable_pulseaudio=yes)
777 if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
780 PULSEAUDIO_REQUIRED_VERSION=0.9
782 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
783 AC_MSG_CHECKING(for PulseAudio $PULSEAUDIO_REQUIRED_VERSION support)
784 if test x$PKG_CONFIG != xno; then
785 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSEAUDIO_REQUIRED_VERSION libpulse-simple; then
786 PULSEAUDIO_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple`
787 PULSEAUDIO_LIBS=`$PKG_CONFIG --libs libpulse-simple`
791 AC_MSG_RESULT($audio_pulseaudio)
793 if test x$audio_pulseaudio = xyes; then
794 AC_ARG_ENABLE(pulseaudio-shared,
795 AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
796 , enable_pulseaudio_shared=yes)
797 pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
799 AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO)
800 SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
801 EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
802 if test x$have_loadso != xyes && \
803 test x$enable_pulseaudio_shared = xyes; then
804 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
806 if test x$have_loadso = xyes && \
807 test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
808 echo "-- dynamic libpulse-simple -> $pulseaudio_lib"
809 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib")
811 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
821 AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
823 if test x$enable_audio = xyes -a x$enable_arts = xyes; then
824 AC_PATH_PROG(ARTSCONFIG, artsc-config)
825 if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
826 : # arts isn't installed
828 ARTS_CFLAGS=`$ARTSCONFIG --cflags`
829 ARTS_LIBS=`$ARTSCONFIG --libs`
830 AC_MSG_CHECKING(for aRts development environment)
832 save_CFLAGS="$CFLAGS"
833 CFLAGS="$CFLAGS $ARTS_CFLAGS"
837 arts_stream_t stream;
841 CFLAGS="$save_CFLAGS"
842 AC_MSG_RESULT($audio_arts)
843 if test x$audio_arts = xyes; then
844 AC_ARG_ENABLE(arts-shared,
845 AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
846 , enable_arts_shared=yes)
847 arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
849 AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
850 SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
851 EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
852 if test x$have_loadso != xyes && \
853 test x$enable_arts_shared = xyes; then
854 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
856 if test x$have_loadso = xyes && \
857 test x$enable_arts_shared = xyes && test x$arts_lib != x; then
858 echo "-- dynamic libartsc -> $arts_lib"
859 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
861 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
869 dnl See if the NAS audio interface is supported
873 AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
875 if test x$enable_audio = xyes -a x$enable_nas = xyes; then
876 AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
877 AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
879 AC_MSG_CHECKING(for NAS audio support)
882 if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
886 elif test -r /usr/X11R6/include/audio/audiolib.h; then
888 NAS_CFLAGS="-I/usr/X11R6/include/"
889 NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
891 dnl On IRIX, the NAS includes are in a different directory,
892 dnl and libnas must be explicitly linked in
894 elif test -r /usr/freeware/include/nas/audiolib.h; then
896 NAS_LIBS="-lnas -lXt"
899 AC_MSG_RESULT($have_nas)
901 if test x$have_nas = xyes; then
902 AC_ARG_ENABLE(nas-shared,
903 AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
904 , enable_nas_shared=yes)
905 nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
907 if test x$have_loadso != xyes && \
908 test x$enable_nas_shared = xyes; then
909 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
911 if test x$have_loadso = xyes && \
912 test x$enable_nas_shared = xyes && test x$nas_lib != x; then
913 echo "-- dynamic libaudio -> $nas_lib"
914 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
916 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
919 AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
920 SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
921 EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
927 dnl rcg07142001 See if the user wants the disk writer audio driver...
930 AC_ARG_ENABLE(diskaudio,
931 AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
932 , enable_diskaudio=yes)
933 if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
934 AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
935 SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
939 dnl rcg03142006 See if the user wants the dummy audio driver...
942 AC_ARG_ENABLE(dummyaudio,
943 AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
944 , enable_dummyaudio=yes)
945 if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
946 AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY)
947 SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
951 dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
952 dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
953 CheckVisibilityHidden()
955 AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
956 have_gcc_fvisibility=no
958 visibility_CFLAGS="-fvisibility=hidden"
959 save_CFLAGS="$CFLAGS"
960 CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
962 #if !defined(__GNUC__) || __GNUC__ < 4
963 #error SDL only uses visibility attributes in GCC 4 or newer
967 have_gcc_fvisibility=yes
969 AC_MSG_RESULT($have_gcc_fvisibility)
970 CFLAGS="$save_CFLAGS"
972 if test x$have_gcc_fvisibility = xyes; then
973 EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
978 dnl Find the X11 include and library directories
981 AC_ARG_ENABLE(video-x11,
982 AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
983 , enable_video_x11=yes)
984 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
987 # This isn't necessary for X11, but fixes GLX detection
988 if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
989 x_includes="/usr/X11R6/include"
990 x_libraries="/usr/X11R6/lib"
996 if test x$have_x = xyes; then
997 # Only allow dynamically loaded X11 if the X11 function pointers
998 # will not end up in the global namespace, which causes problems
999 # with other libraries calling X11 functions.
1000 x11_symbols_private=$have_gcc_fvisibility
1002 AC_ARG_ENABLE(x11-shared,
1003 AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
1004 , enable_x11_shared=maybe)
1007 *-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs...
1008 x11_symbols_private=yes
1009 x11_lib='/usr/X11R6/lib/libX11.6.dylib'
1010 x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
1011 xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
1012 xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
1013 xinput_lib='/usr/X11R6/lib/libXi.6.dylib'
1014 xss_lib='/usr/X11R6/lib/libXss.6.dylib'
1018 x11ext_lib='libXext.so'
1020 *-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
1022 x11ext_lib='libXext.so'
1025 x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1026 x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1027 xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1028 xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1029 xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1030 xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1034 if test x$ac_cv_func_shmat != xyes; then
1035 X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
1037 CFLAGS="$CFLAGS $X_CFLAGS"
1038 LDFLAGS="$LDFLAGS $X_LIBS"
1040 AC_DEFINE(SDL_VIDEO_DRIVER_X11)
1041 SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
1042 SOURCES="$SOURCES $srcdir/src/video/Xext/XmuStdCmap/*.c"
1043 EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
1045 if test x$enable_x11_shared = xmaybe; then
1046 enable_x11_shared=$x11_symbols_private
1048 if test x$have_loadso != xyes && \
1049 test x$enable_x11_shared = xyes; then
1050 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
1051 enable_x11_shared=no
1053 if test x$x11_symbols_private != xyes && \
1054 test x$enable_x11_shared = xyes; then
1055 AC_MSG_WARN([You must have gcc4 (-fvisibility=hidden) for dynamic X11 loading])
1056 enable_x11_shared=no
1059 if test x$have_loadso = xyes && \
1060 test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
1061 echo "-- dynamic libX11 -> $x11_lib"
1062 echo "-- dynamic libX11ext -> $x11ext_lib"
1063 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib")
1064 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib")
1066 enable_x11_shared=no
1067 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
1071 AC_ARG_ENABLE(video-x11-vm,
1072 AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
1073 , enable_video_x11_vm=yes)
1074 if test x$enable_video_x11_vm = xyes; then
1075 AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE)
1076 SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c"
1078 AC_ARG_ENABLE(video-x11-xv,
1079 AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [[default=yes]]]),
1080 , enable_video_x11_xv=yes)
1081 if test x$enable_video_x11_xv = xyes; then
1082 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV)
1083 SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c"
1085 AC_ARG_ENABLE(video-x11-xinerama,
1086 AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
1087 , enable_video_x11_xinerama=yes)
1088 if test x$enable_video_x11_xinerama = xyes; then
1089 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA)
1090 SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c"
1092 AC_ARG_ENABLE(video-x11-xrandr,
1093 AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
1094 , enable_video_x11_xrandr=yes)
1095 if test x$enable_video_x11_xrandr = xyes; then
1096 definitely_enable_video_x11_xrandr=no
1097 AC_CHECK_HEADER(X11/extensions/Xrandr.h,
1098 have_xrandr_h_hdr=yes,
1099 have_xrandr_h_hdr=no,
1100 [#include <X11/Xlib.h>
1102 if test x$have_xrandr_h_hdr = xyes; then
1103 if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
1104 echo "-- dynamic libXrender -> $xrender_lib"
1105 echo "-- dynamic libXrandr -> $xrandr_lib"
1106 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER, "$xrender_lib")
1107 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib")
1108 definitely_enable_video_x11_xrandr=yes
1110 AC_CHECK_LIB(Xrender, XRenderQueryExtension, have_xrender_lib=yes)
1111 AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
1112 if test x$have_xrender_lib = xyes && test x$have_xrandr_lib = xyes ; then
1113 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr -lXrender"
1114 definitely_enable_video_x11_xrandr=yes
1119 if test x$definitely_enable_video_x11_xrandr = xyes; then
1120 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR)
1122 AC_ARG_ENABLE(video-x11-xinput,
1123 AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
1124 , enable_video_x11_xinput=yes)
1125 if test x$enable_video_x11_xinput = xyes; then
1126 definitely_enable_video_x11_xinput=no
1127 AC_CHECK_HEADER(X11/extensions/XInput.h,
1128 have_xinput_h_hdr=yes,
1129 have_xinput_h_hdr=no,
1130 [#include <X11/Xlib.h>
1132 if test x$have_xinput_h_hdr = xyes; then
1133 if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
1134 echo "-- dynamic libXi -> $xinput_lib"
1135 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib")
1136 definitely_enable_video_x11_xinput=yes
1138 AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
1139 if test x$have_xinput_lib = xyes ; then
1140 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
1141 definitely_enable_video_x11_xinput=yes
1146 if test x$definitely_enable_video_x11_xinput = xyes; then
1147 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT)
1149 AC_ARG_ENABLE(video-x11-scrnsaver,
1150 AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
1151 , enable_video_x11_scrnsaver=yes)
1152 if test x$enable_video_x11_scrnsaver = xyes; then
1153 AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
1154 have_scrnsaver_h_hdr=yes,
1155 have_scrnsaver_h_hdr=no,
1156 [#include <X11/Xlib.h>
1158 if test x$have_scrnsaver_h_hdr = xyes; then
1159 if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
1160 echo "-- dynamic libXss -> $xss_lib"
1161 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib")
1162 definitely_enable_video_x11_scrnsaver=yes
1164 AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
1165 if test x$have_xss_lib = xyes ; then
1166 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
1167 definitely_enable_video_x11_scrnsaver=yes
1172 if test x$definitely_enable_video_x11_scrnsaver = xyes; then
1173 AC_DEFINE(SDL_VIDEO_DRIVER_X11_SCRNSAVER)
1176 AC_ARG_ENABLE(render-x11,
1177 AC_HELP_STRING([--enable-render-x11], [enable the X11 render driver [[default=yes]]]),
1178 , enable_render_x11=yes)
1179 if test x$enable_render_x11 = xyes; then
1180 AC_DEFINE(SDL_VIDEO_RENDER_X11)
1186 dnl Check for QNX photon video driver
1189 AC_ARG_ENABLE(video-photon,
1190 AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [[default=yes]]]),
1191 , enable_video_photon=yes)
1192 if test x$enable_video = xyes -a x$enable_video_photon = xyes; then
1193 AC_MSG_CHECKING(for QNX Photon support)
1198 #include <photon/Pg.h>
1199 #include <photon/PdDirect.h>
1201 PgDisplaySettings_t *visual;
1205 AC_MSG_RESULT($video_photon)
1206 if test x$video_photon = xyes; then
1207 AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON)
1208 SOURCES="$SOURCES $srcdir/src/video/photon/*.c"
1209 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lph -lphrender"
1217 dnl Check for QNX photon video driver
1220 AC_ARG_ENABLE(video-qnxgf,
1221 AC_HELP_STRING([--enable-video-qnxgf], [use QNX GF video driver [[default=yes]]]),
1222 , enable_video_qnxgf=yes)
1223 if test x$enable_video = xyes -a x$enable_video_qnxgf = xyes; then
1224 AC_MSG_CHECKING(for QNX GF support)
1228 #include <gf/gf3d.h>
1230 gf_3d_config_info_t* gfinfo;
1234 AC_MSG_RESULT($video_qnxgf)
1235 if test x$video_qnxgf = xyes; then
1236 AC_DEFINE(SDL_VIDEO_DRIVER_QNXGF)
1237 SOURCES="$SOURCES $srcdir/src/video/qnxgf/*.c"
1238 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgf"
1240 # Add HIDDI library for HID support using GF
1241 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lhiddi"
1250 dnl Set up the BWindow video driver if enabled
1253 if test x$enable_video = xyes; then
1254 AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW)
1255 SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc"
1260 dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
1263 AC_ARG_ENABLE(video-cocoa,
1264 AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
1265 , enable_video_cocoa=yes)
1266 if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
1267 save_CFLAGS="$CFLAGS"
1268 dnl work around that we don't have Objective-C support in autoconf
1269 CFLAGS="$CFLAGS -x objective-c"
1270 AC_MSG_CHECKING(for Cocoa framework)
1273 #import <Cocoa/Cocoa.h>
1278 AC_MSG_RESULT($have_cocoa)
1279 CFLAGS="$save_CFLAGS"
1280 if test x$have_cocoa = xyes; then
1281 AC_DEFINE(SDL_VIDEO_DRIVER_COCOA)
1282 SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
1288 dnl Find the framebuffer console includes
1291 AC_ARG_ENABLE(video-fbcon,
1292 AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]),
1293 , enable_video_fbcon=no)
1294 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
1295 AC_MSG_CHECKING(for framebuffer console support)
1298 #include <linux/fb.h>
1299 #include <linux/kd.h>
1300 #include <linux/keyboard.h>
1305 AC_MSG_RESULT($video_fbcon)
1306 if test x$video_fbcon = xyes; then
1307 AC_CHECK_FUNCS(getpagesize)
1308 AC_DEFINE(SDL_VIDEO_DRIVER_FBCON)
1309 SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c"
1318 AC_ARG_ENABLE(video-directfb,
1319 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
1320 , enable_video_directfb=no)
1321 if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
1324 DIRECTFB_REQUIRED_VERSION=1.0.0
1326 AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no)
1327 if test x$DIRECTFBCONFIG = xno; then
1328 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1329 if test x$PKG_CONFIG != xno; then
1330 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
1331 DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
1332 DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
1333 DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb`
1338 set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
1339 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1340 set -- `directfb-config --version | sed 's/\./ /g'`
1341 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1342 if test $HAVE_VERSION -ge $NEED_VERSION; then
1343 DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
1344 DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
1345 DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix`
1349 if test x$video_directfb = xyes; then
1350 # SuSE 11.1 installs directfb-config without directfb-devel
1351 save_CPPFLAGS="$CPPFLAGS"
1352 CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
1353 AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
1354 CPPFLAGS="$save_CPPFLAGS"
1355 video_directfb=$have_directfb_hdr
1357 AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
1358 AC_MSG_RESULT($video_directfb)
1360 if test x$video_directfb = xyes; then
1361 AC_ARG_ENABLE(directfb-shared,
1362 AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
1363 , enable_directfb_shared=yes)
1365 AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB)
1366 SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
1367 EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
1369 AC_MSG_CHECKING(for directfb dynamic loading support)
1371 directfb_lib=[`find_lib "libdirectfb.so.*" "$DIRECTFB_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
1373 if test x$have_loadso != xyes && \
1374 test x$enable_directfb_shared = xyes; then
1375 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
1377 if test x$have_loadso = xyes && \
1378 test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
1380 echo "-- $directfb_lib_spec -> $directfb_lib"
1381 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib")
1383 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
1385 AC_MSG_RESULT($directfb_shared)
1391 dnl Find FusionSound
1394 AC_ARG_ENABLE(fusionsound,
1395 AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
1396 , enable_fusionsound=no)
1397 if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
1400 FUSIONSOUND_REQUIRED_VERSION=1.1.1
1402 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1403 AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support)
1404 if test x$PKG_CONFIG != xno; then
1405 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then
1406 FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound`
1407 FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound`
1411 AC_MSG_RESULT($fusionsound)
1413 if test x$fusionsound = xyes; then
1414 AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND)
1415 SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
1416 EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
1418 AC_ARG_ENABLE(fusionsound-shared,
1419 AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
1420 , enable_fusionsound_shared=yes)
1421 fusionsound_shared=no
1422 AC_MSG_CHECKING(for FusionSound dynamic loading support)
1423 if test x$have_loadso != xyes && \
1424 test x$enable_fusionsound_shared = xyes; then
1425 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
1427 if test x$have_loadso = xyes && \
1428 test x$enable_fusionsound_shared = xyes; then
1429 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so")
1430 fusionsound_shared=yes
1432 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
1434 AC_MSG_RESULT($fusionsound_shared)
1441 dnl See if we're running on PlayStation 3 Cell hardware
1444 AC_ARG_ENABLE(video-ps3,
1445 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]),
1446 , enable_video_ps3=yes)
1447 if test x$enable_video = xyes -a x$enable_video_ps3 = xyes; then
1449 AC_CHECK_HEADER([linux/fb.h])
1450 AC_CHECK_HEADER([asm/ps3fb.h], [have_ps3fb_hdr=yes], [],
1451 [#ifndef _LINUX_TYPES_H
1452 #include <linux/types.h>
1454 AC_CHECK_HEADER([libspe2.h], have_libspe2_hdr=yes)
1455 AC_CHECK_LIB([spe2], spe_context_create, have_spe2_lib=yes)
1457 AC_CHECK_PROGS(SPU_GCC, [spu-gcc])
1458 AC_CHECK_PROGS(EMBEDSPU, [embedspu])
1461 AC_CHECK_LIB([fb_writer_spu], [main], [], [have_spu_libs=no])
1462 AC_CHECK_LIB([yuv2rgb_spu], [main], [], [have_spu_libs=no])
1463 AC_CHECK_LIB([bilin_scaler_spu], [main], [], [have_spu_libs=no])
1464 if test x$have_ps3fb_hdr = xyes -a x$have_libspe2_hdr = xyes -a x$have_spe2_lib = xyes -a "$SPU_GCC" -a "$EMBEDSPU"; then
1465 AC_DEFINE(SDL_VIDEO_DRIVER_PS3)
1468 SOURCES="$SOURCES $srcdir/src/video/ps3/*.c"
1469 EXTRA_CFLAGS="$EXTRA_CFLAGS -I/opt/cell/sdk/usr/include"
1470 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/cell/sdk/usr/lib -lspe2 -lfb_writer_spu -lyuv2rgb_spu -lbilin_scaler_spu"
1472 if test x$have_spu_libs = xno; then
1473 AC_MSG_WARN([ps3libs missing, please run make ps3libs])
1476 AC_MSG_CHECKING([for PlayStation 3 Cell support])
1477 AC_MSG_RESULT([$video_ps3])
1481 dnl Find the SVGAlib includes and libraries
1484 AC_ARG_ENABLE(video-svga,
1485 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=no]]]),
1486 , enable_video_svga=no)
1487 if test x$enable_video = xyes -a x$enable_video_svga = xyes; then
1488 AC_MSG_CHECKING(for SVGAlib (1.4.0+) support)
1492 #include <vgamouse.h>
1493 #include <vgakeyboard.h>
1495 if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) {
1501 AC_MSG_RESULT($video_svga)
1502 if test x$video_svga = xyes; then
1503 AC_DEFINE(SDL_VIDEO_DRIVER_SVGALIB)
1504 SOURCES="$SOURCES $srcdir/src/video/svga/*.c"
1505 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvga"
1511 dnl rcg04172001 Set up the Null video driver.
1514 AC_ARG_ENABLE(video-dummy,
1515 AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
1516 , enable_video_dummy=yes)
1517 if test x$enable_video_dummy = xyes; then
1518 AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY)
1519 SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
1524 dnl Check to see if OpenGL support is desired
1525 AC_ARG_ENABLE(video-opengl,
1526 AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
1527 , enable_video_opengl=yes)
1532 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1533 AC_MSG_CHECKING(for OpenGL (GLX) support)
1543 AC_MSG_RESULT($video_opengl)
1544 if test x$video_opengl = xyes; then
1545 AC_DEFINE(SDL_VIDEO_OPENGL)
1546 AC_DEFINE(SDL_VIDEO_OPENGL_GLX)
1547 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1552 dnl Find QNX 6.x Software OpenGL
1555 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1556 AC_MSG_CHECKING(for QNX 6.x Photon OpenGL support)
1564 AC_MSG_RESULT($video_opengl)
1565 if test x$video_opengl = xyes; then
1566 AC_DEFINE(SDL_VIDEO_OPENGL)
1567 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1568 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1573 dnl Find QNX 6.3 and above OpenGL ES implementation
1576 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1577 AC_MSG_CHECKING(for QNX OpenGL ES (CM) support)
1580 #include <GLES/egl.h>
1585 AC_MSG_RESULT($video_opengl)
1586 if test x$video_opengl = xyes; then
1587 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1588 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1589 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CM"
1591 AC_MSG_CHECKING(for QNX OpenGL ES (CL) support)
1595 #include <GLES/egl.h>
1600 AC_MSG_RESULT($video_opengl)
1601 if test x$video_opengl = xyes; then
1602 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1603 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1604 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CLS"
1611 dnl Check for Win32 OpenGL
1614 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1615 AC_DEFINE(SDL_VIDEO_OPENGL)
1616 AC_DEFINE(SDL_VIDEO_OPENGL_WGL)
1617 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1621 dnl Check for BeOS OpenGL
1624 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1625 AC_DEFINE(SDL_VIDEO_OPENGL)
1626 AC_DEFINE(SDL_VIDEO_OPENGL_BGL)
1627 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1628 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1632 dnl Check for MacOS OpenGL
1635 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1636 AC_DEFINE(SDL_VIDEO_OPENGL)
1637 AC_DEFINE(SDL_VIDEO_OPENGL_CGL)
1638 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1641 if test x$enable_video_cocoa = xyes; then
1642 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL"
1648 dnl See if we can use the new unified event interface in Linux 2.4
1651 dnl Check for Linux 2.4 unified input event interface support
1652 AC_ARG_ENABLE(input-events,
1653 AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [[default=yes]]]),
1654 , enable_input_events=yes)
1655 if test x$enable_input_events = xyes; then
1656 AC_MSG_CHECKING(for Linux 2.4 unified input interface)
1659 #include <linux/input.h>
1662 #error EVIOCGNAME() ioctl not available
1665 use_input_events=yes
1667 AC_MSG_RESULT($use_input_events)
1668 if test x$use_input_events = xyes; then
1669 AC_DEFINE(SDL_INPUT_LINUXEV)
1674 dnl See if we can use the Touchscreen input library
1677 AC_ARG_ENABLE(input-tslib,
1678 AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
1679 , enable_input_tslib=yes)
1680 if test x$enable_input_tslib = xyes; then
1681 AC_MSG_CHECKING(for Touchscreen library support)
1682 enable_input_tslib=no
1687 enable_input_tslib=yes
1689 AC_MSG_RESULT($enable_input_tslib)
1690 if test x$enable_input_tslib = xyes; then
1691 AC_DEFINE(SDL_INPUT_TSLIB)
1692 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
1697 dnl See what type of thread model to use on Linux and Solaris
1700 dnl Check for pthread support
1701 AC_ARG_ENABLE(pthreads,
1702 AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
1703 , enable_pthreads=yes)
1704 dnl This is used on Linux for glibc binary compatibility (Doh!)
1705 AC_ARG_ENABLE(pthread-sem,
1706 AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
1707 , enable_pthread_sem=yes)
1709 *-*-linux*|*-*-uclinux*)
1710 pthread_cflags="-D_REENTRANT"
1711 pthread_lib="-lpthread"
1714 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1718 pthread_cflags="-D_THREAD_SAFE"
1719 # causes Carbon.p complaints?
1720 # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1722 *-*-freebsd*|*-*-dragonfly*)
1723 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1724 pthread_lib="-pthread"
1727 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1728 pthread_lib="-lpthread"
1731 pthread_cflags="-D_REENTRANT"
1732 pthread_lib="-pthread"
1735 pthread_cflags="-D_REENTRANT"
1736 pthread_lib="-lpthread -lposix4"
1739 pthread_cflags="-D_REENTRANT -Kthread"
1743 pthread_cflags="-D_SGI_MP_SOURCE"
1744 pthread_lib="-lpthread"
1747 pthread_cflags="-D_REENTRANT -mthreads"
1748 pthread_lib="-lpthread"
1751 pthread_cflags="-D_REENTRANT"
1752 pthread_lib="-L/usr/lib -lpthread"
1759 pthread_cflags="-D_REENTRANT"
1760 if test x$ac_cv_prog_gcc = xyes; then
1761 pthread_lib="-lpthread -lrt"
1763 pthread_lib="-lpthread -lexc -lrt"
1767 pthread_cflags="-D_REENTRANT"
1768 pthread_lib="-lpthread"
1771 if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
1772 # Save the original compiler flags and libraries
1773 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
1774 # Add the pthread compiler flags and libraries
1775 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
1776 # Check to see if we have pthread support on this system
1777 AC_MSG_CHECKING(for pthreads)
1780 #include <pthread.h>
1782 pthread_attr_t type;
1783 pthread_attr_init(&type);
1787 AC_MSG_RESULT($use_pthreads)
1788 # Restore the compiler flags and libraries
1789 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1791 # Do futher testing if we have pthread support...
1792 if test x$use_pthreads = xyes; then
1793 AC_DEFINE(SDL_THREAD_PTHREAD)
1794 EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
1795 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
1796 SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
1797 SDL_LIBS="$SDL_LIBS $pthread_lib"
1799 # Save the original compiler flags and libraries
1800 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
1801 # Add the pthread compiler flags and libraries
1802 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
1804 # Check to see if recursive mutexes are available
1805 AC_MSG_CHECKING(for recursive mutexes)
1806 has_recursive_mutexes=no
1807 if test x$has_recursive_mutexes = xno; then
1809 #include <pthread.h>
1811 pthread_mutexattr_t attr;
1812 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1814 has_recursive_mutexes=yes
1815 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX)
1818 if test x$has_recursive_mutexes = xno; then
1820 #include <pthread.h>
1822 pthread_mutexattr_t attr;
1823 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
1825 has_recursive_mutexes=yes
1826 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP)
1829 AC_MSG_RESULT($has_recursive_mutexes)
1831 # Check to see if pthread semaphore support is missing
1832 if test x$enable_pthread_sem = xyes; then
1833 AC_MSG_CHECKING(for pthread semaphores)
1836 #include <pthread.h>
1837 #include <semaphore.h>
1840 have_pthread_sem=yes
1842 AC_MSG_RESULT($have_pthread_sem)
1845 # Restore the compiler flags and libraries
1846 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1848 # Basic thread creation functions
1849 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
1852 # We can fake these with mutexes and condition variables if necessary
1853 if test x$have_pthread_sem = xyes; then
1854 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
1856 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
1860 # We can fake these with semaphores if necessary
1861 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
1863 # Condition variables
1864 # We can fake these with semaphores and mutexes if necessary
1865 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
1872 dnl Determine whether the compiler can produce Win32 executables
1875 AC_MSG_CHECKING(Win32 compiler)
1878 #include <windows.h>
1883 AC_MSG_RESULT($have_win32_gcc)
1884 if test x$have_win32_gcc != xyes; then
1886 *** Your compiler ($CC) does not produce Win32 executables!
1890 AC_MSG_CHECKING(Windows CE)
1894 #error This is not Windows CE
1900 AC_MSG_RESULT($have_wince)
1902 dnl See if the user wants to redirect standard output to files
1903 AC_ARG_ENABLE(stdio-redirect,
1904 AC_HELP_STRING([--enable-stdio-redirect], [Redirect STDIO to files on Win32 [[default=yes]]]),
1905 , enable_stdio_redirect=yes)
1906 if test x$enable_stdio_redirect != xyes; then
1907 EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_STDIO_REDIRECT"
1911 dnl Find the DirectX includes and libraries
1914 AC_ARG_ENABLE(directx,
1915 AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default=yes]]]),
1916 , enable_directx=yes)
1917 if test x$enable_directx = xyes; then
1918 AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
1919 AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
1920 AC_CHECK_HEADER(dsound.h, have_dsound=yes)
1921 AC_CHECK_HEADER(dinput.h, have_dinput=yes)
1925 dnl Check for the dlfcn.h interface for dynamically loading objects
1928 AC_ARG_ENABLE(sdl-dlopen,
1929 AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
1930 , enable_sdl_dlopen=yes)
1931 if test x$enable_sdl_dlopen = xyes; then
1932 AC_MSG_CHECKING(for dlopen)
1937 #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED <= 1020
1938 #error Use dlcompat for Mac OS X 10.2 compatibility
1943 AC_MSG_RESULT($have_dlopen)
1945 if test x$have_dlopen = xyes; then
1946 AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
1947 AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
1948 AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
1949 AC_DEFINE(SDL_LOADSO_DLOPEN)
1950 SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
1956 dnl Check for the usbhid(3) library on *BSD
1959 if test x$enable_joystick = xyes; then
1960 AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
1961 if test x$have_libusbhid = xyes; then
1962 AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
1963 AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
1964 USB_LIBS="$USB_LIBS -lusbhid"
1966 AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
1967 AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
1968 AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
1971 save_CFLAGS="$CFLAGS"
1972 CFLAGS="$CFLAGS $USB_CFLAGS"
1974 AC_MSG_CHECKING(for usbhid)
1977 #include <sys/types.h>
1978 #if defined(HAVE_USB_H)
1981 #ifdef __DragonFly__
1982 # include <bus/usb/usb.h>
1983 # include <bus/usb/usbhid.h>
1985 # include <dev/usb/usb.h>
1986 # include <dev/usb/usbhid.h>
1988 #if defined(HAVE_USBHID_H)
1990 #elif defined(HAVE_LIBUSB_H)
1992 #elif defined(HAVE_LIBUSBHID_H)
1993 #include <libusbhid.h>
1996 struct report_desc *repdesc;
1997 struct usb_ctl_report *repbuf;
2002 AC_MSG_RESULT($have_usbhid)
2004 if test x$have_usbhid = xyes; then
2005 AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
2006 have_usbhid_ucr_data=no
2008 #include <sys/types.h>
2009 #if defined(HAVE_USB_H)
2012 #ifdef __DragonFly__
2013 # include <bus/usb/usb.h>
2014 # include <bus/usb/usbhid.h>
2016 # include <dev/usb/usb.h>
2017 # include <dev/usb/usbhid.h>
2019 #if defined(HAVE_USBHID_H)
2021 #elif defined(HAVE_LIBUSB_H)
2023 #elif defined(HAVE_LIBUSBHID_H)
2024 #include <libusbhid.h>
2027 struct usb_ctl_report buf;
2028 if (buf.ucr_data) { }
2030 have_usbhid_ucr_data=yes
2032 if test x$have_usbhid_ucr_data = xyes; then
2033 USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
2035 AC_MSG_RESULT($have_usbhid_ucr_data)
2037 AC_MSG_CHECKING(for new usbhid API)
2040 #include <sys/types.h>
2041 #if defined(HAVE_USB_H)
2044 #ifdef __DragonFly__
2045 #include <bus/usb/usb.h>
2046 #include <bus/usb/usbhid.h>
2048 #include <dev/usb/usb.h>
2049 #include <dev/usb/usbhid.h>
2051 #if defined(HAVE_USBHID_H)
2053 #elif defined(HAVE_LIBUSB_H)
2055 #elif defined(HAVE_LIBUSBHID_H)
2056 #include <libusbhid.h>
2060 hid_start_parse(d, 1, 1);
2064 if test x$have_usbhid_new = xyes; then
2065 USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
2067 AC_MSG_RESULT($have_usbhid_new)
2069 AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
2070 have_machine_joystick=no
2072 #include <machine/joystick.h>
2076 have_machine_joystick=yes
2078 if test x$have_machine_joystick = xyes; then
2079 AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H)
2081 AC_MSG_RESULT($have_machine_joystick)
2083 AC_DEFINE(SDL_JOYSTICK_USBHID)
2084 SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
2085 EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
2086 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
2089 CFLAGS="$save_CFLAGS"
2093 dnl Check for clock_gettime()
2096 AC_ARG_ENABLE(clock_gettime,
2097 AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=no]]]),
2098 , enable_clock_gettime=no)
2099 if test x$enable_clock_gettime = xyes; then
2100 AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
2101 if test x$have_clock_gettime = xyes; then
2102 AC_DEFINE(HAVE_CLOCK_GETTIME)
2103 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
2105 AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
2106 if test x$have_clock_gettime = xyes; then
2107 AC_DEFINE(HAVE_CLOCK_GETTIME)
2108 EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
2114 dnl Check for a valid linux/version.h
2117 AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
2118 if test x$have_linux_version_h = xyes; then
2119 EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
2123 dnl Check if we want to use RPATH
2126 AC_ARG_ENABLE(rpath,
2127 AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
2131 dnl Set up the configuration based on the host platform!
2133 *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-irix*|*-*-aix*|*-*-osf*|*-*-minix*)
2135 *-*-linux*) ARCH=linux ;;
2136 *-*-uclinux*) ARCH=linux ;;
2137 *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
2138 *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
2139 *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
2140 *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
2141 *-*-bsdi*) ARCH=bsdi ;;
2142 *-*-freebsd*) ARCH=freebsd ;;
2143 *-*-dragonfly*) ARCH=freebsd ;;
2144 *-*-netbsd*) ARCH=netbsd ;;
2145 *-*-openbsd*) ARCH=openbsd ;;
2146 *-*-sysv5*) ARCH=sysv5 ;;
2147 *-*-solaris*) ARCH=solaris ;;
2148 *-*-hpux*) ARCH=hpux ;;
2149 *-*-irix*) ARCH=irix ;;
2150 *-*-aix*) ARCH=aix ;;
2151 *-*-osf*) ARCH=osf ;;
2152 *-*-minix*) ARCH=minix ;;
2154 CheckVisibilityHidden
2181 # Set up files for the audio library
2182 if test x$enable_audio = xyes; then
2185 AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO)
2186 SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
2190 AC_DEFINE(SDL_AUDIO_DRIVER_BSD)
2191 SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c"
2195 AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO)
2196 SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
2201 # Set up files for the atomic operations library
2202 if test x$enable_atomic = xyes; then
2205 AC_DEFINE(SDL_ATOMIC_LINUX)
2206 SOURCES="$SOURCES $srcdir/src/atomic/linux/*.c"
2211 # Set up files for the joystick library
2212 if test x$enable_joystick = xyes; then
2215 AC_DEFINE(SDL_JOYSTICK_LINUX)
2216 SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
2221 # Set up files for the haptic library
2222 if test x$enable_haptic = xyes; then
2223 if test x$use_input_events = xyes; then
2226 AC_DEFINE(SDL_HAPTIC_LINUX)
2227 SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
2233 # Set up files for the power library
2234 if test x$enable_power = xyes; then
2237 AC_DEFINE(SDL_POWER_LINUX)
2238 SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
2243 # Set up files for the thread library
2244 if test x$enable_threads = xyes -a x$use_pthreads != xyes -a x$use_pth != xyes -a x$ARCH = xirix; then
2245 AC_DEFINE(SDL_THREAD_SPROC)
2246 SOURCES="$SOURCES $srcdir/src/thread/irix/*.c"
2247 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2248 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2251 # Set up files for the timer library
2252 if test x$enable_timers = xyes; then
2253 AC_DEFINE(SDL_TIMER_UNIX)
2254 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2260 EXTRA_CFLAGS="-I/usr/include $CFLAGS"
2261 EXTRA_LDLAGS="-L/usr/lib $LDFLAGS"
2264 CheckVisibilityHidden
2280 # Set up files for the audio library
2281 if test x$enable_audio = xyes; then
2282 AC_DEFINE(SDL_AUDIO_DRIVER_QSA)
2283 SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
2284 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
2287 # Set up files for the timer library
2288 if test x$enable_timers = xyes; then
2289 AC_DEFINE(SDL_TIMER_UNIX)
2290 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2293 # Setup files for the atomic operations
2294 if test x$enable_atomic = xyes; then
2295 AC_DEFINE(SDL_ATOMIC_QNX)
2296 SOURCES="$SOURCES $srcdir/src/atomic/qnx/*.c"
2299 # Set up dummy files for the joystick for now
2300 if test x$enable_joystick = xyes; then
2301 AC_DEFINE(SDL_JOYSTICK_DUMMY)
2302 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2305 # Set up dummy files for the haptic for now
2306 if test x$enable_haptic = xyes; then
2307 AC_DEFINE(SDL_HAPTIC_DUMMY)
2308 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2312 *-wince* | *-mingw32ce)
2318 if test x$enable_video = xyes; then
2319 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2320 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2322 AC_ARG_ENABLE(render-gdi,
2323 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2324 , enable_render_gdi=yes)
2325 if test x$enable_render_gdi = xyes; then
2326 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2328 AC_ARG_ENABLE(render-gapi,
2329 AC_HELP_STRING([--enable-render-gapi], [enable the GAPI/RAWFRAMEBUFFER render driver [[default=yes]]]),
2330 , enable_render_gapi=yes)
2331 if test x$enable_render_gapi = xyes -a x$have_wince = xyes; then
2332 AC_DEFINE(SDL_VIDEO_RENDER_GAPI)
2334 AC_ARG_ENABLE(render-ddraw,
2335 AC_HELP_STRING([--enable-render-ddraw], [enable the Mobile DirectDraw render driver [[default=yes]]]),
2336 , enable_render_ddraw=yes)
2337 if test x$enable_render_ddraw = xyes -a x$have_wince = xyes -a x$have_ddraw = xyes; then
2338 AC_DEFINE(SDL_VIDEO_RENDER_DDRAW)
2340 AC_ARG_ENABLE(render-d3d,
2341 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2342 , enable_render_d3d=yes)
2343 enable_render_d3d=no
2344 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2345 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2348 # Set up files for the audio library
2349 if test x$enable_audio = xyes; then
2350 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2351 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2352 if test x$have_dsound = xyes; then
2353 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2354 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2358 # Set up files for the thread library
2359 if test x$enable_threads = xyes; then
2360 AC_DEFINE(SDL_THREAD_WIN32)
2361 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2362 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2363 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2364 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2367 # Set up files for the timer library
2368 if test x$enable_timers = xyes; then
2369 AC_DEFINE(SDL_TIMER_WINCE)
2370 SOURCES="$SOURCES $srcdir/src/timer/wince/*.c"
2373 # Set up files for the shared object loading library
2374 if test x$enable_loadso = xyes; then
2375 AC_DEFINE(SDL_LOADSO_WIN32)
2376 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2379 # Set up files for the system power library
2380 if test x$enable_power = xyes; then
2381 AC_DEFINE(SDL_POWER_WINDOWS)
2382 SOURCES="$SOURCES $srcdir/src/power/windows/*.c"
2385 # Set up the system libraries we need
2386 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lcommctrl -lmmtimer"
2387 # The Win32 platform requires special setup
2388 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2389 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main -D_WIN32_WCE=0x420"
2390 SDL_LIBS="-lSDLmain $SDL_LIBS"
2392 *-*-cygwin* | *-*-mingw32*)
2394 if test "$build" != "$host"; then # cross-compiling
2395 # Default cross-compile location
2396 ac_default_prefix=/usr/local/cross-tools/i386-mingw32
2398 # Look for the location of the tools and install there
2399 if test "$BUILD_PREFIX" != ""; then
2400 ac_default_prefix=$BUILD_PREFIX
2409 # Set up files for the video library
2410 if test x$enable_video = xyes; then
2411 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2412 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2414 AC_ARG_ENABLE(render-gdi,
2415 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2416 , enable_render_gdi=yes)
2417 if test x$enable_render_gdi = xyes; then
2418 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2420 AC_ARG_ENABLE(render-d3d,
2421 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2422 , enable_render_d3d=yes)
2423 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2424 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2427 # Set up files for the audio library
2428 if test x$enable_audio = xyes; then
2429 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2430 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2431 if test x$have_dsound = xyes; then
2432 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2433 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2437 # Set up files for the atomic operations library
2438 if test x$enable_atomic = xyes; then
2439 AC_DEFINE(SDL_ATOMIC_WIN32)
2440 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c"
2443 # Set up files for the joystick library
2444 if test x$enable_joystick = xyes; then
2445 if test x$have_dinput = xyes; then
2446 AC_DEFINE(SDL_JOYSTICK_DINPUT)
2447 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_dxjoystick.c"
2448 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8 -lole32"
2450 AC_DEFINE(SDL_JOYSTICK_WINMM)
2451 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_mmjoystick.c"
2455 if test x$enable_haptic = xyes; then
2456 if test x$have_dinput = xyes; then
2457 AC_DEFINE(SDL_HAPTIC_DINPUT)
2458 SOURCES="$SOURCES $srcdir/src/haptic/win32/SDL_syshaptic.c"
2462 if test x$enable_power = xyes; then
2463 AC_DEFINE(SDL_POWER_WINDOWS)
2464 SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
2467 # Set up files for the thread library
2468 if test x$enable_threads = xyes; then
2469 AC_DEFINE(SDL_THREAD_WIN32)
2470 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2471 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2472 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2473 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2476 # Set up files for the timer library
2477 if test x$enable_timers = xyes; then
2478 AC_DEFINE(SDL_TIMER_WIN32)
2479 SOURCES="$SOURCES $srcdir/src/timer/win32/*.c"
2482 # Set up files for the shared object loading library
2483 if test x$enable_loadso = xyes; then
2484 AC_DEFINE(SDL_LOADSO_WIN32)
2485 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2488 # Set up the system libraries we need
2489 # SDL 1.3 is unicode, and unicows emulates this on Windows 98/ME
2490 # You can get this here: http://libunicows.sourceforge.net/
2491 #EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows"
2492 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lmsimg32 -lwinmm"
2493 # The Win32 platform requires special setup
2494 VERSION_SOURCES="$srcdir/src/main/win32/*.rc"
2495 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2496 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
2497 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows"
2499 *-*-beos* | *-*-haiku*)
2501 ac_default_prefix=/boot/develop/tools/gnupro
2507 # Set up files for the audio library
2508 if test x$enable_audio = xyes; then
2509 AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO)
2510 SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc"
2513 # Set up files for the joystick library
2514 if test x$enable_joystick = xyes; then
2515 AC_DEFINE(SDL_JOYSTICK_BEOS)
2516 SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc"
2519 # Set up files for the thread library
2520 if test x$enable_threads = xyes; then
2521 AC_DEFINE(SDL_THREAD_BEOS)
2522 SOURCES="$SOURCES $srcdir/src/thread/beos/*.c"
2523 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2524 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2527 # Set up files for the timer library
2528 if test x$enable_timers = xyes; then
2529 AC_DEFINE(SDL_TIMER_BEOS)
2530 SOURCES="$SOURCES $srcdir/src/timer/beos/*.c"
2533 # Set up files for the shared object loading library
2534 if test x$enable_loadso = xyes; then
2535 AC_DEFINE(SDL_LOADSO_BEOS)
2536 SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c"
2539 # Set up files for the system power library
2540 if test x$enable_power = xyes; then
2541 AC_DEFINE(SDL_POWER_BEOS)
2542 SOURCES="$SOURCES $srcdir/src/power/beos/*.c"
2545 # The BeOS platform requires special setup.
2546 SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
2547 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
2550 # This could be either full "Mac OS X", or plain "Darwin" which is
2551 # just the OS X kernel sans upper layers like Carbon and Cocoa.
2552 # Next line is broken, and a few files below require Mac OS X (full)
2555 # Mac OS X builds with both the Carbon and OSX APIs at the moment
2556 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
2557 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
2559 # HACK: Reset EXTRA_LDFLAGS; the only thing it contains at this point
2560 # is -lm which is not needed under Mac OS X. But for some reasons it
2561 # also tends to contain spurious -L switches, which we don't want to
2562 # use here or in sdl-config. Hence we reset it.
2565 CheckVisibilityHidden
2571 # Set up files for the shared object loading library
2572 # (this needs to be done before the dynamic X11 check)
2573 if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then
2574 AC_DEFINE(SDL_LOADSO_DLCOMPAT)
2575 SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c"
2585 # Good optimization on Mac OS X, yes...
2586 EXTRA_CFLAGS="$EXTRA_CFLAGS -falign-loops=16"
2588 # Need this or things might misbuild on a G3.
2589 EXTRA_CFLAGS="$EXTRA_CFLAGS -force_cpusubtype_ALL"
2591 # Set up files for the audio library
2592 if test x$enable_audio = xyes; then
2593 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO)
2594 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c"
2597 # Set up files for the atomic operations library
2598 if test x$enable_atomic = xyes; then
2599 AC_DEFINE(SDL_ATOMIC_MACOSX)
2600 SOURCES="$SOURCES $srcdir/src/atomic/macosx/*.c"
2603 # Set up files for the joystick library
2604 if test x$enable_joystick = xyes; then
2605 AC_DEFINE(SDL_JOYSTICK_IOKIT)
2606 SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
2609 # Set up files for the haptic library
2610 if test x$enable_haptic = xyes; then
2611 AC_DEFINE(SDL_HAPTIC_IOKIT)
2612 SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
2614 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
2616 # Set up files for the power library
2617 if test x$enable_power = xyes; then
2618 AC_DEFINE(SDL_POWER_MACOSX)
2619 SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
2622 # Set up files for the timer library
2623 if test x$enable_timers = xyes; then
2624 AC_DEFINE(SDL_TIMER_UNIX)
2625 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2628 # The Mac OS X platform requires special setup.
2629 EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
2630 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
2631 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
2632 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
2633 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
2634 # If audio is used, add the AudioUnit framework
2635 if test x$enable_audio = xyes; then
2636 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit"
2643 # Set up files for the video library
2644 if test x$enable_video = xyes; then
2645 AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS)
2646 SOURCES="$SOURCES $srcdir/src/video/riscos/*.c"
2647 SOURCES="$SOURCES $srcdir/src/video/riscos/*.S"
2650 # Set up files for the joystick library
2651 if test x$enable_joystick = xyes; then
2652 AC_DEFINE(SDL_JOYSTICK_RISCOS)
2653 SOURCES="$SOURCES $srcdir/src/joystick/riscos/*.c"
2656 # Set up files for the timer library
2657 if test x$enable_timers = xyes; then
2658 AC_DEFINE(SDL_TIMER_RISCOS)
2659 SOURCES="$SOURCES $srcdir/src/timer/riscos/*.c"
2662 # The RISC OS platform requires special setup.
2663 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ljpeg -ltiff -lpng -lz"
2667 *** Unsupported host: Please add to configure.in
2672 # Verify that we have all the platform specific files we need
2674 if test x$have_joystick != xyes; then
2675 if test x$enable_joystick = xyes; then
2676 AC_DEFINE(SDL_JOYSTICK_DISABLED)
2678 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2680 if test x$have_haptic != xyes; then
2681 if test x$enable_haptic = xyes; then
2682 AC_DEFINE(SDL_HAPTIC_DISABLED)
2684 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2686 if test x$have_threads != xyes; then
2687 if test x$enable_threads = xyes; then
2688 AC_DEFINE(SDL_THREADS_DISABLED)
2690 SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
2692 if test x$have_timers != xyes; then
2693 if test x$enable_timers = xyes; then
2694 AC_DEFINE(SDL_TIMERS_DISABLED)
2696 SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
2698 if test x$have_loadso != xyes; then
2699 if test x$enable_loadso = xyes; then
2700 AC_DEFINE(SDL_LOADSO_DISABLED)
2702 SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
2704 if test x$SDLMAIN_SOURCES = x; then
2705 SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
2708 OBJECTS=`echo $SOURCES`
2709 DEPENDS=`echo $SOURCES`
2710 for EXT in asm cc m c S; do
2711 OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
2712 DEPENDS=`echo "$DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT,\\\\
2713 \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\
2714 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2717 VERSION_OBJECTS=`echo $VERSION_SOURCES`
2718 VERSION_DEPENDS=`echo $VERSION_SOURCES`
2719 VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
2720 VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
2721 \\$(objects)/\\2.o: \\1/\\2.rc\\\\
2722 \\$(WINDRES) \\$< \\$@,g"`
2724 SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
2725 SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
2726 SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
2727 SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
2728 \\$(objects)/\\2.o: \\1/\\2.c\\\\
2729 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2731 # Set runtime shared library paths as needed
2733 if test "x$enable_rpath" = "xyes"; then
2734 if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then
2735 SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
2737 if test $ARCH = solaris; then
2738 SDL_RLD_FLAGS="-R\${libdir}"
2746 # Evil hack to allow static linking on Mac OS X
2747 SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS"
2750 SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS"
2754 dnl Expand the cflags and libraries needed by apps using SDL
2755 AC_SUBST(SDL_CFLAGS)
2757 AC_SUBST(SDL_STATIC_LIBS)
2758 AC_SUBST(SDL_RLD_FLAGS)
2759 if test x$enable_shared = xyes; then
2761 ENABLE_SHARED_FALSE="#"
2763 ENABLE_SHARED_TRUE="#"
2764 ENABLE_SHARED_FALSE=
2766 if test x$enable_static = xyes; then
2768 ENABLE_STATIC_FALSE="#"
2770 ENABLE_STATIC_TRUE="#"
2771 ENABLE_STATIC_FALSE=
2773 AC_SUBST(ENABLE_SHARED_TRUE)
2774 AC_SUBST(ENABLE_SHARED_FALSE)
2775 AC_SUBST(ENABLE_STATIC_TRUE)
2776 AC_SUBST(ENABLE_STATIC_FALSE)
2778 dnl Expand the sources and objects needed to build the library
2779 AC_SUBST(ac_aux_dir)
2783 AC_SUBST(VERSION_OBJECTS)
2784 AC_SUBST(VERSION_DEPENDS)
2785 AC_SUBST(SDLMAIN_OBJECTS)
2786 AC_SUBST(SDLMAIN_DEPENDS)
2787 AC_SUBST(BUILD_CFLAGS)
2788 AC_SUBST(EXTRA_CFLAGS)
2789 AC_SUBST(BUILD_LDFLAGS)
2790 AC_SUBST(EXTRA_LDFLAGS)
2794 Makefile sdl-config SDL.spec sdl.pc