Make sure SDL gets installed to the correct prefix for the new cross-compiler tools.
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"
423 #ifdef __MINGW64_VERSION_MAJOR
426 #include <mmintrin.h>
429 #include <mmintrin.h>
432 #error Assembler CPP flag not enabled
438 AC_MSG_RESULT($have_gcc_mmx)
439 CFLAGS="$save_CFLAGS"
441 if test x$have_gcc_mmx = xyes; then
442 EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
447 AC_HELP_STRING([--enable-3dnow], [use MMX assembly routines [[default=yes]]]),
449 if test x$enable_3dnow = xyes; then
450 save_CFLAGS="$CFLAGS"
452 AC_MSG_CHECKING(for GCC -m3dnow option)
453 amd3dnow_CFLAGS="-m3dnow"
454 CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
459 #error Assembler CPP flag not enabled
465 AC_MSG_RESULT($have_gcc_3dnow)
466 CFLAGS="$save_CFLAGS"
468 if test x$have_gcc_3dnow = xyes; then
469 EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
474 AC_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]),
476 if test x$enable_sse = xyes; then
477 save_CFLAGS="$CFLAGS"
479 AC_MSG_CHECKING(for GCC -msse option)
481 CFLAGS="$save_CFLAGS $sse_CFLAGS"
486 #ifdef __MINGW64_VERSION_MAJOR
489 #include <xmmintrin.h>
492 #include <xmmintrin.h>
495 #error Assembler CPP flag not enabled
501 AC_MSG_RESULT($have_gcc_sse)
502 CFLAGS="$save_CFLAGS"
504 if test x$have_gcc_sse = xyes; then
505 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
510 AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=no]]]),
511 , enable_sse2=$default_ssemath)
512 if test x$enable_sse2 = xyes; then
513 save_CFLAGS="$CFLAGS"
515 AC_MSG_CHECKING(for GCC -msse2 option)
517 CFLAGS="$save_CFLAGS $sse2_CFLAGS"
522 #ifdef __MINGW64_VERSION_MAJOR
525 #include <emmintrin.h>
528 #include <emmintrin.h>
531 #error Assembler CPP flag not enabled
537 AC_MSG_RESULT($have_gcc_sse2)
538 CFLAGS="$save_CFLAGS"
540 if test x$have_gcc_sse2 = xyes; then
541 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
545 AC_ARG_ENABLE(altivec,
546 AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]),
547 , enable_altivec=yes)
548 if test x$enable_altivec = xyes; then
549 save_CFLAGS="$CFLAGS"
551 have_altivec_h_hdr=no
552 altivec_CFLAGS="-maltivec"
553 CFLAGS="$save_CFLAGS $altivec_CFLAGS"
555 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
558 vector unsigned int vzero() {
559 return vec_splat_u32(0);
564 have_altivec_h_hdr=yes
566 AC_MSG_RESULT($have_gcc_altivec)
568 if test x$have_gcc_altivec = xno; then
569 AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
571 vector unsigned int vzero() {
572 return vec_splat_u32(0);
578 AC_MSG_RESULT($have_gcc_altivec)
581 if test x$have_gcc_altivec = xno; then
582 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
583 altivec_CFLAGS="-faltivec"
584 CFLAGS="$save_CFLAGS $altivec_CFLAGS"
587 vector unsigned int vzero() {
588 return vec_splat_u32(0);
593 have_altivec_h_hdr=yes
595 AC_MSG_RESULT($have_gcc_altivec)
598 if test x$have_gcc_altivec = xno; then
599 AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
601 vector unsigned int vzero() {
602 return vec_splat_u32(0);
608 AC_MSG_RESULT($have_gcc_altivec)
610 CFLAGS="$save_CFLAGS"
612 if test x$have_gcc_altivec = xyes; then
613 AC_DEFINE(SDL_ALTIVEC_BLITTERS)
614 if test x$have_altivec_h_hdr = xyes; then
615 AC_DEFINE(HAVE_ALTIVEC_H)
617 EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
622 dnl See if the OSS audio interface is supported
626 AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
628 if test x$enable_audio = xyes -a x$enable_oss = xyes; then
629 AC_MSG_CHECKING(for OSS audio support)
631 if test x$have_oss != xyes; then
633 #include <sys/soundcard.h>
635 int arg = SNDCTL_DSP_SETFRAGMENT;
640 if test x$have_oss != xyes; then
642 #include <soundcard.h>
644 int arg = SNDCTL_DSP_SETFRAGMENT;
647 AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H)
650 AC_MSG_RESULT($have_oss)
651 if test x$have_oss = xyes; then
652 AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
653 SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
654 SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
657 # We may need to link with ossaudio emulation library
659 *-*-openbsd*|*-*-netbsd*)
660 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
666 dnl See if the ALSA audio interface is supported
670 AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
672 if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
673 AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
674 # Restore all flags from before the ALSA detection runs
675 CFLAGS="$alsa_save_CFLAGS"
676 LDFLAGS="$alsa_save_LDFLAGS"
677 LIBS="$alsa_save_LIBS"
678 if test x$have_alsa = xyes; then
679 AC_ARG_ENABLE(alsa-shared,
680 AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
681 , enable_alsa_shared=yes)
682 alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
684 AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
685 SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
686 EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
687 if test x$have_loadso != xyes && \
688 test x$enable_alsa_shared = xyes; then
689 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
691 if test x$have_loadso = xyes && \
692 test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
693 echo "-- dynamic libasound -> $alsa_lib"
694 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib")
696 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
703 dnl Check whether we want to use IRIX 6.5+ native audio or not
706 if test x$enable_audio = xyes; then
707 AC_MSG_CHECKING(for dmedia audio support)
710 #include <dmedia/audio.h>
716 AC_MSG_RESULT($have_dmedia)
717 # Set up files for the audio library
718 if test x$have_dmedia = xyes; then
719 AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
720 SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
721 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
727 dnl Check whether we want to use Tru64 UNIX native audio or not
730 dnl Make sure we are running on an Tru64 UNIX
738 if test x$enable_audio = xyes; then
739 AC_MSG_CHECKING(for MME audio support)
740 MME_CFLAGS="-I/usr/include/mme"
743 save_CFLAGS="$CFLAGS"
744 CFLAGS="$CFLAGS $MME_CFLAGS"
752 CFLAGS="$save_CFLAGS"
753 AC_MSG_RESULT($have_mme)
754 # Set up files for the audio library
755 if test x$have_mme = xyes; then
756 AC_DEFINE(SDL_AUDIO_DRIVER_MMEAUDIO)
757 SOURCES="$SOURCES $srcdir/src/audio/mme/*.c"
758 EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
759 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
765 dnl Find the ESD includes and libraries
769 AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
771 if test x$enable_audio = xyes -a x$enable_esd = xyes; then
772 AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
773 if test x$have_esd = xyes; then
774 AC_ARG_ENABLE(esd-shared,
775 AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
776 , enable_esd_shared=yes)
777 esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
779 AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
780 SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
781 EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
782 if test x$have_loadso != xyes && \
783 test x$enable_esd_shared = xyes; then
784 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
786 if test x$have_loadso = xyes && \
787 test x$enable_esd_shared = xyes && test x$esd_lib != x; then
788 echo "-- dynamic libesd -> $esd_lib"
789 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
791 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
801 AC_ARG_ENABLE(pulseaudio,
802 AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
803 , enable_pulseaudio=yes)
804 if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
807 PULSEAUDIO_REQUIRED_VERSION=0.9
809 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
810 AC_MSG_CHECKING(for PulseAudio $PULSEAUDIO_REQUIRED_VERSION support)
811 if test x$PKG_CONFIG != xno; then
812 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSEAUDIO_REQUIRED_VERSION libpulse-simple; then
813 PULSEAUDIO_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple`
814 PULSEAUDIO_LIBS=`$PKG_CONFIG --libs libpulse-simple`
818 AC_MSG_RESULT($audio_pulseaudio)
820 if test x$audio_pulseaudio = xyes; then
821 AC_ARG_ENABLE(pulseaudio-shared,
822 AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
823 , enable_pulseaudio_shared=yes)
824 pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
826 AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO)
827 SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
828 EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
829 if test x$have_loadso != xyes && \
830 test x$enable_pulseaudio_shared = xyes; then
831 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
833 if test x$have_loadso = xyes && \
834 test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
835 echo "-- dynamic libpulse-simple -> $pulseaudio_lib"
836 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib")
838 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
848 AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
850 if test x$enable_audio = xyes -a x$enable_arts = xyes; then
851 AC_PATH_PROG(ARTSCONFIG, artsc-config)
852 if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
853 : # arts isn't installed
855 ARTS_CFLAGS=`$ARTSCONFIG --cflags`
856 ARTS_LIBS=`$ARTSCONFIG --libs`
857 AC_MSG_CHECKING(for aRts development environment)
859 save_CFLAGS="$CFLAGS"
860 CFLAGS="$CFLAGS $ARTS_CFLAGS"
864 arts_stream_t stream;
868 CFLAGS="$save_CFLAGS"
869 AC_MSG_RESULT($audio_arts)
870 if test x$audio_arts = xyes; then
871 AC_ARG_ENABLE(arts-shared,
872 AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
873 , enable_arts_shared=yes)
874 arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
876 AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
877 SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
878 EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
879 if test x$have_loadso != xyes && \
880 test x$enable_arts_shared = xyes; then
881 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
883 if test x$have_loadso = xyes && \
884 test x$enable_arts_shared = xyes && test x$arts_lib != x; then
885 echo "-- dynamic libartsc -> $arts_lib"
886 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
888 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
896 dnl See if the NAS audio interface is supported
900 AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
902 if test x$enable_audio = xyes -a x$enable_nas = xyes; then
903 AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
904 AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
906 AC_MSG_CHECKING(for NAS audio support)
909 if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
913 elif test -r /usr/X11R6/include/audio/audiolib.h; then
915 NAS_CFLAGS="-I/usr/X11R6/include/"
916 NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
918 dnl On IRIX, the NAS includes are in a different directory,
919 dnl and libnas must be explicitly linked in
921 elif test -r /usr/freeware/include/nas/audiolib.h; then
923 NAS_LIBS="-lnas -lXt"
926 AC_MSG_RESULT($have_nas)
928 if test x$have_nas = xyes; then
929 AC_ARG_ENABLE(nas-shared,
930 AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
931 , enable_nas_shared=yes)
932 nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
934 if test x$have_loadso != xyes && \
935 test x$enable_nas_shared = xyes; then
936 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
938 if test x$have_loadso = xyes && \
939 test x$enable_nas_shared = xyes && test x$nas_lib != x; then
940 echo "-- dynamic libaudio -> $nas_lib"
941 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
943 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
946 AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
947 SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
948 EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
954 dnl rcg07142001 See if the user wants the disk writer audio driver...
957 AC_ARG_ENABLE(diskaudio,
958 AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
959 , enable_diskaudio=yes)
960 if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
961 AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
962 SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
966 dnl rcg03142006 See if the user wants the dummy audio driver...
969 AC_ARG_ENABLE(dummyaudio,
970 AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
971 , enable_dummyaudio=yes)
972 if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
973 AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY)
974 SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
978 dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
979 dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
980 CheckVisibilityHidden()
982 AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
983 have_gcc_fvisibility=no
985 visibility_CFLAGS="-fvisibility=hidden"
986 save_CFLAGS="$CFLAGS"
987 CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
989 #if !defined(__GNUC__) || __GNUC__ < 4
990 #error SDL only uses visibility attributes in GCC 4 or newer
994 have_gcc_fvisibility=yes
996 AC_MSG_RESULT($have_gcc_fvisibility)
997 CFLAGS="$save_CFLAGS"
999 if test x$have_gcc_fvisibility = xyes; then
1000 EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
1005 dnl Find the X11 include and library directories
1008 AC_ARG_ENABLE(video-x11,
1009 AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
1010 , enable_video_x11=yes)
1011 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
1014 # This isn't necessary for X11, but fixes GLX detection
1015 if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
1016 x_includes="/usr/X11R6/include"
1017 x_libraries="/usr/X11R6/lib"
1023 if test x$have_x = xyes; then
1024 # Only allow dynamically loaded X11 if the X11 function pointers
1025 # will not end up in the global namespace, which causes problems
1026 # with other libraries calling X11 functions.
1027 x11_symbols_private=$have_gcc_fvisibility
1029 AC_ARG_ENABLE(x11-shared,
1030 AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
1031 , enable_x11_shared=maybe)
1034 *-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs...
1035 x11_symbols_private=yes
1036 x11_lib='/usr/X11R6/lib/libX11.6.dylib'
1037 x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
1038 xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
1039 xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
1040 xinput_lib='/usr/X11R6/lib/libXi.6.dylib'
1041 xss_lib='/usr/X11R6/lib/libXss.6.dylib'
1045 x11ext_lib='libXext.so'
1047 *-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
1049 x11ext_lib='libXext.so'
1052 x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1053 x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1054 xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1055 xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1056 xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1057 xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1061 if test x$ac_cv_func_shmat != xyes; then
1062 X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
1064 CFLAGS="$CFLAGS $X_CFLAGS"
1065 LDFLAGS="$LDFLAGS $X_LIBS"
1067 AC_DEFINE(SDL_VIDEO_DRIVER_X11)
1068 SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
1069 SOURCES="$SOURCES $srcdir/src/video/Xext/XmuStdCmap/*.c"
1070 EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
1072 if test x$enable_x11_shared = xmaybe; then
1073 enable_x11_shared=$x11_symbols_private
1075 if test x$have_loadso != xyes && \
1076 test x$enable_x11_shared = xyes; then
1077 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
1078 enable_x11_shared=no
1080 if test x$x11_symbols_private != xyes && \
1081 test x$enable_x11_shared = xyes; then
1082 AC_MSG_WARN([You must have gcc4 (-fvisibility=hidden) for dynamic X11 loading])
1083 enable_x11_shared=no
1086 if test x$have_loadso = xyes && \
1087 test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
1088 echo "-- dynamic libX11 -> $x11_lib"
1089 echo "-- dynamic libX11ext -> $x11ext_lib"
1090 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib")
1091 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib")
1093 enable_x11_shared=no
1094 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
1098 AC_ARG_ENABLE(video-x11-vm,
1099 AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
1100 , enable_video_x11_vm=yes)
1101 if test x$enable_video_x11_vm = xyes; then
1102 AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE)
1103 SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c"
1105 AC_ARG_ENABLE(video-x11-xv,
1106 AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [[default=yes]]]),
1107 , enable_video_x11_xv=yes)
1108 if test x$enable_video_x11_xv = xyes; then
1109 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV)
1110 SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c"
1112 AC_ARG_ENABLE(video-x11-xinerama,
1113 AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
1114 , enable_video_x11_xinerama=yes)
1115 if test x$enable_video_x11_xinerama = xyes; then
1116 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA)
1117 SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c"
1119 AC_ARG_ENABLE(video-x11-xrandr,
1120 AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
1121 , enable_video_x11_xrandr=yes)
1122 if test x$enable_video_x11_xrandr = xyes; then
1123 definitely_enable_video_x11_xrandr=no
1124 AC_CHECK_HEADER(X11/extensions/Xrandr.h,
1125 have_xrandr_h_hdr=yes,
1126 have_xrandr_h_hdr=no,
1127 [#include <X11/Xlib.h>
1129 if test x$have_xrandr_h_hdr = xyes; then
1130 if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
1131 echo "-- dynamic libXrender -> $xrender_lib"
1132 echo "-- dynamic libXrandr -> $xrandr_lib"
1133 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER, "$xrender_lib")
1134 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib")
1135 definitely_enable_video_x11_xrandr=yes
1137 AC_CHECK_LIB(Xrender, XRenderQueryExtension, have_xrender_lib=yes)
1138 AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
1139 if test x$have_xrender_lib = xyes && test x$have_xrandr_lib = xyes ; then
1140 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr -lXrender"
1141 definitely_enable_video_x11_xrandr=yes
1146 if test x$definitely_enable_video_x11_xrandr = xyes; then
1147 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR)
1149 AC_ARG_ENABLE(video-x11-xinput,
1150 AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
1151 , enable_video_x11_xinput=yes)
1152 if test x$enable_video_x11_xinput = xyes; then
1153 definitely_enable_video_x11_xinput=no
1154 AC_CHECK_HEADER(X11/extensions/XInput.h,
1155 have_xinput_h_hdr=yes,
1156 have_xinput_h_hdr=no,
1157 [#include <X11/Xlib.h>
1159 if test x$have_xinput_h_hdr = xyes; then
1160 if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
1161 echo "-- dynamic libXi -> $xinput_lib"
1162 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib")
1163 definitely_enable_video_x11_xinput=yes
1165 AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
1166 if test x$have_xinput_lib = xyes ; then
1167 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
1168 definitely_enable_video_x11_xinput=yes
1173 if test x$definitely_enable_video_x11_xinput = xyes; then
1174 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT)
1176 AC_ARG_ENABLE(video-x11-scrnsaver,
1177 AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
1178 , enable_video_x11_scrnsaver=yes)
1179 if test x$enable_video_x11_scrnsaver = xyes; then
1180 AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
1181 have_scrnsaver_h_hdr=yes,
1182 have_scrnsaver_h_hdr=no,
1183 [#include <X11/Xlib.h>
1185 if test x$have_scrnsaver_h_hdr = xyes; then
1186 if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
1187 echo "-- dynamic libXss -> $xss_lib"
1188 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib")
1189 definitely_enable_video_x11_scrnsaver=yes
1191 AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
1192 if test x$have_xss_lib = xyes ; then
1193 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
1194 definitely_enable_video_x11_scrnsaver=yes
1199 if test x$definitely_enable_video_x11_scrnsaver = xyes; then
1200 AC_DEFINE(SDL_VIDEO_DRIVER_X11_SCRNSAVER)
1203 AC_ARG_ENABLE(render-x11,
1204 AC_HELP_STRING([--enable-render-x11], [enable the X11 render driver [[default=yes]]]),
1205 , enable_render_x11=yes)
1206 if test x$enable_render_x11 = xyes; then
1207 AC_DEFINE(SDL_VIDEO_RENDER_X11)
1213 dnl Check for QNX photon video driver
1216 AC_ARG_ENABLE(video-photon,
1217 AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [[default=yes]]]),
1218 , enable_video_photon=yes)
1219 if test x$enable_video = xyes -a x$enable_video_photon = xyes; then
1220 AC_MSG_CHECKING(for QNX Photon support)
1225 #include <photon/Pg.h>
1226 #include <photon/PdDirect.h>
1228 PgDisplaySettings_t *visual;
1232 AC_MSG_RESULT($video_photon)
1233 if test x$video_photon = xyes; then
1234 AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON)
1235 SOURCES="$SOURCES $srcdir/src/video/photon/*.c"
1236 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lph -lphrender"
1244 dnl Check for QNX photon video driver
1247 AC_ARG_ENABLE(video-qnxgf,
1248 AC_HELP_STRING([--enable-video-qnxgf], [use QNX GF video driver [[default=yes]]]),
1249 , enable_video_qnxgf=yes)
1250 if test x$enable_video = xyes -a x$enable_video_qnxgf = xyes; then
1251 AC_MSG_CHECKING(for QNX GF support)
1255 #include <gf/gf3d.h>
1257 gf_3d_config_info_t* gfinfo;
1261 AC_MSG_RESULT($video_qnxgf)
1262 if test x$video_qnxgf = xyes; then
1263 AC_DEFINE(SDL_VIDEO_DRIVER_QNXGF)
1264 SOURCES="$SOURCES $srcdir/src/video/qnxgf/*.c"
1265 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgf"
1267 # Add HIDDI library for HID support using GF
1268 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lhiddi"
1277 dnl Set up the BWindow video driver if enabled
1280 if test x$enable_video = xyes; then
1281 AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW)
1282 SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc"
1287 dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
1290 AC_ARG_ENABLE(video-cocoa,
1291 AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
1292 , enable_video_cocoa=yes)
1293 if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
1294 save_CFLAGS="$CFLAGS"
1295 dnl work around that we don't have Objective-C support in autoconf
1296 CFLAGS="$CFLAGS -x objective-c"
1297 AC_MSG_CHECKING(for Cocoa framework)
1300 #import <Cocoa/Cocoa.h>
1305 AC_MSG_RESULT($have_cocoa)
1306 CFLAGS="$save_CFLAGS"
1307 if test x$have_cocoa = xyes; then
1308 AC_DEFINE(SDL_VIDEO_DRIVER_COCOA)
1309 SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
1315 dnl Find the framebuffer console includes
1318 AC_ARG_ENABLE(video-fbcon,
1319 AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]),
1320 , enable_video_fbcon=no)
1321 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
1322 AC_MSG_CHECKING(for framebuffer console support)
1325 #include <linux/fb.h>
1326 #include <linux/kd.h>
1327 #include <linux/keyboard.h>
1332 AC_MSG_RESULT($video_fbcon)
1333 if test x$video_fbcon = xyes; then
1334 AC_CHECK_FUNCS(getpagesize)
1335 AC_DEFINE(SDL_VIDEO_DRIVER_FBCON)
1336 SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c"
1345 AC_ARG_ENABLE(video-directfb,
1346 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
1347 , enable_video_directfb=no)
1348 if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
1351 DIRECTFB_REQUIRED_VERSION=1.0.0
1353 AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no)
1354 if test x$DIRECTFBCONFIG = xno; then
1355 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1356 if test x$PKG_CONFIG != xno; then
1357 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
1358 DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
1359 DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
1360 DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb`
1365 set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
1366 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1367 set -- `directfb-config --version | sed 's/\./ /g'`
1368 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1369 if test $HAVE_VERSION -ge $NEED_VERSION; then
1370 DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
1371 DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
1372 DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix`
1376 if test x$video_directfb = xyes; then
1377 # SuSE 11.1 installs directfb-config without directfb-devel
1378 save_CPPFLAGS="$CPPFLAGS"
1379 CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
1380 AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
1381 CPPFLAGS="$save_CPPFLAGS"
1382 video_directfb=$have_directfb_hdr
1384 AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
1385 AC_MSG_RESULT($video_directfb)
1387 if test x$video_directfb = xyes; then
1388 AC_ARG_ENABLE(directfb-shared,
1389 AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
1390 , enable_directfb_shared=yes)
1392 AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB)
1393 SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
1394 EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
1396 AC_MSG_CHECKING(for directfb dynamic loading support)
1398 directfb_lib=[`find_lib "libdirectfb.so.*" "$DIRECTFB_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
1400 if test x$have_loadso != xyes && \
1401 test x$enable_directfb_shared = xyes; then
1402 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
1404 if test x$have_loadso = xyes && \
1405 test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
1407 echo "-- $directfb_lib_spec -> $directfb_lib"
1408 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib")
1410 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
1412 AC_MSG_RESULT($directfb_shared)
1418 dnl Find FusionSound
1421 AC_ARG_ENABLE(fusionsound,
1422 AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
1423 , enable_fusionsound=no)
1424 if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
1427 FUSIONSOUND_REQUIRED_VERSION=1.1.1
1429 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1430 AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support)
1431 if test x$PKG_CONFIG != xno; then
1432 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then
1433 FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound`
1434 FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound`
1438 AC_MSG_RESULT($fusionsound)
1440 if test x$fusionsound = xyes; then
1441 AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND)
1442 SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
1443 EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
1445 AC_ARG_ENABLE(fusionsound-shared,
1446 AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
1447 , enable_fusionsound_shared=yes)
1448 fusionsound_shared=no
1449 AC_MSG_CHECKING(for FusionSound dynamic loading support)
1450 if test x$have_loadso != xyes && \
1451 test x$enable_fusionsound_shared = xyes; then
1452 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
1454 if test x$have_loadso = xyes && \
1455 test x$enable_fusionsound_shared = xyes; then
1456 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so")
1457 fusionsound_shared=yes
1459 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
1461 AC_MSG_RESULT($fusionsound_shared)
1468 dnl See if we're running on PlayStation 3 Cell hardware
1471 AC_ARG_ENABLE(video-ps3,
1472 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]),
1473 , enable_video_ps3=yes)
1474 if test x$enable_video = xyes -a x$enable_video_ps3 = xyes; then
1476 AC_CHECK_HEADER([linux/fb.h])
1477 AC_CHECK_HEADER([asm/ps3fb.h], [have_ps3fb_hdr=yes], [],
1478 [#ifndef _LINUX_TYPES_H
1479 #include <linux/types.h>
1481 AC_CHECK_HEADER([libspe2.h], have_libspe2_hdr=yes)
1482 AC_CHECK_LIB([spe2], spe_context_create, have_spe2_lib=yes)
1484 AC_CHECK_PROGS(SPU_GCC, [spu-gcc])
1485 AC_CHECK_PROGS(EMBEDSPU, [embedspu])
1488 AC_CHECK_LIB([fb_writer_spu], [main], [], [have_spu_libs=no])
1489 AC_CHECK_LIB([yuv2rgb_spu], [main], [], [have_spu_libs=no])
1490 AC_CHECK_LIB([bilin_scaler_spu], [main], [], [have_spu_libs=no])
1491 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
1492 AC_DEFINE(SDL_VIDEO_DRIVER_PS3)
1495 SOURCES="$SOURCES $srcdir/src/video/ps3/*.c"
1496 EXTRA_CFLAGS="$EXTRA_CFLAGS -I/opt/cell/sdk/usr/include"
1497 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/cell/sdk/usr/lib -lspe2 -lfb_writer_spu -lyuv2rgb_spu -lbilin_scaler_spu"
1499 if test x$have_spu_libs = xno; then
1500 AC_MSG_WARN([ps3libs missing, please run make ps3libs])
1503 AC_MSG_CHECKING([for PlayStation 3 Cell support])
1504 AC_MSG_RESULT([$video_ps3])
1508 dnl Find the SVGAlib includes and libraries
1511 AC_ARG_ENABLE(video-svga,
1512 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=no]]]),
1513 , enable_video_svga=no)
1514 if test x$enable_video = xyes -a x$enable_video_svga = xyes; then
1515 AC_MSG_CHECKING(for SVGAlib (1.4.0+) support)
1519 #include <vgamouse.h>
1520 #include <vgakeyboard.h>
1522 if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) {
1528 AC_MSG_RESULT($video_svga)
1529 if test x$video_svga = xyes; then
1530 AC_DEFINE(SDL_VIDEO_DRIVER_SVGALIB)
1531 SOURCES="$SOURCES $srcdir/src/video/svga/*.c"
1532 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvga"
1538 dnl rcg04172001 Set up the Null video driver.
1541 AC_ARG_ENABLE(video-dummy,
1542 AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
1543 , enable_video_dummy=yes)
1544 if test x$enable_video_dummy = xyes; then
1545 AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY)
1546 SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
1551 dnl Check to see if OpenGL support is desired
1552 AC_ARG_ENABLE(video-opengl,
1553 AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
1554 , enable_video_opengl=yes)
1559 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1560 AC_MSG_CHECKING(for OpenGL (GLX) support)
1570 AC_MSG_RESULT($video_opengl)
1571 if test x$video_opengl = xyes; then
1572 AC_DEFINE(SDL_VIDEO_OPENGL)
1573 AC_DEFINE(SDL_VIDEO_OPENGL_GLX)
1574 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1579 dnl Find QNX 6.x Software OpenGL
1582 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1583 AC_MSG_CHECKING(for QNX 6.x Photon OpenGL support)
1591 AC_MSG_RESULT($video_opengl)
1592 if test x$video_opengl = xyes; then
1593 AC_DEFINE(SDL_VIDEO_OPENGL)
1594 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1595 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1600 dnl Find QNX 6.3 and above OpenGL ES implementation
1603 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1604 AC_MSG_CHECKING(for QNX OpenGL ES (CM) support)
1607 #include <GLES/egl.h>
1612 AC_MSG_RESULT($video_opengl)
1613 if test x$video_opengl = xyes; then
1614 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1615 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1616 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CM"
1618 AC_MSG_CHECKING(for QNX OpenGL ES (CL) support)
1622 #include <GLES/egl.h>
1627 AC_MSG_RESULT($video_opengl)
1628 if test x$video_opengl = xyes; then
1629 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1630 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1631 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CLS"
1638 dnl Check for Win32 OpenGL
1641 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1642 AC_DEFINE(SDL_VIDEO_OPENGL)
1643 AC_DEFINE(SDL_VIDEO_OPENGL_WGL)
1644 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1648 dnl Check for BeOS OpenGL
1651 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1652 AC_DEFINE(SDL_VIDEO_OPENGL)
1653 AC_DEFINE(SDL_VIDEO_OPENGL_BGL)
1654 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1655 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1659 dnl Check for MacOS OpenGL
1662 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1663 AC_DEFINE(SDL_VIDEO_OPENGL)
1664 AC_DEFINE(SDL_VIDEO_OPENGL_CGL)
1665 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1668 if test x$enable_video_cocoa = xyes; then
1669 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL"
1675 dnl See if we can use the new unified event interface in Linux 2.4
1678 dnl Check for Linux 2.4 unified input event interface support
1679 AC_ARG_ENABLE(input-events,
1680 AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [[default=yes]]]),
1681 , enable_input_events=yes)
1682 if test x$enable_input_events = xyes; then
1683 AC_MSG_CHECKING(for Linux 2.4 unified input interface)
1686 #include <linux/input.h>
1689 #error EVIOCGNAME() ioctl not available
1692 use_input_events=yes
1694 AC_MSG_RESULT($use_input_events)
1695 if test x$use_input_events = xyes; then
1696 AC_DEFINE(SDL_INPUT_LINUXEV)
1701 dnl See if we can use the Touchscreen input library
1704 AC_ARG_ENABLE(input-tslib,
1705 AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
1706 , enable_input_tslib=yes)
1707 if test x$enable_input_tslib = xyes; then
1708 AC_MSG_CHECKING(for Touchscreen library support)
1709 enable_input_tslib=no
1714 enable_input_tslib=yes
1716 AC_MSG_RESULT($enable_input_tslib)
1717 if test x$enable_input_tslib = xyes; then
1718 AC_DEFINE(SDL_INPUT_TSLIB)
1719 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
1724 dnl See what type of thread model to use on Linux and Solaris
1727 dnl Check for pthread support
1728 AC_ARG_ENABLE(pthreads,
1729 AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
1730 , enable_pthreads=yes)
1731 dnl This is used on Linux for glibc binary compatibility (Doh!)
1732 AC_ARG_ENABLE(pthread-sem,
1733 AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
1734 , enable_pthread_sem=yes)
1736 *-*-linux*|*-*-uclinux*)
1737 pthread_cflags="-D_REENTRANT"
1738 pthread_lib="-lpthread"
1741 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1745 pthread_cflags="-D_THREAD_SAFE"
1746 # causes Carbon.p complaints?
1747 # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1749 *-*-freebsd*|*-*-dragonfly*)
1750 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1751 pthread_lib="-pthread"
1754 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1755 pthread_lib="-lpthread"
1758 pthread_cflags="-D_REENTRANT"
1759 pthread_lib="-pthread"
1762 pthread_cflags="-D_REENTRANT"
1763 pthread_lib="-lpthread -lposix4"
1766 pthread_cflags="-D_REENTRANT -Kthread"
1770 pthread_cflags="-D_SGI_MP_SOURCE"
1771 pthread_lib="-lpthread"
1774 pthread_cflags="-D_REENTRANT -mthreads"
1775 pthread_lib="-lpthread"
1778 pthread_cflags="-D_REENTRANT"
1779 pthread_lib="-L/usr/lib -lpthread"
1786 pthread_cflags="-D_REENTRANT"
1787 if test x$ac_cv_prog_gcc = xyes; then
1788 pthread_lib="-lpthread -lrt"
1790 pthread_lib="-lpthread -lexc -lrt"
1794 pthread_cflags="-D_REENTRANT"
1795 pthread_lib="-lpthread"
1798 if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
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"
1803 # Check to see if we have pthread support on this system
1804 AC_MSG_CHECKING(for pthreads)
1807 #include <pthread.h>
1809 pthread_attr_t type;
1810 pthread_attr_init(&type);
1814 AC_MSG_RESULT($use_pthreads)
1815 # Restore the compiler flags and libraries
1816 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1818 # Do futher testing if we have pthread support...
1819 if test x$use_pthreads = xyes; then
1820 AC_DEFINE(SDL_THREAD_PTHREAD)
1821 EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
1822 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
1823 SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
1824 SDL_LIBS="$SDL_LIBS $pthread_lib"
1826 # Save the original compiler flags and libraries
1827 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
1828 # Add the pthread compiler flags and libraries
1829 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
1831 # Check to see if recursive mutexes are available
1832 AC_MSG_CHECKING(for recursive mutexes)
1833 has_recursive_mutexes=no
1834 if test x$has_recursive_mutexes = xno; then
1836 #include <pthread.h>
1838 pthread_mutexattr_t attr;
1839 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1841 has_recursive_mutexes=yes
1842 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX)
1845 if test x$has_recursive_mutexes = xno; then
1847 #include <pthread.h>
1849 pthread_mutexattr_t attr;
1850 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
1852 has_recursive_mutexes=yes
1853 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP)
1856 AC_MSG_RESULT($has_recursive_mutexes)
1858 # Check to see if pthread semaphore support is missing
1859 if test x$enable_pthread_sem = xyes; then
1860 AC_MSG_CHECKING(for pthread semaphores)
1863 #include <pthread.h>
1864 #include <semaphore.h>
1867 have_pthread_sem=yes
1869 AC_MSG_RESULT($have_pthread_sem)
1872 # Restore the compiler flags and libraries
1873 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1875 # Basic thread creation functions
1876 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
1879 # We can fake these with mutexes and condition variables if necessary
1880 if test x$have_pthread_sem = xyes; then
1881 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
1883 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
1887 # We can fake these with semaphores if necessary
1888 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
1890 # Condition variables
1891 # We can fake these with semaphores and mutexes if necessary
1892 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
1899 dnl Determine whether the compiler can produce Win32 executables
1902 AC_MSG_CHECKING(Win32 compiler)
1905 #include <windows.h>
1910 AC_MSG_RESULT($have_win32_gcc)
1911 if test x$have_win32_gcc != xyes; then
1913 *** Your compiler ($CC) does not produce Win32 executables!
1917 AC_MSG_CHECKING(Windows CE)
1921 #error This is not Windows CE
1927 AC_MSG_RESULT($have_wince)
1929 dnl See if the user wants to redirect standard output to files
1930 AC_ARG_ENABLE(stdio-redirect,
1931 AC_HELP_STRING([--enable-stdio-redirect], [Redirect STDIO to files on Win32 [[default=yes]]]),
1932 , enable_stdio_redirect=yes)
1933 if test x$enable_stdio_redirect != xyes; then
1934 EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_STDIO_REDIRECT"
1938 dnl Find the DirectX includes and libraries
1941 AC_ARG_ENABLE(directx,
1942 AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default=yes]]]),
1943 , enable_directx=yes)
1944 if test x$enable_directx = xyes; then
1945 AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
1946 AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
1947 AC_CHECK_HEADER(dsound.h, have_dsound=yes)
1948 AC_CHECK_HEADER(dinput.h, have_dinput=yes)
1952 dnl Check for the dlfcn.h interface for dynamically loading objects
1955 AC_ARG_ENABLE(sdl-dlopen,
1956 AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
1957 , enable_sdl_dlopen=yes)
1958 if test x$enable_sdl_dlopen = xyes; then
1959 AC_MSG_CHECKING(for dlopen)
1964 #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED <= 1020
1965 #error Use dlcompat for Mac OS X 10.2 compatibility
1970 AC_MSG_RESULT($have_dlopen)
1972 if test x$have_dlopen = xyes; then
1973 AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
1974 AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
1975 AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
1976 AC_DEFINE(SDL_LOADSO_DLOPEN)
1977 SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
1983 dnl Check for the usbhid(3) library on *BSD
1986 if test x$enable_joystick = xyes; then
1987 AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
1988 if test x$have_libusbhid = xyes; then
1989 AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
1990 AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
1991 USB_LIBS="$USB_LIBS -lusbhid"
1993 AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
1994 AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
1995 AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
1998 save_CFLAGS="$CFLAGS"
1999 CFLAGS="$CFLAGS $USB_CFLAGS"
2001 AC_MSG_CHECKING(for usbhid)
2004 #include <sys/types.h>
2005 #if defined(HAVE_USB_H)
2008 #ifdef __DragonFly__
2009 # include <bus/usb/usb.h>
2010 # include <bus/usb/usbhid.h>
2012 # include <dev/usb/usb.h>
2013 # include <dev/usb/usbhid.h>
2015 #if defined(HAVE_USBHID_H)
2017 #elif defined(HAVE_LIBUSB_H)
2019 #elif defined(HAVE_LIBUSBHID_H)
2020 #include <libusbhid.h>
2023 struct report_desc *repdesc;
2024 struct usb_ctl_report *repbuf;
2029 AC_MSG_RESULT($have_usbhid)
2031 if test x$have_usbhid = xyes; then
2032 AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
2033 have_usbhid_ucr_data=no
2035 #include <sys/types.h>
2036 #if defined(HAVE_USB_H)
2039 #ifdef __DragonFly__
2040 # include <bus/usb/usb.h>
2041 # include <bus/usb/usbhid.h>
2043 # include <dev/usb/usb.h>
2044 # include <dev/usb/usbhid.h>
2046 #if defined(HAVE_USBHID_H)
2048 #elif defined(HAVE_LIBUSB_H)
2050 #elif defined(HAVE_LIBUSBHID_H)
2051 #include <libusbhid.h>
2054 struct usb_ctl_report buf;
2055 if (buf.ucr_data) { }
2057 have_usbhid_ucr_data=yes
2059 if test x$have_usbhid_ucr_data = xyes; then
2060 USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
2062 AC_MSG_RESULT($have_usbhid_ucr_data)
2064 AC_MSG_CHECKING(for new usbhid API)
2067 #include <sys/types.h>
2068 #if defined(HAVE_USB_H)
2071 #ifdef __DragonFly__
2072 #include <bus/usb/usb.h>
2073 #include <bus/usb/usbhid.h>
2075 #include <dev/usb/usb.h>
2076 #include <dev/usb/usbhid.h>
2078 #if defined(HAVE_USBHID_H)
2080 #elif defined(HAVE_LIBUSB_H)
2082 #elif defined(HAVE_LIBUSBHID_H)
2083 #include <libusbhid.h>
2087 hid_start_parse(d, 1, 1);
2091 if test x$have_usbhid_new = xyes; then
2092 USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
2094 AC_MSG_RESULT($have_usbhid_new)
2096 AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
2097 have_machine_joystick=no
2099 #include <machine/joystick.h>
2103 have_machine_joystick=yes
2105 if test x$have_machine_joystick = xyes; then
2106 AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H)
2108 AC_MSG_RESULT($have_machine_joystick)
2110 AC_DEFINE(SDL_JOYSTICK_USBHID)
2111 SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
2112 EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
2113 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
2116 CFLAGS="$save_CFLAGS"
2120 dnl Check for clock_gettime()
2123 AC_ARG_ENABLE(clock_gettime,
2124 AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=no]]]),
2125 , enable_clock_gettime=no)
2126 if test x$enable_clock_gettime = xyes; then
2127 AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
2128 if test x$have_clock_gettime = xyes; then
2129 AC_DEFINE(HAVE_CLOCK_GETTIME)
2130 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
2132 AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
2133 if test x$have_clock_gettime = xyes; then
2134 AC_DEFINE(HAVE_CLOCK_GETTIME)
2135 EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
2141 dnl Check for a valid linux/version.h
2144 AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
2145 if test x$have_linux_version_h = xyes; then
2146 EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
2150 dnl Check if we want to use RPATH
2153 AC_ARG_ENABLE(rpath,
2154 AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
2158 dnl Set up the configuration based on the host platform!
2160 *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-irix*|*-*-aix*|*-*-osf*|*-*-minix*)
2162 *-*-linux*) ARCH=linux ;;
2163 *-*-uclinux*) ARCH=linux ;;
2164 *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
2165 *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
2166 *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
2167 *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
2168 *-*-bsdi*) ARCH=bsdi ;;
2169 *-*-freebsd*) ARCH=freebsd ;;
2170 *-*-dragonfly*) ARCH=freebsd ;;
2171 *-*-netbsd*) ARCH=netbsd ;;
2172 *-*-openbsd*) ARCH=openbsd ;;
2173 *-*-sysv5*) ARCH=sysv5 ;;
2174 *-*-solaris*) ARCH=solaris ;;
2175 *-*-hpux*) ARCH=hpux ;;
2176 *-*-irix*) ARCH=irix ;;
2177 *-*-aix*) ARCH=aix ;;
2178 *-*-osf*) ARCH=osf ;;
2179 *-*-minix*) ARCH=minix ;;
2181 CheckVisibilityHidden
2208 # Set up files for the audio library
2209 if test x$enable_audio = xyes; then
2212 AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO)
2213 SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
2217 AC_DEFINE(SDL_AUDIO_DRIVER_BSD)
2218 SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c"
2222 AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO)
2223 SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
2228 # Set up files for the atomic operations library
2229 if test x$enable_atomic = xyes; then
2232 AC_DEFINE(SDL_ATOMIC_LINUX)
2233 SOURCES="$SOURCES $srcdir/src/atomic/linux/*.c"
2238 # Set up files for the joystick library
2239 if test x$enable_joystick = xyes; then
2242 AC_DEFINE(SDL_JOYSTICK_LINUX)
2243 SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
2248 # Set up files for the haptic library
2249 if test x$enable_haptic = xyes; then
2250 if test x$use_input_events = xyes; then
2253 AC_DEFINE(SDL_HAPTIC_LINUX)
2254 SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
2260 # Set up files for the power library
2261 if test x$enable_power = xyes; then
2264 AC_DEFINE(SDL_POWER_LINUX)
2265 SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
2270 # Set up files for the thread library
2271 if test x$enable_threads = xyes -a x$use_pthreads != xyes -a x$use_pth != xyes -a x$ARCH = xirix; then
2272 AC_DEFINE(SDL_THREAD_SPROC)
2273 SOURCES="$SOURCES $srcdir/src/thread/irix/*.c"
2274 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2275 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2278 # Set up files for the timer library
2279 if test x$enable_timers = xyes; then
2280 AC_DEFINE(SDL_TIMER_UNIX)
2281 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2287 EXTRA_CFLAGS="-I/usr/include $CFLAGS"
2288 EXTRA_LDLAGS="-L/usr/lib $LDFLAGS"
2291 CheckVisibilityHidden
2307 # Set up files for the audio library
2308 if test x$enable_audio = xyes; then
2309 AC_DEFINE(SDL_AUDIO_DRIVER_QSA)
2310 SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
2311 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
2314 # Set up files for the timer library
2315 if test x$enable_timers = xyes; then
2316 AC_DEFINE(SDL_TIMER_UNIX)
2317 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2320 # Setup files for the atomic operations
2321 if test x$enable_atomic = xyes; then
2322 AC_DEFINE(SDL_ATOMIC_QNX)
2323 SOURCES="$SOURCES $srcdir/src/atomic/qnx/*.c"
2326 # Set up dummy files for the joystick for now
2327 if test x$enable_joystick = xyes; then
2328 AC_DEFINE(SDL_JOYSTICK_DUMMY)
2329 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2332 # Set up dummy files for the haptic for now
2333 if test x$enable_haptic = xyes; then
2334 AC_DEFINE(SDL_HAPTIC_DUMMY)
2335 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2339 *-wince* | *-mingw32ce)
2345 if test x$enable_video = xyes; then
2346 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2347 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2349 AC_ARG_ENABLE(render-gdi,
2350 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2351 , enable_render_gdi=yes)
2352 if test x$enable_render_gdi = xyes; then
2353 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2355 AC_ARG_ENABLE(render-gapi,
2356 AC_HELP_STRING([--enable-render-gapi], [enable the GAPI/RAWFRAMEBUFFER render driver [[default=yes]]]),
2357 , enable_render_gapi=yes)
2358 if test x$enable_render_gapi = xyes -a x$have_wince = xyes; then
2359 AC_DEFINE(SDL_VIDEO_RENDER_GAPI)
2361 AC_ARG_ENABLE(render-ddraw,
2362 AC_HELP_STRING([--enable-render-ddraw], [enable the Mobile DirectDraw render driver [[default=yes]]]),
2363 , enable_render_ddraw=yes)
2364 if test x$enable_render_ddraw = xyes -a x$have_wince = xyes -a x$have_ddraw = xyes; then
2365 AC_DEFINE(SDL_VIDEO_RENDER_DDRAW)
2367 AC_ARG_ENABLE(render-d3d,
2368 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2369 , enable_render_d3d=yes)
2370 enable_render_d3d=no
2371 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2372 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2375 # Set up files for the audio library
2376 if test x$enable_audio = xyes; then
2377 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2378 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2379 if test x$have_dsound = xyes; then
2380 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2381 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2385 # Set up files for the atomic operations library
2386 if test x$enable_atomic = xyes; then
2387 AC_DEFINE(SDL_ATOMIC_WIN32)
2388 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c"
2391 # Set up files for the thread library
2392 if test x$enable_threads = xyes; then
2393 AC_DEFINE(SDL_THREAD_WIN32)
2394 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2395 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2396 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2397 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2400 # Set up files for the timer library
2401 if test x$enable_timers = xyes; then
2402 AC_DEFINE(SDL_TIMER_WINCE)
2403 SOURCES="$SOURCES $srcdir/src/timer/wince/*.c"
2406 # Set up files for the shared object loading library
2407 if test x$enable_loadso = xyes; then
2408 AC_DEFINE(SDL_LOADSO_WIN32)
2409 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2412 # Set up the system libraries we need
2413 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lcommctrl -lmmtimer"
2414 # The Win32 platform requires special setup
2415 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2416 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main -D_WIN32_WCE=0x420"
2417 SDL_LIBS="-lSDLmain $SDL_LIBS"
2419 *-*-cygwin* | *-*-mingw32*)
2421 if test "$build" != "$host"; then # cross-compiling
2422 # Default cross-compile location
2423 ac_default_prefix=/usr/local/cross-tools/$host
2425 # Look for the location of the tools and install there
2426 if test "$BUILD_PREFIX" != ""; then
2427 ac_default_prefix=$BUILD_PREFIX
2436 # Set up files for the video library
2437 if test x$enable_video = xyes; then
2438 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2439 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2441 AC_ARG_ENABLE(render-gdi,
2442 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2443 , enable_render_gdi=yes)
2444 if test x$enable_render_gdi = xyes; then
2445 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2447 AC_ARG_ENABLE(render-d3d,
2448 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2449 , enable_render_d3d=yes)
2450 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2451 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2454 # Set up files for the audio library
2455 if test x$enable_audio = xyes; then
2456 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2457 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2458 if test x$have_dsound = xyes; then
2459 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2460 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2464 # Set up files for the atomic operations library
2465 if test x$enable_atomic = xyes; then
2466 AC_DEFINE(SDL_ATOMIC_WIN32)
2467 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c"
2470 # Set up files for the joystick library
2471 if test x$enable_joystick = xyes; then
2472 if test x$have_dinput = xyes; then
2473 AC_DEFINE(SDL_JOYSTICK_DINPUT)
2474 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_dxjoystick.c"
2475 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8 -lole32"
2477 AC_DEFINE(SDL_JOYSTICK_WINMM)
2478 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_mmjoystick.c"
2482 if test x$enable_haptic = xyes; then
2483 if test x$have_dinput = xyes; then
2484 AC_DEFINE(SDL_HAPTIC_DINPUT)
2485 SOURCES="$SOURCES $srcdir/src/haptic/win32/SDL_syshaptic.c"
2489 if test x$enable_power = xyes; then
2490 AC_DEFINE(SDL_POWER_WINDOWS)
2491 SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
2494 # Set up files for the thread library
2495 if test x$enable_threads = xyes; then
2496 AC_DEFINE(SDL_THREAD_WIN32)
2497 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2498 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2499 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2500 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2503 # Set up files for the timer library
2504 if test x$enable_timers = xyes; then
2505 AC_DEFINE(SDL_TIMER_WIN32)
2506 SOURCES="$SOURCES $srcdir/src/timer/win32/*.c"
2509 # Set up files for the shared object loading library
2510 if test x$enable_loadso = xyes; then
2511 AC_DEFINE(SDL_LOADSO_WIN32)
2512 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2515 # Set up the system libraries we need
2516 # SDL 1.3 is unicode, and unicows emulates this on Windows 98/ME
2517 # You can get this here: http://libunicows.sourceforge.net/
2518 #EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows"
2519 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lmsimg32 -lwinmm"
2520 # The Win32 platform requires special setup
2521 VERSION_SOURCES="$srcdir/src/main/win32/*.rc"
2522 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2523 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
2524 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows"
2526 *-*-beos* | *-*-haiku*)
2528 ac_default_prefix=/boot/develop/tools/gnupro
2534 # Set up files for the audio library
2535 if test x$enable_audio = xyes; then
2536 AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO)
2537 SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc"
2540 # Set up files for the joystick library
2541 if test x$enable_joystick = xyes; then
2542 AC_DEFINE(SDL_JOYSTICK_BEOS)
2543 SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc"
2546 # Set up files for the thread library
2547 if test x$enable_threads = xyes; then
2548 AC_DEFINE(SDL_THREAD_BEOS)
2549 SOURCES="$SOURCES $srcdir/src/thread/beos/*.c"
2550 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2551 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2554 # Set up files for the timer library
2555 if test x$enable_timers = xyes; then
2556 AC_DEFINE(SDL_TIMER_BEOS)
2557 SOURCES="$SOURCES $srcdir/src/timer/beos/*.c"
2560 # Set up files for the shared object loading library
2561 if test x$enable_loadso = xyes; then
2562 AC_DEFINE(SDL_LOADSO_BEOS)
2563 SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c"
2566 # Set up files for the system power library
2567 if test x$enable_power = xyes; then
2568 AC_DEFINE(SDL_POWER_BEOS)
2569 SOURCES="$SOURCES $srcdir/src/power/beos/*.c"
2572 # The BeOS platform requires special setup.
2573 SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
2574 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
2577 # This could be either full "Mac OS X", or plain "Darwin" which is
2578 # just the OS X kernel sans upper layers like Carbon and Cocoa.
2579 # Next line is broken, and a few files below require Mac OS X (full)
2582 # Mac OS X builds with both the Carbon and OSX APIs at the moment
2583 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
2584 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
2586 # HACK: Reset EXTRA_LDFLAGS; the only thing it contains at this point
2587 # is -lm which is not needed under Mac OS X. But for some reasons it
2588 # also tends to contain spurious -L switches, which we don't want to
2589 # use here or in sdl-config. Hence we reset it.
2592 CheckVisibilityHidden
2598 # Set up files for the shared object loading library
2599 # (this needs to be done before the dynamic X11 check)
2600 if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then
2601 AC_DEFINE(SDL_LOADSO_DLCOMPAT)
2602 SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c"
2612 # Good optimization on Mac OS X, yes...
2613 EXTRA_CFLAGS="$EXTRA_CFLAGS -falign-loops=16"
2615 # Need this or things might misbuild on a G3.
2616 EXTRA_CFLAGS="$EXTRA_CFLAGS -force_cpusubtype_ALL"
2618 # Set up files for the audio library
2619 if test x$enable_audio = xyes; then
2620 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO)
2621 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c"
2624 # Set up files for the atomic operations library
2625 if test x$enable_atomic = xyes; then
2626 AC_DEFINE(SDL_ATOMIC_MACOSX)
2627 SOURCES="$SOURCES $srcdir/src/atomic/macosx/*.c"
2630 # Set up files for the joystick library
2631 if test x$enable_joystick = xyes; then
2632 AC_DEFINE(SDL_JOYSTICK_IOKIT)
2633 SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
2636 # Set up files for the haptic library
2637 if test x$enable_haptic = xyes; then
2638 AC_DEFINE(SDL_HAPTIC_IOKIT)
2639 SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
2641 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
2643 # Set up files for the power library
2644 if test x$enable_power = xyes; then
2645 AC_DEFINE(SDL_POWER_MACOSX)
2646 SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
2649 # Set up files for the timer library
2650 if test x$enable_timers = xyes; then
2651 AC_DEFINE(SDL_TIMER_UNIX)
2652 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2655 # Set up additional files for the file library
2656 if test x$enable_file = xyes; then
2657 SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
2659 # The Mac OS X platform requires special setup.
2660 EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
2661 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
2662 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
2663 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
2664 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
2665 # If audio is used, add the AudioUnit framework
2666 if test x$enable_audio = xyes; then
2667 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit"
2674 # Set up files for the video library
2675 if test x$enable_video = xyes; then
2676 AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS)
2677 SOURCES="$SOURCES $srcdir/src/video/riscos/*.c"
2678 SOURCES="$SOURCES $srcdir/src/video/riscos/*.S"
2681 # Set up files for the joystick library
2682 if test x$enable_joystick = xyes; then
2683 AC_DEFINE(SDL_JOYSTICK_RISCOS)
2684 SOURCES="$SOURCES $srcdir/src/joystick/riscos/*.c"
2687 # Set up files for the timer library
2688 if test x$enable_timers = xyes; then
2689 AC_DEFINE(SDL_TIMER_RISCOS)
2690 SOURCES="$SOURCES $srcdir/src/timer/riscos/*.c"
2693 # The RISC OS platform requires special setup.
2694 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ljpeg -ltiff -lpng -lz"
2698 *** Unsupported host: Please add to configure.in
2703 # Verify that we have all the platform specific files we need
2705 if test x$have_joystick != xyes; then
2706 if test x$enable_joystick = xyes; then
2707 AC_DEFINE(SDL_JOYSTICK_DISABLED)
2709 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2711 if test x$have_haptic != xyes; then
2712 if test x$enable_haptic = xyes; then
2713 AC_DEFINE(SDL_HAPTIC_DISABLED)
2715 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2717 if test x$have_threads != xyes; then
2718 if test x$enable_threads = xyes; then
2719 AC_DEFINE(SDL_THREADS_DISABLED)
2721 SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
2723 if test x$have_timers != xyes; then
2724 if test x$enable_timers = xyes; then
2725 AC_DEFINE(SDL_TIMERS_DISABLED)
2727 SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
2729 if test x$have_loadso != xyes; then
2730 if test x$enable_loadso = xyes; then
2731 AC_DEFINE(SDL_LOADSO_DISABLED)
2733 SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
2735 if test x$SDLMAIN_SOURCES = x; then
2736 SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
2739 OBJECTS=`echo $SOURCES`
2740 DEPENDS=`echo $SOURCES`
2741 for EXT in asm cc m c S; do
2742 OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
2743 DEPENDS=`echo "$DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT,\\\\
2744 \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\
2745 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2748 VERSION_OBJECTS=`echo $VERSION_SOURCES`
2749 VERSION_DEPENDS=`echo $VERSION_SOURCES`
2750 VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
2751 VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
2752 \\$(objects)/\\2.o: \\1/\\2.rc\\\\
2753 \\$(WINDRES) \\$< \\$@,g"`
2755 SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
2756 SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
2757 SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
2758 SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
2759 \\$(objects)/\\2.o: \\1/\\2.c\\\\
2760 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2762 # Set runtime shared library paths as needed
2764 if test "x$enable_rpath" = "xyes"; then
2765 if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then
2766 SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
2768 if test $ARCH = solaris; then
2769 SDL_RLD_FLAGS="-R\${libdir}"
2777 # Evil hack to allow static linking on Mac OS X
2778 SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS"
2781 SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS"
2785 dnl Expand the cflags and libraries needed by apps using SDL
2786 AC_SUBST(SDL_CFLAGS)
2788 AC_SUBST(SDL_STATIC_LIBS)
2789 AC_SUBST(SDL_RLD_FLAGS)
2790 if test x$enable_shared = xyes; then
2792 ENABLE_SHARED_FALSE="#"
2794 ENABLE_SHARED_TRUE="#"
2795 ENABLE_SHARED_FALSE=
2797 if test x$enable_static = xyes; then
2799 ENABLE_STATIC_FALSE="#"
2801 ENABLE_STATIC_TRUE="#"
2802 ENABLE_STATIC_FALSE=
2804 AC_SUBST(ENABLE_SHARED_TRUE)
2805 AC_SUBST(ENABLE_SHARED_FALSE)
2806 AC_SUBST(ENABLE_STATIC_TRUE)
2807 AC_SUBST(ENABLE_STATIC_FALSE)
2809 dnl Expand the sources and objects needed to build the library
2810 AC_SUBST(ac_aux_dir)
2814 AC_SUBST(VERSION_OBJECTS)
2815 AC_SUBST(VERSION_DEPENDS)
2816 AC_SUBST(SDLMAIN_OBJECTS)
2817 AC_SUBST(SDLMAIN_DEPENDS)
2818 AC_SUBST(BUILD_CFLAGS)
2819 AC_SUBST(EXTRA_CFLAGS)
2820 AC_SUBST(BUILD_LDFLAGS)
2821 AC_SUBST(EXTRA_LDFLAGS)
2825 Makefile sdl-config SDL.spec sdl.pc