diff options
Diffstat (limited to 'extra')
-rw-r--r-- | extra/vlc/Pkgfile | 2 | ||||
-rw-r--r-- | extra/vlc/libpng-1.4.patch | 20 |
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; - } |