Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c2b1baa3
Commit
c2b1baa3
authored
Oct 03, 2004
by
gbazin
Browse files
* configure.ac: alsa is enabled by default.
parent
36b84104
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
c2b1baa3
...
...
@@ -3122,8 +3122,8 @@ dnl
dnl ALSA module
dnl
AC_ARG_ENABLE(alsa,
[ --enable-alsa ALSA sound support for Linux (default
dis
abled)],
[if test "${enable_alsa}" = "
yes
"
[ --enable-alsa ALSA sound support for Linux (default
en
abled)],
[if test "${enable_alsa}"
!
= "
no
"
then
AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
if test "${have_alsa}" = "true"
...
...
@@ -3136,7 +3136,9 @@ AC_ARG_ENABLE(alsa,
VLC_ADD_PLUGINS([alsa])
VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
else
AC_MSG_ERROR([Could not find ALSA development headers])
if test "${enable_alsa}" = "yes"; then
AC_MSG_ERROR([Could not find ALSA development headers])
fi
fi
fi])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment