Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
706d4733
Commit
706d4733
authored
Aug 30, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move libs/unzip to modules/access/zip/unzip
parent
2ead0773
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
15 additions
and
17 deletions
+15
-17
Makefile.am
Makefile.am
+1
-6
configure.ac
configure.ac
+4
-6
modules/access/zip/Modules.am
modules/access/zip/Modules.am
+10
-5
modules/access/zip/unzip/Makefile.am
modules/access/zip/unzip/Makefile.am
+0
-0
modules/access/zip/unzip/crypt.h
modules/access/zip/unzip/crypt.h
+0
-0
modules/access/zip/unzip/ioapi.c
modules/access/zip/unzip/ioapi.c
+0
-0
modules/access/zip/unzip/ioapi.h
modules/access/zip/unzip/ioapi.h
+0
-0
modules/access/zip/unzip/unzip.c
modules/access/zip/unzip/unzip.c
+0
-0
modules/access/zip/unzip/unzip.h
modules/access/zip/unzip/unzip.h
+0
-0
No files found.
Makefile.am
View file @
706d4733
...
...
@@ -9,7 +9,7 @@
# - libs/* are needed by modules
BASE_SUBDIRS
=
po compat src bin modules share doc
test
EXTRA_SUBDIRS
=
m4
\
libs/loader libs/srtp
libs/unzip
libs/loader libs/srtp
DIST_SUBDIRS
=
$(BASE_SUBDIRS)
$(EXTRA_SUBDIRS)
SUBDIRS
=
po compat src
...
...
@@ -19,11 +19,6 @@ endif
if
HAVE_GCRYPT
SUBDIRS
+=
libs/srtp
endif
if
HAVE_ZLIB
if
!HAVE_MINIZIP
SUBDIRS
+=
libs/unzip
endif
endif
if
BUILD_VLC
SUBDIRS
+=
bin
endif
...
...
configure.ac
View file @
706d4733
...
...
@@ -822,14 +822,12 @@ then
MINIZIP_LIBS="-lminizip -lz"
], [
have_minizip=no
MINIZIP_CFLAGS="-I\\\${top_srcdir}/
libs
/unzip"
MINIZIP_LIBS="\\\${top_builddir}/
libs
/unzip/libunzip.la"
MINIZIP_CFLAGS="-I\\\${top_srcdir}/
modules/access/zip
/unzip"
MINIZIP_LIBS="\\\${top_builddir}/
modules/access/zip
/unzip/libunzip.la"
])
])
VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
VLC_ADD_CFLAGS([zip],[$MINIZIP_CFLAGS])
VLC_ADD_LIBS([skins2 zip],[$MINIZIP_LIBS])
VLC_ADD_PLUGIN([unzip zip])
VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
fi
AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
...
...
@@ -4263,7 +4261,6 @@ AC_CONFIG_FILES([
doc/Makefile
libs/loader/Makefile
libs/srtp/Makefile
libs/unzip/Makefile
modules/Makefile
m4/Makefile
po/Makefile.in
...
...
@@ -4283,6 +4280,7 @@ AC_CONFIG_FILES([
modules/access/vcdx/Makefile
modules/access/screen/Makefile
modules/access/zip/Makefile
modules/access/zip/unzip/Makefile
modules/access_output/Makefile
modules/audio_filter/Makefile
modules/audio_mixer/Makefile
...
...
modules/access/zip/Modules.am
View file @
706d4733
if !HAVE_MINIZIP
SUBDIRS = unzip
endif
DIST_SUBDIRS = unzip
libzip_plugin_la_SOURCES = zip.h zipstream.c zipaccess.c
libzip_plugin_la_CFLAGS = $(AM_CFLAGS) $(MINIZIP_CFLAGS)
libzip_plugin_la_LIBADD = $(AM_LIBADD) $(MINIZIP_LIBS)
if HAVE_ZLIB
SOURCES_zip = \
zip.h \
zipstream.c \
zipaccess.c \
$(NULL)
libvlc_LTLIBRARIES += libzip_plugin.la
endif
libs
/unzip/Makefile.am
→
modules/access/zip
/unzip/Makefile.am
View file @
706d4733
File moved
libs
/unzip/crypt.h
→
modules/access/zip
/unzip/crypt.h
View file @
706d4733
File moved
libs
/unzip/ioapi.c
→
modules/access/zip
/unzip/ioapi.c
View file @
706d4733
File moved
libs
/unzip/ioapi.h
→
modules/access/zip
/unzip/ioapi.h
View file @
706d4733
File moved
libs
/unzip/unzip.c
→
modules/access/zip
/unzip/unzip.c
View file @
706d4733
File moved
libs
/unzip/unzip.h
→
modules/access/zip
/unzip/unzip.h
View file @
706d4733
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment