. correction d'une faute de frappe dans configure.in (�a r�pond � ta

question, Stef ? :)
This commit is contained in:
Sam Hocevar 2000-10-18 02:17:20 +00:00
parent b3daf517e2
commit 3c9727d5d4
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -3088,7 +3088,7 @@ if test x$enable_dsp != xno; then PLUGINS=${PLUGINS}"dsp "; fi
# Check whether --enable-esd or --disable-esd was given.
if test "${enable_esd+set}" = set; then
enableval="$enable_esd"
if test x$enable_gnome = xyes; then PLUGINS=${PLUGINS}"esd "; fi
if test x$enable_esd = xyes; then PLUGINS=${PLUGINS}"esd "; fi
fi
# Check whether --enable-fb or --disable-fb was given.

View File

@ -90,7 +90,7 @@ AC_ARG_ENABLE(dsp,
if test x$enable_dsp != xno; then PLUGINS=${PLUGINS}"dsp "; fi
AC_ARG_ENABLE(esd,
[ --enable-esd Esound library support (default disabled)],
[if test x$enable_gnome = xyes; then PLUGINS=${PLUGINS}"esd "; fi])
[if test x$enable_esd = xyes; then PLUGINS=${PLUGINS}"esd "; fi])
AC_ARG_ENABLE(fb,
[ --enable-fb Linux framebuffer support (default disabled)],
[if test x$enable_fb = xyes; then PLUGINS=${PLUGINS}"fb "; ALIASES=${ALIASES}"fbvlc "; fi])