[vlc-devel] commit: Fix build when zip support is disabled (Pierre Ynard )

git version control git at videolan.org
Fri Feb 13 14:15:10 CET 2009


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Fri Feb 13 11:13:29 2009 +0100| [1fac4734ed7694d7a43af8db6b60de86871ed627] | committer: Jean-Baptiste Kempf 

Fix build when zip support is disabled

Move an AM_CONDITIONAL outside an if block

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

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

diff --git a/configure.ac b/configure.ac
index 0f2752d..299beeb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -892,13 +892,13 @@ then
       MINIZIP_LIBS="../../../libs/unzip/libunzip.la"
     ])
   ])
-  AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
   VLC_ADD_CFLAGS([zip],[$MINIZIP_CFLAGS])
   VLC_ADD_LIBS([skins2 zip],[$MINIZIP_LIBS])
   VLC_ADD_PLUGIN([unzip])
   VLC_ADD_PLUGIN([zip])
 fi
+AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
 
 
 dnl Check for hal




More information about the vlc-devel mailing list