]> git.sesse.net Git - vlc/commitdiff
Disable OSS support on OpenBSD
authorBrad Smith <brad@comstyle.com>
Mon, 30 Jan 2012 17:52:47 +0000 (12:52 -0500)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 30 Jan 2012 18:00:14 +0000 (20:00 +0200)
Disable the OSS support on OpenBSD by default.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
configure.ac

index d21631ecab3c52fcdff5ce1839d34792b83eb0d9..e57d05961a4d92d75a22229a5b753aa6d3f2ed76 100644 (file)
@@ -3402,8 +3402,8 @@ dnl  Open Sound System module
 dnl
 AC_ARG_ENABLE(oss,
   [AS_HELP_STRING([--enable-oss],
-    [support the Open Sound System OSS (default enabled on BSD)])],, [
-  AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux"], [
+    [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
+  AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
     enable_oss="no"
   ])
 ])