]> git.sesse.net Git - vlc/commitdiff
-Added dsp plugin compilation (/dev/dsp is not a regular file :))
authorStéphane Borel <stef@videolan.org>
Sat, 17 Mar 2001 22:52:00 +0000 (22:52 +0000)
committerStéphane Borel <stef@videolan.org>
Sat, 17 Mar 2001 22:52:00 +0000 (22:52 +0000)
configure
configure.in

index a08d9438a3b5e6c06a6da8295381767bbe8c60f5..2262935cdf2b137e17815c1fa05aad03d3e21fc2 100755 (executable)
--- a/configure
+++ b/configure
@@ -3464,7 +3464,7 @@ if test "${enable_dsp+set}" = set; then
 fi
 
 if test x$enable_dsp != xno; then
-  if test -f /dev/dsp; then
+  if test -c /dev/dsp; then
     PLUGINS=${PLUGINS}"dsp "
   fi
 fi
index 6a95ce99ae29de3ad52f4137c9537fd828fd2898..476fcad4447bf001535495a5d63cbe0685358655 100644 (file)
@@ -158,7 +158,7 @@ if test x$enable_null != xno; then PLUGINS=${PLUGINS}"null "; fi
 AC_ARG_ENABLE(dsp,
   [  --disable-dsp           Linux /dev/dsp support (default enabled)])
 if test x$enable_dsp != xno; then
-  if test -f /dev/dsp; then
+  if test -c /dev/dsp; then
     PLUGINS=${PLUGINS}"dsp "
   fi
 fi