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
b7269a58
Commit
b7269a58
authored
Aug 19, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Contrib constistency
parent
995bc2e5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
80 deletions
+2
-80
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+2
-28
extras/contrib/src/Patches/SDL_image-CVE-2006-4484.patch
extras/contrib/src/Patches/SDL_image-CVE-2006-4484.patch
+0
-13
extras/contrib/src/Patches/asa-git.diff
extras/contrib/src/Patches/asa-git.diff
+0
-39
extras/contrib/src/Patches/libcaca_driver_cocoa.diff
extras/contrib/src/Patches/libcaca_driver_cocoa.diff
+0
-0
extras/contrib/src/Patches/libcaca_macosx.diff
extras/contrib/src/Patches/libcaca_macosx.diff
+0
-0
No files found.
extras/contrib/src/Makefile
View file @
b7269a58
...
...
@@ -960,14 +960,8 @@ DISTCLEAN_PKG += lame-$(LAME_VERSION).tar.gz
libebml-$(LIBEBML_VERSION).tar.bz2
:
$(WGET)
$(LIBEBML_URL)
## No reasons to use SVN anymore
#ifdef SVN
#libebml:
# $(SVN) co http://svn.matroska.org/svn/matroska/trunk/libebml libebml
#else
libebml
:
libebml-$(LIBEBML_VERSION).tar.bz2
$(EXTRACT_BZ2)
#endif
ifdef
HAVE_WIN32
(
cd
$@
;
patch
-p0
< ../Patches/libebml-svn-win32.patch
)
endif
...
...
@@ -983,12 +977,6 @@ else
$(RANLIB)
$(PREFIX)
/lib/libebml.a
endif
touch
$@
## No reasons to use SVN anymore
#ifdef SVN
#libebml-source: libebml
# tar cfvz libebml-$(DATE).tar.gz libebml
#SOURCE += libebml-source
#endif
CLEAN_FILE
+=
.ebml
CLEAN_PKG
+=
libebml
...
...
@@ -1001,14 +989,8 @@ DISTCLEAN_PKG += libebml-$(LIBEBML_VERSION).tar.bz2
libmatroska-$(LIBMATROSKA_VERSION).tar.bz2
:
$(WGET)
$(LIBMATROSKA_URL)
## No reasons to use SVN anymore
#if SVN
#libmatroska:
# $(SVN) co http://svn.matroska.org/svn/matroska/trunk/libmatroska libmatroska
#else
libmatroska
:
libmatroska-$(LIBMATROSKA_VERSION).tar.bz2
$(EXTRACT_BZ2)
#endif
patch
-p0
< ./Patches/libmatroska-kaxblock.patch
ifdef
HAVE_WIN32
(
cd
$@
;
patch
-p0
< ../Patches/libmatroska-win32.patch
)
...
...
@@ -1023,13 +1005,6 @@ else
endif
touch
$@
## No reasons to use SVN anymore
#ifdef SVN
#libmatroska-source: libmatroska
# tar cfvz libmatroska-$(DATE).tar.gz libmatroska
#
#SOURCE += libmatroska-source
#endif
CLEAN_FILE
+=
.matroska
CLEAN_PKG
+=
libmatroska
...
...
@@ -1359,8 +1334,8 @@ libcaca: libcaca-$(LIBCACA_VERSION).tar.gz
$(EXTRACT_GZ)
ifdef
HAVE_DARWIN_OS
#remove me at next libcaca upgrade
patch
-p0
< Patches/caca_driver_cocoa.diff
patch
-p0
< Patches/caca_macosx.diff
patch
-p0
< Patches/
lib
caca_driver_cocoa.diff
patch
-p0
< Patches/
lib
caca_macosx.diff
patch
-p0
< Patches/libcaca-osx-sdkofourchoice.patch
(
cd
$@
;
sed
-e
's%/Developer/SDKs/MacOSX10.4u.sdk%
$(MACOSX_SDK)
%'
-i
.orig configure
)
endif
...
...
@@ -2159,7 +2134,6 @@ SDL_image-$(SDL_IMAGE_VERSION).tar.gz:
SDL_image
:
SDL_image-$(SDL_IMAGE_VERSION).tar.gz
$(EXTRACT_GZ)
patch
-p0
< Patches/SDL_image.patch
patch
-p0
< Patches/SDL_image-CVE-2006-4484.patch
.SDL_image
:
SDL_image .SDL .png .jpeg .tiff
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
CFLAGS
=
"
$(CFLAGS)
"
--enable-tif
--disable-sdltest
&&
make
&&
make
install
)
...
...
extras/contrib/src/Patches/SDL_image-CVE-2006-4484.patch
deleted
100644 → 0
View file @
995bc2e5
--- SDL_image/IMG_gif.orig.c 2008-02-01 11:58:19.000000000 +0100
+++ SDL_image/IMG_gif.c 2008-02-01 11:58:28.000000000 +0100
@@ -415,6 +415,10 @@
static int table[2][(1 << MAX_LWZ_BITS)];
static int stack[(1 << (MAX_LWZ_BITS)) * 2], *sp;
register int i;
+
+ /* Fixed buffer overflow found by Michael Skladnikiewicz */
+ if( input_code_size > MAX_LWZ_BITS )
+ return -1;
if (flag) {
set_code_size = input_code_size;
extras/contrib/src/Patches/asa-git.diff
deleted
100644 → 0
View file @
995bc2e5
diff -ur asa.orig/lib/Makefile.am asa/lib/Makefile.am
--- asa.orig/lib/Makefile.am 2007-08-31 17:26:54.000000000 +0200
+++ asa/lib/Makefile.am 2008-03-08 23:17:27.000000000 +0100
@@ -25,7 +25,9 @@
echo obj $(objname) pic $(picname)
$(NASM) -f elf $(ASMOPT) -o ${picname} $^
$(NASM) -f elf $(ASMOPT) -DNO_PIC -o ${objname} $^
- echo -e "# Generated by libtool\npic_object='../${picname}'\nnon_pic_object='../${objname}'" > $@
+ echo "# Generated by libtool" > $@
+ echo "pic_object='../${picname}'" >> $@
+ echo "non_pic_object='../${objname}'" >> $@
noinst_HEADERS = blitter_internal.h
lib_LTLIBRARIES = libasa.la
@@ -51,11 +53,12 @@
../csri/subhelp/libsubhelp_la-openfile.lo \
../csri/subhelp/libsubhelp_la-logging.lo \
import/libimport.la \
+ $(PCRE_LIBS) \
$(ASM)
libasa_la_LDFLAGS = -version-info 0:0:0 -no-undefined
install-exec-hook:
- test -z "$(csrilibdir)" || $(MKDIR_P) "$(DESTDIR)$(csrilibdir)"
+ test -z "$(csrilibdir)" || $(mkdir_p) "$(DESTDIR)$(csrilibdir)"
$(LN_S) $(libdir)/libasa.so.0 \
$(DESTDIR)$(csrilibdir)/asa_csri.so
diff -ur asa.orig/lib/import/Makefile.am asa/lib/import/Makefile.am
--- asa.orig/lib/import/Makefile.am 2007-08-31 17:26:54.000000000 +0200
+++ asa/lib/import/Makefile.am 2008-03-08 23:01:50.000000000 +0100
@@ -1,6 +1,6 @@
if IMPORTS_PREP
noinst_PROGRAMS = preparse
-preparse_LDFLAGS = -limportparser
+preparse_LDFLAGS = -limportparser $(PCRE_LIBS)
BUILT_SOURCES = imports_prep.h
imports_prep.h: $(srcdir)/imports libimportparser.la preparse
extras/contrib/src/Patches/caca_driver_cocoa.diff
→
extras/contrib/src/Patches/
lib
caca_driver_cocoa.diff
View file @
b7269a58
File moved
extras/contrib/src/Patches/caca_macosx.diff
→
extras/contrib/src/Patches/
lib
caca_macosx.diff
View file @
b7269a58
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