[vlc-commits] configure: gather skins2 checks

Rémi Denis-Courmont git at videolan.org
Tue Feb 15 18:20:42 CET 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 15 18:24:27 2011 +0200| [7e8de34f6a2a57336414e8ddc37c97ee0dd18b95] | committer: Rémi Denis-Courmont

configure: gather skins2 checks

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

 configure.ac |   20 ++++++++------------
 1 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/configure.ac b/configure.ac
index 77b746a..ddcba5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2830,18 +2830,6 @@ if test "${enable_realrtsp}" = "yes"; then
 fi
 
 dnl
-dnl skins2 module
-dnl
-AC_ARG_ENABLE(libtar,
-  [  --enable-libtar         libtar support for skins2 (default enabled)])
-
-AS_IF([test "${enable_libtar}" != "no"],[
-  AC_CHECK_HEADERS(libtar.h, [
-    VLC_ADD_LIBS([skins2],[-ltar])
-  ] )
-])
-
-dnl
 dnl A52/AC3 decoder plugin
 dnl
 AC_ARG_ENABLE(a52,
@@ -3695,6 +3683,14 @@ EXTEND_HELP_STRING([Interface plugins:])
 dnl
 dnl Skins2 module
 dnl
+AC_ARG_ENABLE(libtar,
+  [  --enable-libtar         libtar support for skins2 (default auto)])
+AS_IF([test "${enable_libtar}" != "no"], [
+  AC_CHECK_HEADERS(libtar.h, [
+    VLC_ADD_LIBS([skins2],[-ltar])
+  ])
+])
+
 AC_ARG_ENABLE(skins2,
   [AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default
    enabled except on MacOSX and WinCE)])])



More information about the vlc-commits mailing list