mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-11 13:30:02 -05:00
Merge commit 'flameeyes/master'
This commit is contained in:
commit
d8d26979fa
1 changed files with 10 additions and 3 deletions
13
configure.ac
13
configure.ac
|
|
@ -1356,9 +1356,15 @@ if test "x$HAVE_X11" = "x1" ; then
|
||||||
ENABLE_X11=yes
|
ENABLE_X11=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ENABLE_OSS=no
|
ENABLE_OSS_OUTPUT=no
|
||||||
|
ENABLE_OSS_WRAPPER=no
|
||||||
if test "x$HAVE_OSS" = "x1" ; then
|
if test "x$HAVE_OSS" = "x1" ; then
|
||||||
ENABLE_OSS=yes
|
if test "x$enable_oss_output" != "xno"; then
|
||||||
|
ENABLE_OSS_OUTPUT=yes
|
||||||
|
fi
|
||||||
|
if test "x$enable_oss_wrapper" != "xno"; then
|
||||||
|
ENABLE_OSS_WRAPPER=yes
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ENABLE_ALSA=no
|
ENABLE_ALSA=no
|
||||||
|
|
@ -1469,7 +1475,8 @@ echo "
|
||||||
CFLAGS: ${CFLAGS}
|
CFLAGS: ${CFLAGS}
|
||||||
|
|
||||||
Have X11: ${ENABLE_X11}
|
Have X11: ${ENABLE_X11}
|
||||||
Enable OSS: ${ENABLE_OSS}
|
Enable OSS Output: ${ENABLE_OSS_OUTPUT}
|
||||||
|
Enable OSS Wrapper: ${ENABLE_OSS_WRAPPER}
|
||||||
Enable Alsa: ${ENABLE_ALSA}
|
Enable Alsa: ${ENABLE_ALSA}
|
||||||
Enable Solaris: ${ENABLE_SOLARIS}
|
Enable Solaris: ${ENABLE_SOLARIS}
|
||||||
Enable GLib 2.0: ${ENABLE_GLIB20}
|
Enable GLib 2.0: ${ENABLE_GLIB20}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue