diff options
author | Thomas Penteker <tek@serverop.de> | 2015-01-20 21:47:37 +0100 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2015-01-20 21:47:37 +0100 |
commit | 8bea5b348093515db939d5c8b395108ec2d54e73 (patch) | |
tree | e111126f45517784c050df354c170898b2418f62 /mplayer | |
parent | 97f6b11567ac510017cea18151cbb0399488bc00 (diff) | |
download | opt-8bea5b348093515db939d5c8b395108ec2d54e73.tar.gz opt-8bea5b348093515db939d5c8b395108ec2d54e73.tar.xz |
mplayer: 2014-08-20 -> 2015-01-20
Diffstat (limited to 'mplayer')
-rw-r--r-- | mplayer/.md5sum | 2 | ||||
-rw-r--r-- | mplayer/Pkgfile | 8 | ||||
-rw-r--r-- | mplayer/giflib-compatibilty-with-5.1.patch | 36 |
3 files changed, 3 insertions, 43 deletions
diff --git a/mplayer/.md5sum b/mplayer/.md5sum index 285d4b30f..2b0d72361 100644 --- a/mplayer/.md5sum +++ b/mplayer/.md5sum @@ -1,4 +1,4 @@ 1ecd31d17b51f16332b1fcc7da36b312 font-arial-iso-8859-1.tar.bz2 74482f7055580abdf486b4a52f003069 giflib-compatibilty-with-5.1.patch -d917f523dedd78141ca102438b4bc81b mplayer-2014-08-20.tar.xz +acff833e0674c68df2bacbabda67b9c5 mplayer-2015-01-20.tar.xz 5afb114c52e3cc4f1288754d250c7284 mplayer.conf diff --git a/mplayer/Pkgfile b/mplayer/Pkgfile index 7bf0b82e3..ef020792c 100644 --- a/mplayer/Pkgfile +++ b/mplayer/Pkgfile @@ -6,18 +6,14 @@ # Nice to have: libsdl, libjpeg-turbo, libpng, lame, zlib, libogg, libvorbis, cdparanoia, win32-essential-codecs, faac, x264, libdvdnav, libdca name=mplayer -version=2014-08-20 +version=2015-01-20 release=1 source=(http://crux.nu/~tek/mplayer-$version.tar.xz - http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 - giflib-compatibilty-with-5.1.patch - mplayer.conf) + http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 mplayer.conf) build() { cd mplayer-$version - patch -i ../giflib-compatibilty-with-5.1.patch -p1 - # Keep in line with mplayer CFLAGS, but allow people to set their own march/mtune values. export CFLAGS="$(echo $CFLAGS | sed -e 's/-O[s0-3]/-O3/') -ffast-math -fomit-frame-pointer -fno-strict-aliasing" diff --git a/mplayer/giflib-compatibilty-with-5.1.patch b/mplayer/giflib-compatibilty-with-5.1.patch deleted file mode 100644 index 9bc2f2769..000000000 --- a/mplayer/giflib-compatibilty-with-5.1.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 409caa2ec824cd55ef5b8da72966c1608bf532ed Mon Sep 17 00:00:00 2001 -From: sherpya <sherpya@netfarm.it> -Date: Sun, 18 May 2014 04:31:04 +0200 -Subject: [PATCH 28/29] giflib: compatibilty with 5.1+ ---- -diff --git a/libmpdemux/demux_gif.c b/libmpdemux/demux_gif.c -index 33b5188..fd364ad 100644 ---- a/libmpdemux/demux_gif.c -+++ b/libmpdemux/demux_gif.c -@@ -50,6 +50,9 @@ typedef struct { - #define DGifOpenFileHandle(a) DGifOpenFileHandle(a, NULL) - #define GifError() (gif ? gif->Error : 0) - #define GifErrorString() GifErrorString(gif->Error) -+#if defined GIFLIB_MINOR && GIFLIB_MINOR >= 1 -+#define DGifCloseFile(a) DGifCloseFile(a, NULL) -+#endif - #endif - - /* >= 4.2 prior GIFLIB did not have MAJOR/MINOR defines */ -diff --git a/libvo/vo_gif89a.c b/libvo/vo_gif89a.c -index 5061870..e8e024f 100644 ---- a/libvo/vo_gif89a.c -+++ b/libvo/vo_gif89a.c -@@ -75,6 +75,9 @@ const LIBVO_EXTERN(gif89a) - #define MakeMapObject GifMakeMapObject - #define FreeMapObject GifFreeMapObject - #define QuantizeBuffer GifQuantizeBuffer -+#if defined GIFLIB_MINOR && GIFLIB_MINOR >= 1 -+#define EGifCloseFile(a) EGifCloseFile(a, NULL) -+#endif - #endif - - // how many frames per second we are aiming for during output. --- -2.0.0 - |