summaryrefslogtreecommitdiffstats
path: root/extra/vlc
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-10-23 22:00:27 +0200
committertnut <thierryn1 at hispeed dot ch>2010-10-23 22:00:27 +0200
commit52f77a4cee67df8a31a9891bce370268728c78f6 (patch)
tree6d5800f6c2959ace8f0cf20c3e0ec370ff7589c9 /extra/vlc
parent4ee3ff03949d3ae66f40b540023c458c428bb0fe (diff)
downloadnutyx-extra-52f77a4cee67df8a31a9891bce370268728c78f6.tar.gz
nutyx-extra-52f77a4cee67df8a31a9891bce370268728c78f6.tar.bz2
nutyx-extra-52f77a4cee67df8a31a9891bce370268728c78f6.tar.xz
nutyx-extra-52f77a4cee67df8a31a9891bce370268728c78f6.zip
vlc, port nettoyé
Diffstat (limited to 'extra/vlc')
-rw-r--r--extra/vlc/Pkgfile2
-rw-r--r--extra/vlc/libpng-1.4.patch20
2 files changed, 1 insertions, 21 deletions
diff --git a/extra/vlc/Pkgfile b/extra/vlc/Pkgfile
index 6f65b2d08..aed7f3e8f 100644
--- a/extra/vlc/Pkgfile
+++ b/extra/vlc/Pkgfile
@@ -8,7 +8,7 @@ name=vlc
version=1.1.4
release=1
source=(http://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2 \
- libpng-1.4.patch)
+ http://nutyx.meticul.eu/files/patchs/$name/libpng-1.4.patch)
build() {
cd $name-$version
diff --git a/extra/vlc/libpng-1.4.patch b/extra/vlc/libpng-1.4.patch
deleted file mode 100644
index b0dba0746..000000000
--- a/extra/vlc/libpng-1.4.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- vlc-1.0.4/modules/codec/png.c~ 2010-01-19 02:31:45.575326077 +0100
-+++ vlc-1.0.4/modules/codec/png.c 2010-01-19 02:32:21.465321175 +0100
-@@ -155,7 +155,7 @@
- p_info = png_create_info_struct( p_png );
- if( p_info == NULL )
- {
-- png_destroy_read_struct( &p_png, png_infopp_NULL, png_infopp_NULL );
-+ png_destroy_read_struct( &p_png, NULL, NULL );
- block_Release( p_block ); *pp_block = NULL;
- return NULL;
- }
-@@ -163,7 +163,7 @@
- p_end_info = png_create_info_struct( p_png );
- if( p_end_info == NULL )
- {
-- png_destroy_read_struct( &p_png, &p_info, png_infopp_NULL );
-+ png_destroy_read_struct( &p_png, &p_info, NULL );
- block_Release( p_block ); *pp_block = NULL;
- return NULL;
- }