[vlc-commits] commit: Configure: actually do what the help says it does ( Jean-Baptiste Kempf )

git at videolan.org git at videolan.org
Sat Oct 23 01:33:16 CEST 2010


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Oct 23 01:32:03 2010 +0200| [c403dc6569d7ae1ea06ceaae317d4e986b0f0fb1] | committer: Jean-Baptiste Kempf 

Configure: actually do what the help says it does

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c403dc6569d7ae1ea06ceaae317d4e986b0f0fb1
---

 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index c876727..292e3ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3664,9 +3664,9 @@ dnl
 AC_ARG_ENABLE(skins2,
   [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}" != "no" ||
   (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
-   test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
+   test "${SYS}" != "mingwce" && test "${enable_skins2}" == "yes"); then
 
   dnl test for the required libraries
   skins2_missing_lib="no"



More information about the vlc-commits mailing list