Integrate XFixes and XDamage into the build system.
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'`]
1058 xdamage_lib=[`find_lib "libXdamage.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1059 xfixes_lib=[`find_lib "libXfixes.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
1063 if test x$ac_cv_func_shmat != xyes; then
1064 X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
1066 CFLAGS="$CFLAGS $X_CFLAGS"
1067 LDFLAGS="$LDFLAGS $X_LIBS"
1069 AC_DEFINE(SDL_VIDEO_DRIVER_X11)
1070 SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
1071 SOURCES="$SOURCES $srcdir/src/video/Xext/XmuStdCmap/*.c"
1072 EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
1074 if test x$enable_x11_shared = xmaybe; then
1075 enable_x11_shared=$x11_symbols_private
1077 if test x$have_loadso != xyes && \
1078 test x$enable_x11_shared = xyes; then
1079 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
1080 enable_x11_shared=no
1082 if test x$x11_symbols_private != xyes && \
1083 test x$enable_x11_shared = xyes; then
1084 AC_MSG_WARN([You must have gcc4 (-fvisibility=hidden) for dynamic X11 loading])
1085 enable_x11_shared=no
1088 if test x$have_loadso = xyes && \
1089 test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
1090 echo "-- dynamic libX11 -> $x11_lib"
1091 echo "-- dynamic libX11ext -> $x11ext_lib"
1092 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib")
1093 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib")
1095 enable_x11_shared=no
1096 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
1100 AC_ARG_ENABLE(video-x11-vm,
1101 AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
1102 , enable_video_x11_vm=yes)
1103 if test x$enable_video_x11_vm = xyes; then
1104 AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE)
1105 SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c"
1107 AC_ARG_ENABLE(video-x11-xv,
1108 AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [[default=yes]]]),
1109 , enable_video_x11_xv=yes)
1110 if test x$enable_video_x11_xv = xyes; then
1111 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV)
1112 SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c"
1114 AC_ARG_ENABLE(video-x11-xinerama,
1115 AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
1116 , enable_video_x11_xinerama=yes)
1117 if test x$enable_video_x11_xinerama = xyes; then
1118 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA)
1119 SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c"
1121 AC_ARG_ENABLE(video-x11-xrandr,
1122 AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
1123 , enable_video_x11_xrandr=yes)
1124 if test x$enable_video_x11_xrandr = xyes; then
1125 definitely_enable_video_x11_xrandr=no
1126 AC_CHECK_HEADER(X11/extensions/Xrandr.h,
1127 have_xrandr_h_hdr=yes,
1128 have_xrandr_h_hdr=no,
1129 [#include <X11/Xlib.h>
1131 if test x$have_xrandr_h_hdr = xyes; then
1132 if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
1133 echo "-- dynamic libXrandr -> $xrandr_lib"
1134 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib")
1135 definitely_enable_video_x11_xrandr=yes
1137 AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
1138 if test x$have_xrandr_lib = xyes ; then
1139 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr"
1140 definitely_enable_video_x11_xrandr=yes
1145 if test x$definitely_enable_video_x11_xrandr = xyes; then
1146 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR)
1148 AC_ARG_ENABLE(video-x11-xinput,
1149 AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
1150 , enable_video_x11_xinput=yes)
1151 if test x$enable_video_x11_xinput = xyes; then
1152 definitely_enable_video_x11_xinput=no
1153 AC_CHECK_HEADER(X11/extensions/XInput.h,
1154 have_xinput_h_hdr=yes,
1155 have_xinput_h_hdr=no,
1156 [#include <X11/Xlib.h>
1158 if test x$have_xinput_h_hdr = xyes; then
1159 if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
1160 echo "-- dynamic libXi -> $xinput_lib"
1161 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib")
1162 definitely_enable_video_x11_xinput=yes
1164 AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
1165 if test x$have_xinput_lib = xyes ; then
1166 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
1167 definitely_enable_video_x11_xinput=yes
1172 if test x$definitely_enable_video_x11_xinput = xyes; then
1173 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT)
1175 AC_ARG_ENABLE(video-x11-scrnsaver,
1176 AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
1177 , enable_video_x11_scrnsaver=yes)
1178 if test x$enable_video_x11_scrnsaver = xyes; then
1179 AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
1180 have_scrnsaver_h_hdr=yes,
1181 have_scrnsaver_h_hdr=no,
1182 [#include <X11/Xlib.h>
1184 if test x$have_scrnsaver_h_hdr = xyes; then
1185 if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
1186 echo "-- dynamic libXss -> $xss_lib"
1187 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib")
1188 definitely_enable_video_x11_scrnsaver=yes
1190 AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
1191 if test x$have_xss_lib = xyes ; then
1192 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
1193 definitely_enable_video_x11_scrnsaver=yes
1198 if test x$definitely_enable_video_x11_scrnsaver = xyes; then
1199 AC_DEFINE(SDL_VIDEO_DRIVER_X11_SCRNSAVER)
1201 AC_ARG_ENABLE(video-x11-xrender,
1202 AC_HELP_STRING([--enable-video-x11-xrender], [enable X11 Xrender extension [[default=yes]]]),
1203 , enable_video_x11_xrender=yes)
1204 if test x$enable_video_x11_xrender = xyes; then
1205 AC_CHECK_HEADER(X11/extensions/Xrender.h,
1206 have_xrender_h_hdr=yes,
1207 have_xrender_h_hdr=no,
1208 [#include <X11/Xlib.h>
1210 if test x$have_xrender_h_hdr = xyes; then
1211 if test x$enable_x11_shared = xyes && test x$xrender_lib != x ; then
1212 echo "-- dynamic libXrender -> $xrender_lib"
1213 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER, "$xrender_lib")
1214 definitely_enable_video_x11_xrender=yes
1216 AC_CHECK_LIB(Xrender, XRenderQueryExtension, have_xrender_lib=yes)
1217 if test x$have_xrender_lib = xyes ; then
1218 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrender"
1219 definitely_enable_video_x11_xrender=yes
1224 if test x$definitely_enable_video_x11_xrender = xyes; then
1225 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRENDER)
1227 AC_ARG_ENABLE(video-x11-xdamage-xfixes,
1228 AC_HELP_STRING([--enable-video-x11-xdamage-xfixes], [enable X11 Xdamage and Xfixes extensions [[default=yes]]]),
1229 , enable_video_x11_xdamage=yes)
1230 if test x$enable_video_x11_xdamage = xyes && test x$definitely_enable_video_x11_xrender = xyes ; then
1231 AC_CHECK_HEADER(X11/extensions/Xdamage.h,
1232 have_xdamage_h_hdr=yes,
1233 have_xdamage_h_hdr=no,
1234 [#include <X11/Xlib.h>
1236 AC_CHECK_HEADER(X11/extensions/Xfixes.h,
1237 have_xfixes_h_hdr=yes,
1238 have_xfixes_h_hdr=no,
1239 [#include <X11/Xlib.h>
1241 if test x$have_xdamage_h_hdr = xyes && test x$have_xfixes_h_hdr = xyes ; then
1242 if test x$enable_x11_shared = xyes && test x$xdamage_lib != x && test x$xfixes_lib != x ; then
1243 echo "-- dynamic libXdamage -> $xdamage_lib"
1244 echo "-- dynamic libXfixes -> $xfixes_lib"
1245 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XDAMAGE, "$xdamage_lib")
1246 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XFIXES, "$xfixes_lib")
1247 definitely_enable_video_x11_xdamage=yes
1248 definitely_enable_video_x11_xfixes=yes
1250 AC_CHECK_LIB(Xdamage, XDamageQueryExtension, have_xdamage_lib=yes)
1251 AC_CHECK_LIB(Xfixes, XFixesQueryExtension, have_xfixes_lib=yes)
1252 if test x$have_xdamage_lib = xyes && test x$have_xfixes_lib = xyes ; then
1253 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXdamage -lXfixes"
1254 definitely_enable_video_x11_xdamage=yes
1255 definitely_enable_video_x11_xfixes=yes
1260 if test x$definitely_enable_video_x11_xdamage = xyes && test x$definitely_enable_video_x11_xfixes = xyes ; then
1261 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XDAMAGE)
1262 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XFIXES)
1264 AC_ARG_ENABLE(render-x11,
1265 AC_HELP_STRING([--enable-render-x11], [enable the X11 render driver [[default=yes]]]),
1266 , enable_render_x11=yes)
1267 if test x$enable_render_x11 = xyes; then
1268 AC_DEFINE(SDL_VIDEO_RENDER_X11)
1274 dnl Check for QNX photon video driver
1277 AC_ARG_ENABLE(video-photon,
1278 AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [[default=yes]]]),
1279 , enable_video_photon=yes)
1280 if test x$enable_video = xyes -a x$enable_video_photon = xyes; then
1281 AC_MSG_CHECKING(for QNX Photon support)
1286 #include <photon/Pg.h>
1287 #include <photon/PdDirect.h>
1289 PgDisplaySettings_t *visual;
1293 AC_MSG_RESULT($video_photon)
1294 if test x$video_photon = xyes; then
1295 AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON)
1296 SOURCES="$SOURCES $srcdir/src/video/photon/*.c"
1297 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lph -lphrender"
1305 dnl Check for QNX photon video driver
1308 AC_ARG_ENABLE(video-qnxgf,
1309 AC_HELP_STRING([--enable-video-qnxgf], [use QNX GF video driver [[default=yes]]]),
1310 , enable_video_qnxgf=yes)
1311 if test x$enable_video = xyes -a x$enable_video_qnxgf = xyes; then
1312 AC_MSG_CHECKING(for QNX GF support)
1316 #include <gf/gf3d.h>
1318 gf_3d_config_info_t* gfinfo;
1322 AC_MSG_RESULT($video_qnxgf)
1323 if test x$video_qnxgf = xyes; then
1324 AC_DEFINE(SDL_VIDEO_DRIVER_QNXGF)
1325 SOURCES="$SOURCES $srcdir/src/video/qnxgf/*.c"
1326 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgf"
1328 # Add HIDDI library for HID support using GF
1329 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lhiddi"
1338 dnl Set up the BWindow video driver if enabled
1341 if test x$enable_video = xyes; then
1342 AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW)
1343 SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc"
1348 dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
1351 AC_ARG_ENABLE(video-cocoa,
1352 AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
1353 , enable_video_cocoa=yes)
1354 if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
1355 save_CFLAGS="$CFLAGS"
1356 dnl work around that we don't have Objective-C support in autoconf
1357 CFLAGS="$CFLAGS -x objective-c"
1358 AC_MSG_CHECKING(for Cocoa framework)
1361 #import <Cocoa/Cocoa.h>
1366 AC_MSG_RESULT($have_cocoa)
1367 CFLAGS="$save_CFLAGS"
1368 if test x$have_cocoa = xyes; then
1369 AC_DEFINE(SDL_VIDEO_DRIVER_COCOA)
1370 SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
1376 dnl Find the framebuffer console includes
1379 AC_ARG_ENABLE(video-fbcon,
1380 AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]),
1381 , enable_video_fbcon=no)
1382 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
1383 AC_MSG_CHECKING(for framebuffer console support)
1386 #include <linux/fb.h>
1387 #include <linux/kd.h>
1388 #include <linux/keyboard.h>
1393 AC_MSG_RESULT($video_fbcon)
1394 if test x$video_fbcon = xyes; then
1395 AC_CHECK_FUNCS(getpagesize)
1396 AC_DEFINE(SDL_VIDEO_DRIVER_FBCON)
1397 SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c"
1406 AC_ARG_ENABLE(video-directfb,
1407 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
1408 , enable_video_directfb=no)
1409 if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
1412 DIRECTFB_REQUIRED_VERSION=1.0.0
1414 AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no)
1415 if test x$DIRECTFBCONFIG = xno; then
1416 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1417 if test x$PKG_CONFIG != xno; then
1418 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
1419 DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
1420 DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
1421 DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb`
1426 set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
1427 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1428 set -- `directfb-config --version | sed 's/\./ /g'`
1429 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
1430 if test $HAVE_VERSION -ge $NEED_VERSION; then
1431 DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
1432 DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
1433 DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix`
1437 if test x$video_directfb = xyes; then
1438 # SuSE 11.1 installs directfb-config without directfb-devel
1439 save_CPPFLAGS="$CPPFLAGS"
1440 CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
1441 AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
1442 CPPFLAGS="$save_CPPFLAGS"
1443 video_directfb=$have_directfb_hdr
1445 AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
1446 AC_MSG_RESULT($video_directfb)
1448 if test x$video_directfb = xyes; then
1449 AC_ARG_ENABLE(directfb-shared,
1450 AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
1451 , enable_directfb_shared=yes)
1453 AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB)
1454 SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
1455 EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
1457 AC_MSG_CHECKING(for directfb dynamic loading support)
1459 directfb_lib=[`find_lib "libdirectfb.so.*" "$DIRECTFB_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
1461 if test x$have_loadso != xyes && \
1462 test x$enable_directfb_shared = xyes; then
1463 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
1465 if test x$have_loadso = xyes && \
1466 test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
1468 echo "-- $directfb_lib_spec -> $directfb_lib"
1469 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib")
1471 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
1473 AC_MSG_RESULT($directfb_shared)
1479 dnl Find FusionSound
1482 AC_ARG_ENABLE(fusionsound,
1483 AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
1484 , enable_fusionsound=no)
1485 if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
1488 FUSIONSOUND_REQUIRED_VERSION=1.1.1
1490 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1491 AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support)
1492 if test x$PKG_CONFIG != xno; then
1493 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then
1494 FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound`
1495 FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound`
1499 AC_MSG_RESULT($fusionsound)
1501 if test x$fusionsound = xyes; then
1502 AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND)
1503 SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
1504 EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
1506 AC_ARG_ENABLE(fusionsound-shared,
1507 AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
1508 , enable_fusionsound_shared=yes)
1509 fusionsound_shared=no
1510 AC_MSG_CHECKING(for FusionSound dynamic loading support)
1511 if test x$have_loadso != xyes && \
1512 test x$enable_fusionsound_shared = xyes; then
1513 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
1515 if test x$have_loadso = xyes && \
1516 test x$enable_fusionsound_shared = xyes; then
1517 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so")
1518 fusionsound_shared=yes
1520 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
1522 AC_MSG_RESULT($fusionsound_shared)
1529 dnl See if we're running on PlayStation 3 Cell hardware
1532 AC_ARG_ENABLE(video-ps3,
1533 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]),
1534 , enable_video_ps3=yes)
1535 if test x$enable_video = xyes -a x$enable_video_ps3 = xyes; then
1537 AC_CHECK_HEADER([linux/fb.h])
1538 AC_CHECK_HEADER([asm/ps3fb.h], [have_ps3fb_hdr=yes], [],
1539 [#ifndef _LINUX_TYPES_H
1540 #include <linux/types.h>
1542 AC_CHECK_HEADER([libspe2.h], have_libspe2_hdr=yes)
1543 AC_CHECK_LIB([spe2], spe_context_create, have_spe2_lib=yes)
1545 AC_CHECK_PROGS(SPU_GCC, [spu-gcc])
1546 AC_CHECK_PROGS(EMBEDSPU, [embedspu])
1549 AC_CHECK_LIB([fb_writer_spu], [main], [], [have_spu_libs=no])
1550 AC_CHECK_LIB([yuv2rgb_spu], [main], [], [have_spu_libs=no])
1551 AC_CHECK_LIB([bilin_scaler_spu], [main], [], [have_spu_libs=no])
1552 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
1553 AC_DEFINE(SDL_VIDEO_DRIVER_PS3)
1556 SOURCES="$SOURCES $srcdir/src/video/ps3/*.c"
1557 EXTRA_CFLAGS="$EXTRA_CFLAGS -I/opt/cell/sdk/usr/include"
1558 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/cell/sdk/usr/lib -lspe2 -lfb_writer_spu -lyuv2rgb_spu -lbilin_scaler_spu"
1560 if test x$have_spu_libs = xno; then
1561 AC_MSG_WARN([ps3libs missing, please run make ps3libs])
1564 AC_MSG_CHECKING([for PlayStation 3 Cell support])
1565 AC_MSG_RESULT([$video_ps3])
1569 dnl Find the SVGAlib includes and libraries
1572 AC_ARG_ENABLE(video-svga,
1573 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=no]]]),
1574 , enable_video_svga=no)
1575 if test x$enable_video = xyes -a x$enable_video_svga = xyes; then
1576 AC_MSG_CHECKING(for SVGAlib (1.4.0+) support)
1580 #include <vgamouse.h>
1581 #include <vgakeyboard.h>
1583 if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) {
1589 AC_MSG_RESULT($video_svga)
1590 if test x$video_svga = xyes; then
1591 AC_DEFINE(SDL_VIDEO_DRIVER_SVGALIB)
1592 SOURCES="$SOURCES $srcdir/src/video/svga/*.c"
1593 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvga"
1599 dnl rcg04172001 Set up the Null video driver.
1602 AC_ARG_ENABLE(video-dummy,
1603 AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
1604 , enable_video_dummy=yes)
1605 if test x$enable_video_dummy = xyes; then
1606 AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY)
1607 SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
1612 dnl Check to see if OpenGL support is desired
1613 AC_ARG_ENABLE(video-opengl,
1614 AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
1615 , enable_video_opengl=yes)
1620 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1621 AC_MSG_CHECKING(for OpenGL (GLX) support)
1631 AC_MSG_RESULT($video_opengl)
1632 if test x$video_opengl = xyes; then
1633 AC_DEFINE(SDL_VIDEO_OPENGL)
1634 AC_DEFINE(SDL_VIDEO_OPENGL_GLX)
1635 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1640 dnl Find QNX 6.x Software OpenGL
1643 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1644 AC_MSG_CHECKING(for QNX 6.x Photon OpenGL support)
1652 AC_MSG_RESULT($video_opengl)
1653 if test x$video_opengl = xyes; then
1654 AC_DEFINE(SDL_VIDEO_OPENGL)
1655 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1656 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1661 dnl Find QNX 6.3 and above OpenGL ES implementation
1664 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1665 AC_MSG_CHECKING(for QNX OpenGL ES (CM) support)
1668 #include <GLES/egl.h>
1673 AC_MSG_RESULT($video_opengl)
1674 if test x$video_opengl = xyes; then
1675 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1676 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1677 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CM"
1679 AC_MSG_CHECKING(for QNX OpenGL ES (CL) support)
1683 #include <GLES/egl.h>
1688 AC_MSG_RESULT($video_opengl)
1689 if test x$video_opengl = xyes; then
1690 AC_DEFINE(SDL_VIDEO_OPENGL_ES)
1691 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES)
1692 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CLS"
1699 dnl Check for Win32 OpenGL
1702 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1703 AC_DEFINE(SDL_VIDEO_OPENGL)
1704 AC_DEFINE(SDL_VIDEO_OPENGL_WGL)
1705 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1709 dnl Check for BeOS OpenGL
1712 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1713 AC_DEFINE(SDL_VIDEO_OPENGL)
1714 AC_DEFINE(SDL_VIDEO_OPENGL_BGL)
1715 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1716 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
1720 dnl Check for MacOS OpenGL
1723 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
1724 AC_DEFINE(SDL_VIDEO_OPENGL)
1725 AC_DEFINE(SDL_VIDEO_OPENGL_CGL)
1726 AC_DEFINE(SDL_VIDEO_RENDER_OGL)
1729 if test x$enable_video_cocoa = xyes; then
1730 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL"
1736 dnl See if we can use the new unified event interface in Linux 2.4
1739 dnl Check for Linux 2.4 unified input event interface support
1740 AC_ARG_ENABLE(input-events,
1741 AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [[default=yes]]]),
1742 , enable_input_events=yes)
1743 if test x$enable_input_events = xyes; then
1744 AC_MSG_CHECKING(for Linux 2.4 unified input interface)
1747 #include <linux/input.h>
1750 #error EVIOCGNAME() ioctl not available
1753 use_input_events=yes
1755 AC_MSG_RESULT($use_input_events)
1756 if test x$use_input_events = xyes; then
1757 AC_DEFINE(SDL_INPUT_LINUXEV)
1762 dnl See if we can use the Touchscreen input library
1765 AC_ARG_ENABLE(input-tslib,
1766 AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
1767 , enable_input_tslib=yes)
1768 if test x$enable_input_tslib = xyes; then
1769 AC_MSG_CHECKING(for Touchscreen library support)
1770 enable_input_tslib=no
1775 enable_input_tslib=yes
1777 AC_MSG_RESULT($enable_input_tslib)
1778 if test x$enable_input_tslib = xyes; then
1779 AC_DEFINE(SDL_INPUT_TSLIB)
1780 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
1785 dnl See what type of thread model to use on Linux and Solaris
1788 dnl Check for pthread support
1789 AC_ARG_ENABLE(pthreads,
1790 AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
1791 , enable_pthreads=yes)
1792 dnl This is used on Linux for glibc binary compatibility (Doh!)
1793 AC_ARG_ENABLE(pthread-sem,
1794 AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
1795 , enable_pthread_sem=yes)
1797 *-*-linux*|*-*-uclinux*)
1798 pthread_cflags="-D_REENTRANT"
1799 pthread_lib="-lpthread"
1802 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1806 pthread_cflags="-D_THREAD_SAFE"
1807 # causes Carbon.p complaints?
1808 # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1810 *-*-freebsd*|*-*-dragonfly*)
1811 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1812 pthread_lib="-pthread"
1815 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
1816 pthread_lib="-lpthread"
1819 pthread_cflags="-D_REENTRANT"
1820 pthread_lib="-pthread"
1823 pthread_cflags="-D_REENTRANT"
1824 pthread_lib="-lpthread -lposix4"
1827 pthread_cflags="-D_REENTRANT -Kthread"
1831 pthread_cflags="-D_SGI_MP_SOURCE"
1832 pthread_lib="-lpthread"
1835 pthread_cflags="-D_REENTRANT -mthreads"
1836 pthread_lib="-lpthread"
1839 pthread_cflags="-D_REENTRANT"
1840 pthread_lib="-L/usr/lib -lpthread"
1847 pthread_cflags="-D_REENTRANT"
1848 if test x$ac_cv_prog_gcc = xyes; then
1849 pthread_lib="-lpthread -lrt"
1851 pthread_lib="-lpthread -lexc -lrt"
1855 pthread_cflags="-D_REENTRANT"
1856 pthread_lib="-lpthread"
1859 if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
1860 # Save the original compiler flags and libraries
1861 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
1862 # Add the pthread compiler flags and libraries
1863 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
1864 # Check to see if we have pthread support on this system
1865 AC_MSG_CHECKING(for pthreads)
1868 #include <pthread.h>
1870 pthread_attr_t type;
1871 pthread_attr_init(&type);
1875 AC_MSG_RESULT($use_pthreads)
1876 # Restore the compiler flags and libraries
1877 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1879 # Do futher testing if we have pthread support...
1880 if test x$use_pthreads = xyes; then
1881 AC_DEFINE(SDL_THREAD_PTHREAD)
1882 EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
1883 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
1884 SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
1885 SDL_LIBS="$SDL_LIBS $pthread_lib"
1887 # Save the original compiler flags and libraries
1888 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
1889 # Add the pthread compiler flags and libraries
1890 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
1892 # Check to see if recursive mutexes are available
1893 AC_MSG_CHECKING(for recursive mutexes)
1894 has_recursive_mutexes=no
1895 if test x$has_recursive_mutexes = xno; then
1897 #include <pthread.h>
1899 pthread_mutexattr_t attr;
1900 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1902 has_recursive_mutexes=yes
1903 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX)
1906 if test x$has_recursive_mutexes = xno; then
1908 #include <pthread.h>
1910 pthread_mutexattr_t attr;
1911 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
1913 has_recursive_mutexes=yes
1914 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP)
1917 AC_MSG_RESULT($has_recursive_mutexes)
1919 # Check to see if pthread semaphore support is missing
1920 if test x$enable_pthread_sem = xyes; then
1921 AC_MSG_CHECKING(for pthread semaphores)
1924 #include <pthread.h>
1925 #include <semaphore.h>
1928 have_pthread_sem=yes
1930 AC_MSG_RESULT($have_pthread_sem)
1933 # Restore the compiler flags and libraries
1934 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
1936 # Basic thread creation functions
1937 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
1940 # We can fake these with mutexes and condition variables if necessary
1941 if test x$have_pthread_sem = xyes; then
1942 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
1944 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
1948 # We can fake these with semaphores if necessary
1949 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
1951 # Condition variables
1952 # We can fake these with semaphores and mutexes if necessary
1953 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
1960 dnl Determine whether the compiler can produce Win32 executables
1963 AC_MSG_CHECKING(Win32 compiler)
1966 #include <windows.h>
1971 AC_MSG_RESULT($have_win32_gcc)
1972 if test x$have_win32_gcc != xyes; then
1974 *** Your compiler ($CC) does not produce Win32 executables!
1978 AC_MSG_CHECKING(Windows CE)
1982 #error This is not Windows CE
1988 AC_MSG_RESULT($have_wince)
1990 dnl See if the user wants to redirect standard output to files
1991 AC_ARG_ENABLE(stdio-redirect,
1992 AC_HELP_STRING([--enable-stdio-redirect], [Redirect STDIO to files on Win32 [[default=yes]]]),
1993 , enable_stdio_redirect=yes)
1994 if test x$enable_stdio_redirect != xyes; then
1995 EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_STDIO_REDIRECT"
1999 dnl Find the DirectX includes and libraries
2002 AC_ARG_ENABLE(directx,
2003 AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default=yes]]]),
2004 , enable_directx=yes)
2005 if test x$enable_directx = xyes; then
2006 AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
2007 AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
2008 AC_CHECK_HEADER(dsound.h, have_dsound=yes)
2009 AC_CHECK_HEADER(dinput.h, have_dinput=yes)
2013 dnl Check for the dlfcn.h interface for dynamically loading objects
2016 AC_ARG_ENABLE(sdl-dlopen,
2017 AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
2018 , enable_sdl_dlopen=yes)
2019 if test x$enable_sdl_dlopen = xyes; then
2020 AC_MSG_CHECKING(for dlopen)
2025 #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED <= 1020
2026 #error Use dlcompat for Mac OS X 10.2 compatibility
2031 AC_MSG_RESULT($have_dlopen)
2033 if test x$have_dlopen = xyes; then
2034 AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
2035 AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
2036 AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
2037 AC_DEFINE(SDL_LOADSO_DLOPEN)
2038 SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
2044 dnl Check for the usbhid(3) library on *BSD
2047 if test x$enable_joystick = xyes; then
2048 AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
2049 if test x$have_libusbhid = xyes; then
2050 AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
2051 AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
2052 USB_LIBS="$USB_LIBS -lusbhid"
2054 AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
2055 AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
2056 AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
2059 save_CFLAGS="$CFLAGS"
2060 CFLAGS="$CFLAGS $USB_CFLAGS"
2062 AC_MSG_CHECKING(for usbhid)
2065 #include <sys/types.h>
2066 #if defined(HAVE_USB_H)
2069 #ifdef __DragonFly__
2070 # include <bus/usb/usb.h>
2071 # include <bus/usb/usbhid.h>
2073 # include <dev/usb/usb.h>
2074 # include <dev/usb/usbhid.h>
2076 #if defined(HAVE_USBHID_H)
2078 #elif defined(HAVE_LIBUSB_H)
2080 #elif defined(HAVE_LIBUSBHID_H)
2081 #include <libusbhid.h>
2084 struct report_desc *repdesc;
2085 struct usb_ctl_report *repbuf;
2090 AC_MSG_RESULT($have_usbhid)
2092 if test x$have_usbhid = xyes; then
2093 AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
2094 have_usbhid_ucr_data=no
2096 #include <sys/types.h>
2097 #if defined(HAVE_USB_H)
2100 #ifdef __DragonFly__
2101 # include <bus/usb/usb.h>
2102 # include <bus/usb/usbhid.h>
2104 # include <dev/usb/usb.h>
2105 # include <dev/usb/usbhid.h>
2107 #if defined(HAVE_USBHID_H)
2109 #elif defined(HAVE_LIBUSB_H)
2111 #elif defined(HAVE_LIBUSBHID_H)
2112 #include <libusbhid.h>
2115 struct usb_ctl_report buf;
2116 if (buf.ucr_data) { }
2118 have_usbhid_ucr_data=yes
2120 if test x$have_usbhid_ucr_data = xyes; then
2121 USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
2123 AC_MSG_RESULT($have_usbhid_ucr_data)
2125 AC_MSG_CHECKING(for new usbhid API)
2128 #include <sys/types.h>
2129 #if defined(HAVE_USB_H)
2132 #ifdef __DragonFly__
2133 #include <bus/usb/usb.h>
2134 #include <bus/usb/usbhid.h>
2136 #include <dev/usb/usb.h>
2137 #include <dev/usb/usbhid.h>
2139 #if defined(HAVE_USBHID_H)
2141 #elif defined(HAVE_LIBUSB_H)
2143 #elif defined(HAVE_LIBUSBHID_H)
2144 #include <libusbhid.h>
2148 hid_start_parse(d, 1, 1);
2152 if test x$have_usbhid_new = xyes; then
2153 USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
2155 AC_MSG_RESULT($have_usbhid_new)
2157 AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
2158 have_machine_joystick=no
2160 #include <machine/joystick.h>
2164 have_machine_joystick=yes
2166 if test x$have_machine_joystick = xyes; then
2167 AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H)
2169 AC_MSG_RESULT($have_machine_joystick)
2171 AC_DEFINE(SDL_JOYSTICK_USBHID)
2172 SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
2173 EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
2174 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
2177 CFLAGS="$save_CFLAGS"
2181 dnl Check for clock_gettime()
2184 AC_ARG_ENABLE(clock_gettime,
2185 AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=no]]]),
2186 , enable_clock_gettime=no)
2187 if test x$enable_clock_gettime = xyes; then
2188 AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
2189 if test x$have_clock_gettime = xyes; then
2190 AC_DEFINE(HAVE_CLOCK_GETTIME)
2191 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
2193 AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
2194 if test x$have_clock_gettime = xyes; then
2195 AC_DEFINE(HAVE_CLOCK_GETTIME)
2196 EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
2202 dnl Check for a valid linux/version.h
2205 AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
2206 if test x$have_linux_version_h = xyes; then
2207 EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
2211 dnl Check if we want to use RPATH
2214 AC_ARG_ENABLE(rpath,
2215 AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
2219 dnl Set up the configuration based on the host platform!
2221 *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-irix*|*-*-aix*|*-*-osf*|*-*-minix*)
2223 *-*-linux*) ARCH=linux ;;
2224 *-*-uclinux*) ARCH=linux ;;
2225 *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
2226 *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
2227 *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
2228 *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
2229 *-*-bsdi*) ARCH=bsdi ;;
2230 *-*-freebsd*) ARCH=freebsd ;;
2231 *-*-dragonfly*) ARCH=freebsd ;;
2232 *-*-netbsd*) ARCH=netbsd ;;
2233 *-*-openbsd*) ARCH=openbsd ;;
2234 *-*-sysv5*) ARCH=sysv5 ;;
2235 *-*-solaris*) ARCH=solaris ;;
2236 *-*-hpux*) ARCH=hpux ;;
2237 *-*-irix*) ARCH=irix ;;
2238 *-*-aix*) ARCH=aix ;;
2239 *-*-osf*) ARCH=osf ;;
2240 *-*-minix*) ARCH=minix ;;
2242 CheckVisibilityHidden
2269 # Set up files for the audio library
2270 if test x$enable_audio = xyes; then
2273 AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO)
2274 SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
2278 AC_DEFINE(SDL_AUDIO_DRIVER_BSD)
2279 SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c"
2283 AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO)
2284 SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
2289 # Set up files for the atomic operations library
2290 if test x$enable_atomic = xyes; then
2293 AC_DEFINE(SDL_ATOMIC_LINUX)
2294 SOURCES="$SOURCES $srcdir/src/atomic/linux/*.c"
2299 # Set up files for the joystick library
2300 if test x$enable_joystick = xyes; then
2303 AC_DEFINE(SDL_JOYSTICK_LINUX)
2304 SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
2309 # Set up files for the haptic library
2310 if test x$enable_haptic = xyes; then
2311 if test x$use_input_events = xyes; then
2314 AC_DEFINE(SDL_HAPTIC_LINUX)
2315 SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
2321 # Set up files for the power library
2322 if test x$enable_power = xyes; then
2325 AC_DEFINE(SDL_POWER_LINUX)
2326 SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
2331 # Set up files for the thread library
2332 if test x$enable_threads = xyes -a x$use_pthreads != xyes -a x$use_pth != xyes -a x$ARCH = xirix; then
2333 AC_DEFINE(SDL_THREAD_SPROC)
2334 SOURCES="$SOURCES $srcdir/src/thread/irix/*.c"
2335 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2336 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2339 # Set up files for the timer library
2340 if test x$enable_timers = xyes; then
2341 AC_DEFINE(SDL_TIMER_UNIX)
2342 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2348 EXTRA_CFLAGS="-I/usr/include $CFLAGS"
2349 EXTRA_LDLAGS="-L/usr/lib $LDFLAGS"
2352 CheckVisibilityHidden
2368 # Set up files for the audio library
2369 if test x$enable_audio = xyes; then
2370 AC_DEFINE(SDL_AUDIO_DRIVER_QSA)
2371 SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
2372 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
2375 # Set up files for the timer library
2376 if test x$enable_timers = xyes; then
2377 AC_DEFINE(SDL_TIMER_UNIX)
2378 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2381 # Setup files for the atomic operations
2382 if test x$enable_atomic = xyes; then
2383 AC_DEFINE(SDL_ATOMIC_QNX)
2384 SOURCES="$SOURCES $srcdir/src/atomic/qnx/*.c"
2387 # Set up dummy files for the joystick for now
2388 if test x$enable_joystick = xyes; then
2389 AC_DEFINE(SDL_JOYSTICK_DUMMY)
2390 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2393 # Set up dummy files for the haptic for now
2394 if test x$enable_haptic = xyes; then
2395 AC_DEFINE(SDL_HAPTIC_DUMMY)
2396 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2400 *-wince* | *-mingw32ce)
2406 if test x$enable_video = xyes; then
2407 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2408 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2410 AC_ARG_ENABLE(render-gdi,
2411 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2412 , enable_render_gdi=yes)
2413 if test x$enable_render_gdi = xyes; then
2414 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2416 AC_ARG_ENABLE(render-gapi,
2417 AC_HELP_STRING([--enable-render-gapi], [enable the GAPI/RAWFRAMEBUFFER render driver [[default=yes]]]),
2418 , enable_render_gapi=yes)
2419 if test x$enable_render_gapi = xyes -a x$have_wince = xyes; then
2420 AC_DEFINE(SDL_VIDEO_RENDER_GAPI)
2422 AC_ARG_ENABLE(render-ddraw,
2423 AC_HELP_STRING([--enable-render-ddraw], [enable the Mobile DirectDraw render driver [[default=yes]]]),
2424 , enable_render_ddraw=yes)
2425 if test x$enable_render_ddraw = xyes -a x$have_wince = xyes -a x$have_ddraw = xyes; then
2426 AC_DEFINE(SDL_VIDEO_RENDER_DDRAW)
2428 AC_ARG_ENABLE(render-d3d,
2429 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2430 , enable_render_d3d=yes)
2431 enable_render_d3d=no
2432 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2433 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2436 # Set up files for the audio library
2437 if test x$enable_audio = xyes; then
2438 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2439 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2440 if test x$have_dsound = xyes; then
2441 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2442 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2446 # Set up files for the atomic operations library
2447 if test x$enable_atomic = xyes; then
2448 AC_DEFINE(SDL_ATOMIC_WIN32)
2449 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c"
2452 # Set up files for the thread library
2453 if test x$enable_threads = xyes; then
2454 AC_DEFINE(SDL_THREAD_WIN32)
2455 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2456 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2457 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2458 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2461 # Set up files for the timer library
2462 if test x$enable_timers = xyes; then
2463 AC_DEFINE(SDL_TIMER_WINCE)
2464 SOURCES="$SOURCES $srcdir/src/timer/wince/*.c"
2467 # Set up files for the shared object loading library
2468 if test x$enable_loadso = xyes; then
2469 AC_DEFINE(SDL_LOADSO_WIN32)
2470 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2473 # Set up the system libraries we need
2474 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lcommctrl -lmmtimer"
2475 # The Win32 platform requires special setup
2476 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2477 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main -D_WIN32_WCE=0x420"
2478 SDL_LIBS="-lSDLmain $SDL_LIBS"
2480 *-*-cygwin* | *-*-mingw32*)
2482 if test "$build" != "$host"; then # cross-compiling
2483 # Default cross-compile location
2484 ac_default_prefix=/usr/local/cross-tools/i386-mingw32
2486 # Look for the location of the tools and install there
2487 if test "$BUILD_PREFIX" != ""; then
2488 ac_default_prefix=$BUILD_PREFIX
2497 # Set up files for the video library
2498 if test x$enable_video = xyes; then
2499 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
2500 SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
2502 AC_ARG_ENABLE(render-gdi,
2503 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
2504 , enable_render_gdi=yes)
2505 if test x$enable_render_gdi = xyes; then
2506 AC_DEFINE(SDL_VIDEO_RENDER_GDI)
2508 AC_ARG_ENABLE(render-d3d,
2509 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
2510 , enable_render_d3d=yes)
2511 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
2512 AC_DEFINE(SDL_VIDEO_RENDER_D3D)
2515 # Set up files for the audio library
2516 if test x$enable_audio = xyes; then
2517 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
2518 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
2519 if test x$have_dsound = xyes; then
2520 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
2521 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
2525 # Set up files for the atomic operations library
2526 if test x$enable_atomic = xyes; then
2527 AC_DEFINE(SDL_ATOMIC_WIN32)
2528 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c"
2531 # Set up files for the joystick library
2532 if test x$enable_joystick = xyes; then
2533 if test x$have_dinput = xyes; then
2534 AC_DEFINE(SDL_JOYSTICK_DINPUT)
2535 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_dxjoystick.c"
2536 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8 -lole32"
2538 AC_DEFINE(SDL_JOYSTICK_WINMM)
2539 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_mmjoystick.c"
2543 if test x$enable_haptic = xyes; then
2544 if test x$have_dinput = xyes; then
2545 AC_DEFINE(SDL_HAPTIC_DINPUT)
2546 SOURCES="$SOURCES $srcdir/src/haptic/win32/SDL_syshaptic.c"
2550 if test x$enable_power = xyes; then
2551 AC_DEFINE(SDL_POWER_WINDOWS)
2552 SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
2555 # Set up files for the thread library
2556 if test x$enable_threads = xyes; then
2557 AC_DEFINE(SDL_THREAD_WIN32)
2558 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
2559 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
2560 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
2561 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2564 # Set up files for the timer library
2565 if test x$enable_timers = xyes; then
2566 AC_DEFINE(SDL_TIMER_WIN32)
2567 SOURCES="$SOURCES $srcdir/src/timer/win32/*.c"
2570 # Set up files for the shared object loading library
2571 if test x$enable_loadso = xyes; then
2572 AC_DEFINE(SDL_LOADSO_WIN32)
2573 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
2576 # Set up the system libraries we need
2577 # SDL 1.3 is unicode, and unicows emulates this on Windows 98/ME
2578 # You can get this here: http://libunicows.sourceforge.net/
2579 #EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows"
2580 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lmsimg32 -lwinmm"
2581 # The Win32 platform requires special setup
2582 VERSION_SOURCES="$srcdir/src/main/win32/*.rc"
2583 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
2584 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
2585 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows"
2587 *-*-beos* | *-*-haiku*)
2589 ac_default_prefix=/boot/develop/tools/gnupro
2595 # Set up files for the audio library
2596 if test x$enable_audio = xyes; then
2597 AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO)
2598 SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc"
2601 # Set up files for the joystick library
2602 if test x$enable_joystick = xyes; then
2603 AC_DEFINE(SDL_JOYSTICK_BEOS)
2604 SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc"
2607 # Set up files for the thread library
2608 if test x$enable_threads = xyes; then
2609 AC_DEFINE(SDL_THREAD_BEOS)
2610 SOURCES="$SOURCES $srcdir/src/thread/beos/*.c"
2611 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
2612 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
2615 # Set up files for the timer library
2616 if test x$enable_timers = xyes; then
2617 AC_DEFINE(SDL_TIMER_BEOS)
2618 SOURCES="$SOURCES $srcdir/src/timer/beos/*.c"
2621 # Set up files for the shared object loading library
2622 if test x$enable_loadso = xyes; then
2623 AC_DEFINE(SDL_LOADSO_BEOS)
2624 SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c"
2627 # Set up files for the system power library
2628 if test x$enable_power = xyes; then
2629 AC_DEFINE(SDL_POWER_BEOS)
2630 SOURCES="$SOURCES $srcdir/src/power/beos/*.c"
2633 # The BeOS platform requires special setup.
2634 SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
2635 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
2638 # This could be either full "Mac OS X", or plain "Darwin" which is
2639 # just the OS X kernel sans upper layers like Carbon and Cocoa.
2640 # Next line is broken, and a few files below require Mac OS X (full)
2643 # Mac OS X builds with both the Carbon and OSX APIs at the moment
2644 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
2645 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
2647 # HACK: Reset EXTRA_LDFLAGS; the only thing it contains at this point
2648 # is -lm which is not needed under Mac OS X. But for some reasons it
2649 # also tends to contain spurious -L switches, which we don't want to
2650 # use here or in sdl-config. Hence we reset it.
2653 CheckVisibilityHidden
2659 # Set up files for the shared object loading library
2660 # (this needs to be done before the dynamic X11 check)
2661 if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then
2662 AC_DEFINE(SDL_LOADSO_DLCOMPAT)
2663 SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c"
2673 # Good optimization on Mac OS X, yes...
2674 EXTRA_CFLAGS="$EXTRA_CFLAGS -falign-loops=16"
2676 # Need this or things might misbuild on a G3.
2677 EXTRA_CFLAGS="$EXTRA_CFLAGS -force_cpusubtype_ALL"
2679 # Set up files for the audio library
2680 if test x$enable_audio = xyes; then
2681 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO)
2682 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c"
2685 # Set up files for the atomic operations library
2686 if test x$enable_atomic = xyes; then
2687 AC_DEFINE(SDL_ATOMIC_MACOSX)
2688 SOURCES="$SOURCES $srcdir/src/atomic/macosx/*.c"
2691 # Set up files for the joystick library
2692 if test x$enable_joystick = xyes; then
2693 AC_DEFINE(SDL_JOYSTICK_IOKIT)
2694 SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
2697 # Set up files for the haptic library
2698 if test x$enable_haptic = xyes; then
2699 AC_DEFINE(SDL_HAPTIC_IOKIT)
2700 SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
2702 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
2704 # Set up files for the power library
2705 if test x$enable_power = xyes; then
2706 AC_DEFINE(SDL_POWER_MACOSX)
2707 SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
2710 # Set up files for the timer library
2711 if test x$enable_timers = xyes; then
2712 AC_DEFINE(SDL_TIMER_UNIX)
2713 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
2716 # Set up additional files for the file library
2717 if test x$enable_file = xyes; then
2718 SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
2720 # The Mac OS X platform requires special setup.
2721 EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
2722 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
2723 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
2724 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
2725 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
2726 # If audio is used, add the AudioUnit framework
2727 if test x$enable_audio = xyes; then
2728 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit"
2735 # Set up files for the video library
2736 if test x$enable_video = xyes; then
2737 AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS)
2738 SOURCES="$SOURCES $srcdir/src/video/riscos/*.c"
2739 SOURCES="$SOURCES $srcdir/src/video/riscos/*.S"
2742 # Set up files for the joystick library
2743 if test x$enable_joystick = xyes; then
2744 AC_DEFINE(SDL_JOYSTICK_RISCOS)
2745 SOURCES="$SOURCES $srcdir/src/joystick/riscos/*.c"
2748 # Set up files for the timer library
2749 if test x$enable_timers = xyes; then
2750 AC_DEFINE(SDL_TIMER_RISCOS)
2751 SOURCES="$SOURCES $srcdir/src/timer/riscos/*.c"
2754 # The RISC OS platform requires special setup.
2755 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ljpeg -ltiff -lpng -lz"
2759 *** Unsupported host: Please add to configure.in
2764 # Verify that we have all the platform specific files we need
2766 if test x$have_joystick != xyes; then
2767 if test x$enable_joystick = xyes; then
2768 AC_DEFINE(SDL_JOYSTICK_DISABLED)
2770 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
2772 if test x$have_haptic != xyes; then
2773 if test x$enable_haptic = xyes; then
2774 AC_DEFINE(SDL_HAPTIC_DISABLED)
2776 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
2778 if test x$have_threads != xyes; then
2779 if test x$enable_threads = xyes; then
2780 AC_DEFINE(SDL_THREADS_DISABLED)
2782 SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
2784 if test x$have_timers != xyes; then
2785 if test x$enable_timers = xyes; then
2786 AC_DEFINE(SDL_TIMERS_DISABLED)
2788 SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
2790 if test x$have_loadso != xyes; then
2791 if test x$enable_loadso = xyes; then
2792 AC_DEFINE(SDL_LOADSO_DISABLED)
2794 SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
2796 if test x$SDLMAIN_SOURCES = x; then
2797 SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
2800 OBJECTS=`echo $SOURCES`
2801 DEPENDS=`echo $SOURCES`
2802 for EXT in asm cc m c S; do
2803 OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
2804 DEPENDS=`echo "$DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT,\\\\
2805 \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\
2806 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2809 VERSION_OBJECTS=`echo $VERSION_SOURCES`
2810 VERSION_DEPENDS=`echo $VERSION_SOURCES`
2811 VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
2812 VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
2813 \\$(objects)/\\2.o: \\1/\\2.rc\\\\
2814 \\$(WINDRES) \\$< \\$@,g"`
2816 SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
2817 SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
2818 SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
2819 SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
2820 \\$(objects)/\\2.o: \\1/\\2.c\\\\
2821 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
2823 # Set runtime shared library paths as needed
2825 if test "x$enable_rpath" = "xyes"; then
2826 if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then
2827 SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
2829 if test $ARCH = solaris; then
2830 SDL_RLD_FLAGS="-R\${libdir}"
2838 # Evil hack to allow static linking on Mac OS X
2839 SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS"
2842 SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS"
2846 dnl Expand the cflags and libraries needed by apps using SDL
2847 AC_SUBST(SDL_CFLAGS)
2849 AC_SUBST(SDL_STATIC_LIBS)
2850 AC_SUBST(SDL_RLD_FLAGS)
2851 if test x$enable_shared = xyes; then
2853 ENABLE_SHARED_FALSE="#"
2855 ENABLE_SHARED_TRUE="#"
2856 ENABLE_SHARED_FALSE=
2858 if test x$enable_static = xyes; then
2860 ENABLE_STATIC_FALSE="#"
2862 ENABLE_STATIC_TRUE="#"
2863 ENABLE_STATIC_FALSE=
2865 AC_SUBST(ENABLE_SHARED_TRUE)
2866 AC_SUBST(ENABLE_SHARED_FALSE)
2867 AC_SUBST(ENABLE_STATIC_TRUE)
2868 AC_SUBST(ENABLE_STATIC_FALSE)
2870 dnl Expand the sources and objects needed to build the library
2871 AC_SUBST(ac_aux_dir)
2875 AC_SUBST(VERSION_OBJECTS)
2876 AC_SUBST(VERSION_DEPENDS)
2877 AC_SUBST(SDLMAIN_OBJECTS)
2878 AC_SUBST(SDLMAIN_DEPENDS)
2879 AC_SUBST(BUILD_CFLAGS)
2880 AC_SUBST(EXTRA_CFLAGS)
2881 AC_SUBST(BUILD_LDFLAGS)
2882 AC_SUBST(EXTRA_LDFLAGS)
2886 Makefile sdl-config SDL.spec sdl.pc