Commit 7290a1dc authored by Christophe Mutricy's avatar Christophe Mutricy

Fix logic and comment

parent fe8791f0
...@@ -4730,7 +4730,7 @@ dnl ...@@ -4730,7 +4730,7 @@ dnl
dnl UPnP Plugin (Intel SDK) dnl UPnP Plugin (Intel SDK)
dnl dnl
AC_ARG_ENABLE(upnp, AC_ARG_ENABLE(upnp,
[ --enable-upnp Intel UPnP SDK (default enabled)]) [AS_HELP_STRING([--enable-upnp],[Intel UPnP SDK (default enabled)])])
VLC_ADD_CXXFLAGS([upnp_intel], [ ]) VLC_ADD_CXXFLAGS([upnp_intel], [ ])
AS_IF([test "x${enable_upnp}" != "xno"], [ AS_IF([test "x${enable_upnp}" != "xno"], [
...@@ -4766,7 +4766,8 @@ dnl ...@@ -4766,7 +4766,8 @@ dnl
dnl Skins2 module dnl Skins2 module
dnl dnl
AC_ARG_ENABLE(skins2, AC_ARG_ENABLE(skins2,
[ --enable-skins2 Skins2 interface module (default disabled)]) [AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default
enabled except on MacOSX, BeOS and WinCE)])])
if test "${enable_skins2}" = "yes" || if test "${enable_skins2}" = "yes" ||
(test "${SYS}" != "darwin" && test "${SYS}" != "beos" && (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
...@@ -4804,7 +4805,9 @@ if test "${enable_skins2}" = "yes" || ...@@ -4804,7 +4805,9 @@ if test "${enable_skins2}" = "yes" ||
VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11]) VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11])
fi fi fi fi fi fi
fi fi
AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"]) AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes" ||
(test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no")])
dnl dnl
dnl PDA Gtk+2 module dnl PDA Gtk+2 module
......
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