Commit c403dc65 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Configure: actually do what the help says it does

parent 8c7a6ccd
...@@ -3664,9 +3664,9 @@ dnl ...@@ -3664,9 +3664,9 @@ dnl
AC_ARG_ENABLE(skins2, AC_ARG_ENABLE(skins2,
[AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default [AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default
enabled except on MacOSX, BeOS and WinCE)])]) 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}" != "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 dnl test for the required libraries
skins2_missing_lib="no" skins2_missing_lib="no"
......
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