]> git.sesse.net Git - vlc/commitdiff
Remove useless check for machine/soundcard.h
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 7 May 2009 15:13:19 +0000 (18:13 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 7 May 2009 15:13:19 +0000 (18:13 +0300)
configure.ac
modules/audio_output/oss.c

index cdd23431def57df4a52118a60c0c3202c3095350..7328ccff49d6286cb68b0da7e29ce7113198619c 100644 (file)
@@ -4708,10 +4708,10 @@ if test "${enable_oss}" != "no" &&
   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
    test "${enable_oss}" = "yes")
 then
-  AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
+  AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
     VLC_ADD_PLUGIN([oss])
     VLC_ADD_PLUGIN([access_oss])
-    AC_CHECK_LIB(ossaudio,main,VLC_ADD_LIBS([oss],[-lossaudio]))
+    AC_CHECK_LIB(ossaudio,main,[VLC_ADD_LIBS([oss],[-lossaudio])])
   ])
 fi
 
index 0948e272b448c4a29a7c0ec66d40b418b1e5f9d0..e6154656b84ac97a154c986a5aa9e0bc8df69930 100644 (file)
@@ -51,8 +51,6 @@
 #   include <soundcard.h>
 #elif defined( HAVE_SYS_SOUNDCARD_H )
 #   include <sys/soundcard.h>
-#elif defined( HAVE_MACHINE_SOUNDCARD_H )
-#   include <machine/soundcard.h>
 #endif
 
 /* Patches for ignorant OSS versions */