Skip to content

Commit

Permalink
Fixed building new coreaudio driver on Mac OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 15, 2016
1 parent 4209a1f commit 8c01d58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions configure
Expand Up @@ -23453,7 +23453,7 @@ $as_echo "#define SDL_FILESYSTEM_HAIKU 1" >>confdefs.h

# Set up files for the audio library
if test x$enable_audio = xyes; then
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
SUMMARY_audio="${SUMMARY_audio} coreaudio"
have_audio=yes
fi
Expand Down Expand Up @@ -23528,9 +23528,10 @@ $as_echo "#define SDL_FILESYSTEM_HAIKU 1" >>confdefs.h

$as_echo "#define SDL_AUDIO_DRIVER_COREAUDIO 1" >>confdefs.h

SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
SUMMARY_audio="${SUMMARY_audio} coreaudio"
have_audio=yes
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AVFoundation"
fi
# Set up files for the joystick library
if test x$enable_joystick = xyes; then
Expand Down
5 changes: 3 additions & 2 deletions configure.in
Expand Up @@ -3242,7 +3242,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau

# Set up files for the audio library
if test x$enable_audio = xyes; then
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
SUMMARY_audio="${SUMMARY_audio} coreaudio"
have_audio=yes
fi
Expand Down Expand Up @@ -3315,9 +3315,10 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau
# Set up files for the audio library
if test x$enable_audio = xyes; then
AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
SUMMARY_audio="${SUMMARY_audio} coreaudio"
have_audio=yes
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AVFoundation"
fi
# Set up files for the joystick library
if test x$enable_joystick = xyes; then
Expand Down

0 comments on commit 8c01d58

Please sign in to comment.