[vlc-commits] configure: remove some unused HAVE_*_H macros
Rémi Denis-Courmont
git at videolan.org
Sun Sep 22 15:04:44 CEST 2013
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Sep 22 16:00:00 2013 +0300| [1036a0be2d229d81d938dab4c8dc1b02e9c22c79] | committer: Rémi Denis-Courmont
configure: remove some unused HAVE_*_H macros
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1036a0be2d229d81d938dab4c8dc1b02e9c22c79
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index dee83e1..c949089 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3575,7 +3575,7 @@ AC_ARG_ENABLE(macosx-audio,
if test "x${enable_macosx_audio}" != "xno" &&
(test "${SYS}" = "darwin" || test "${enable_macosx_audio}" = "yes")
then
- AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
+ AC_CHECK_HEADER([CoreAudio/CoreAudio.h],
[ VLC_ADD_PLUGIN([auhal])
VLC_ADD_LIBS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,CoreServices])
], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
@@ -3588,7 +3588,7 @@ AC_ARG_ENABLE(ios-audio,
[ --enable-ios-audio Audio module for iOS (default disabled)])
if test "${enable_ios_audio}" = "yes"
then
- AC_CHECK_HEADERS(AudioUnit/AudioUnit.h,
+ AC_CHECK_HEADER([AudioUnit/AudioUnit.h],
[ VLC_ADD_PLUGIN([audiounit_ios])
VLC_ADD_LIBS([audiounit_ios],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,CoreServices])
], [ AC_MSG_ERROR([cannot find AudioUnit headers]) ])
More information about the vlc-commits
mailing list