Commit b16d6fab authored by Stéphane Borel's avatar Stéphane Borel

-Added dsp plugin compilation (/dev/dsp is not a regular file :))

parent 87432971
......@@ -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
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment