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
1c5f8330
Commit
1c5f8330
authored
Feb 20, 2001
by
Sam Hocevar
Browse files
* Fixed a bash-ism in configure.in
parent
083ddb2c
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
configure
View file @
1c5f8330
This diff is collapsed.
Click to expand it.
configure.in
View file @
1c5f8330
...
...
@@ -175,7 +175,7 @@ AC_ARG_WITH(sdl,
else
LIB_SDL="-L/usr/X11R6/lib -lSDL"
fi ])
if test "x$withval" =
=
"x";
if test "x$withval" = "x";
then
PLUGINS=${PLUGINS}"sdl "
LIB_SDL="-L/usr/X11R6/lib -lSDL"
...
...
@@ -192,10 +192,13 @@ AC_ARG_WITH(glide,
AC_ARG_ENABLE(ncurses,
[ --enable-ncurses ncurses interface support (default disabled)],
[if test x$enable_ncurses = xyes; then PLUGINS=${PLUGINS}"ncurses "; fi])
AC_ARG_ENABLE(kde,
[ --enable-kde KDE interface support (default disabled)],
[if test x$enable_kde = xyes; then PLUGINS=${PLUGINS}"kde "; ALIASE=${ALIASES}"kvlc"; fi])
AC_ARG_ENABLE(gnome,
[ --disable-gnome Gnome support (default enabled)])
if test x$enable_gnome != xno; then PLUGINS=${PLUGINS}"gnome "; ALIASES=${ALIASES}"gvlc "; fi
AC_ARG_ENABLE(
gnome
,
AC_ARG_ENABLE(
x11
,
[ --disable-x11 X11 support (default enabled)])
if test x$enable_x11 != xno; then PLUGINS=${PLUGINS}"x11 "; 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