From 529a6ee3cc5bf12218e1956a68331741cac0565f Mon Sep 17 00:00:00 2001 Message-Id: <529a6ee3cc5bf12218e1956a68331741cac0565f.1714036541.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 3 Oct 2009 14:15:01 +0100 Subject: [PATCH] Turn off deprecated symbol warnings under OS X. Organization: Straylight/Edgeware From: Richard Kettlewell --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 8b2e278..f9d9b04 100644 --- a/configure.ac +++ b/configure.ac @@ -120,6 +120,9 @@ case "$host" in fi AC_MSG_RESULT([$BITS]) CC="$CC -m$BITS" + # AudioHardwareGetProperty is deprecated in 10.6, but it's still _there_, + # so we'll just turn off the warning. + CC="$CC -Wno-deprecated-declarations" if test $want_coreaudio = yes; then COREAUDIO="-framework CoreFoundation -framework CoreServices -framework CoreAudio" fi -- [mdw]