]> git.sesse.net Git - vlc/commitdiff
Zip: add access/stream_filter to the buildsystem
authorJean-Philippe Andre <jpeg@via.ecp.fr>
Sun, 18 Jan 2009 18:40:27 +0000 (19:40 +0100)
committerJean-Philippe Andre <jpeg@via.ecp.fr>
Tue, 27 Jan 2009 22:09:38 +0000 (23:09 +0100)
configure.ac
modules/access/Modules.am

index 599927b71f89081fece70b2f4faaa47021eb95d3..279442e0dfa36da8c06b5c96c7915edf16caa35d 100644 (file)
@@ -5390,6 +5390,10 @@ AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
 if test "${have_zlib}" = "yes"
 then
   VLC_ADD_PLUGIN([unzip])
+  VLC_ADD_LIBS([zip],[-lz])
+  VLC_ADD_PLUGIN([zip])
+  VLC_ADD_CFLAGS([zip],[-I../../../@top_srcdir@/libs/unzip])
+  VLC_ADD_LIBS([zip],[../../../libs/unzip/libunzip.la])
 fi
 
 
@@ -5887,6 +5891,7 @@ AC_CONFIG_FILES([
   modules/access/vcd/Makefile
   modules/access/vcdx/Makefile
   modules/access/screen/Makefile
+  modules/access/zip/Makefile
   modules/access_output/Makefile
   modules/audio_filter/Makefile
   modules/audio_filter/channel_mixer/Makefile
index 676fedcab4a20f4915a217630d73b1447b4e4b84..17076c11c9c1b16a62d046344a00816419fda19a 100644 (file)
@@ -3,7 +3,7 @@
 # obviously does not. Here is a fix for that.
 LIBTOOL=@LIBTOOL@ --tag=CC
 
-BASE_SUBDIRS = dvb mms cdda rtp rtsp rtmp vcd vcdx screen bd
+BASE_SUBDIRS = dvb mms cdda rtp rtsp rtmp vcd vcdx screen bd zip
 EXTRA_SUBDIRS = bda dshow
 SUBDIRS = $(BASE_SUBDIRS)
 DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)