summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2007-11-30 17:20:32 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:30:50 +0200
commit1e492d19f956d99e3315a3600170d6f1d9869cab (patch)
treea8003e1a6af915f767363c1f3bb8af18cf6c0165 /configure.ac
parent6e71c81158706f7b9bbf8a6e8cbea41beed1aeae (diff)
Various documentation, configuration, and minor naming changes (gps).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 78eb85a..e0fac8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,6 +123,7 @@ case $host in
AC_ARG_WITH(ds, [ --with-ds = choose DirectSound API support (windoze only)], [AC_SUBST( sound_api, [-D__WINDOWS_DS__] ) AC_MSG_RESULT(using DirectSound)], )
if test $sound_api = -D__WINDOWS_DS__; then
audio_apis="-D__WINDOWS_DS__ $audio_apis"
+ LIBS="-ldsound -lwinmm $LIBS"
fi
# If no audio api flags specified, use DirectSound
@@ -130,6 +131,7 @@ case $host in
AC_SUBST( sound_api, [-D__WINDOWS_DS__] )
AC_MSG_RESULT(using DirectSound)
audio_apis="-D__WINDOWS_DS__"
+ LIBS="-ldsound -lwinmm $LIBS"
fi
;;