comparison configure.in @ 4184:ed5913896653 SDL-1.2

Disable Sound Manager support on Mac OS X. It's an OS 9 API that was exposed via Carbon, but is gone in the 10.6 SDK. OS X uses CoreAudio. We only had it in here for debugging purposes anyhow, as SDL would never use it unless forced to with an environment variable. It remains in SDL for OS 9, of course.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 12 Sep 2009 12:50:25 +0000
parents a6f635e5eaa6
children cb2d5514efb3
comparison
equal deleted inserted replaced
4183:39e748f251c6 4184:ed5913896653
2624 2624
2625 # Set up files for the audio library 2625 # Set up files for the audio library
2626 if test x$enable_audio = xyes; then 2626 if test x$enable_audio = xyes; then
2627 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO) 2627 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO)
2628 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" 2628 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c"
2629 AC_DEFINE(SDL_AUDIO_DRIVER_SNDMGR)
2630 SOURCES="$SOURCES $srcdir/src/audio/macrom/*.c"
2631 have_audio=yes 2629 have_audio=yes
2632 fi 2630 fi
2633 # Set up files for the joystick library 2631 # Set up files for the joystick library
2634 if test x$enable_joystick = xyes; then 2632 if test x$enable_joystick = xyes; then
2635 AC_DEFINE(SDL_JOYSTICK_IOKIT) 2633 AC_DEFINE(SDL_JOYSTICK_IOKIT)