Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
aa6fdc1c
Commit
aa6fdc1c
authored
Jul 04, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Contribs: add zlib
Same, not libav* enabled
parent
76fb6afa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
0 deletions
+47
-0
contrib/src/zlib/SHA512SUMS
contrib/src/zlib/SHA512SUMS
+1
-0
contrib/src/zlib/rules.mak
contrib/src/zlib/rules.mak
+22
-0
contrib/src/zlib/zlib-static.patch
contrib/src/zlib/zlib-static.patch
+11
-0
contrib/src/zlib/zlib-wince.patch
contrib/src/zlib/zlib-wince.patch
+13
-0
No files found.
contrib/src/zlib/SHA512SUMS
0 → 100644
View file @
aa6fdc1c
83ce467787903b7e90ece203aaea0be42174b9cf4a9aa16fe3f72925a4993b549d50154dec4cc76b4cb1aa0b7b966118772aca3d73efa0601167256ff7ce7a12 zlib-1.2.5.tar.gz
contrib/src/zlib/rules.mak
0 → 100644
View file @
aa6fdc1c
# ZLIB
ZLIB_VERSION
:=
1.2.5
ZLIB_URL
:=
$(SF)
/libpng/zlib-
$(ZLIB_VERSION)
.tar.gz
PKGS
+=
zlib
$(TARBALLS)/zlib-$(ZLIB_VERSION).tar.gz
:
$(
call
download,
$(ZLIB_URL)
)
.sum-zlib
:
zlib-$(ZLIB_VERSION).tar.gz
zlib
:
zlib-$(ZLIB_VERSION).tar.gz .sum-zlib
$(UNPACK)
$(APPLY)
$(SRC)
/zlib/zlib-wince.patch
$(APPLY)
$(SRC)
/zlib/zlib-static.patch
$(MOVE)
.zlib
:
zlib
#
$(RECONF)
cd
$<
&&
$(HOSTVARS)
./configure
--prefix
=
$(PREFIX)
--static
cd
$<
&&
$(MAKE)
install
touch
$@
contrib/src/zlib/zlib-static.patch
0 → 100644
View file @
aa6fdc1c
--- zlib/Makefile.in 2010-04-20 06:12:21.000000000 +0200
+++ zlib.new/Makefile.in 2010-06-08 14:02:43.000000000 +0200
@@ -168,7 +168,7 @@
-@if [ ! -d $(DESTDIR)$(man3dir) ]; then mkdir -p $(DESTDIR)$(man3dir); fi
-@if [ ! -d $(DESTDIR)$(pkgconfigdir) ]; then mkdir -p $(DESTDIR)$(pkgconfigdir); fi
cp $(STATICLIB) $(DESTDIR)$(libdir)
- cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)
+ cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir) || true >/dev/null 2>&1
cd $(DESTDIR)$(libdir); chmod u=rw,go=r $(STATICLIB)
-@(cd $(DESTDIR)$(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
-@cd $(DESTDIR)$(sharedlibdir); if test "$(SHAREDLIBV)" -a -f $(SHAREDLIBV); then \
contrib/src/zlib/zlib-wince.patch
0 → 100644
View file @
aa6fdc1c
--- zlib/zutil.h 2010-04-18 21:29:24.000000000 +0200
+++ zlib.new/zutil.h 2010-06-08 13:53:03.000000000 +0200
@@ -153,6 +153,10 @@
# endif
#endif
+#if defined(_WIN32_WCE)
+# define fdopen(fd,mode) NULL /* No fdopen() */
+#endif
+
#if defined(__BORLANDC__)
#pragma warn -8004
#pragma warn -8008
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