From: Gabor Juhos Date: Mon, 18 Feb 2013 10:04:17 +0000 (+0000) Subject: minidlna: bump version to 1.0.25 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=d8fda7f462e59122392f0c0c05d9f06eb32e638b minidlna: bump version to 1.0.25 Version bump minidlna to 1.0.25 and add an additional patch. Patch is accepted upstream, but not yet released. Signed-off-by: Ian Leonard Signed-off-by: Gabor Juhos SVN-Revision: 35658 --- diff --git a/multimedia/minidlna/Makefile b/multimedia/minidlna/Makefile index 2d74ccf7e8..be9804d509 100644 --- a/multimedia/minidlna/Makefile +++ b/multimedia/minidlna/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2010-2012 OpenWrt.org +# Copyright (C) 2010-2013 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=minidlna -PKG_VERSION:=1.0.24 +PKG_VERSION:=1.0.25 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION)_src.tar.gz PKG_SOURCE_URL:=@SF/minidlna -PKG_MD5SUM:=be9b4c91e3fcde592dc3f9828098ca0f +PKG_MD5SUM:=d966256baf2f9b068b9de871ab5dade5 PKG_BUILD_PARALLEL:=0 PKG_BUILD_DEPENDS:=util-linux diff --git a/multimedia/minidlna/patches/040-minidlna-1.0.25-fix-libavformat-api-feature-check.patch b/multimedia/minidlna/patches/040-minidlna-1.0.25-fix-libavformat-api-feature-check.patch new file mode 100644 index 0000000000..5f691263e2 --- /dev/null +++ b/multimedia/minidlna/patches/040-minidlna-1.0.25-fix-libavformat-api-feature-check.patch @@ -0,0 +1,11 @@ +--- a/metadata.c 2012-08-27 23:00:06.997932249 +0100 ++++ b/metadata.c 2012-08-27 23:10:07.716582960 +0100 +@@ -110,7 +110,7 @@ lav_open(AVFormatContext **ctx, const ch + static inline void + lav_close(AVFormatContext *ctx) + { +-#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(2<<8)+0) ++#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0) + avformat_close_input(&ctx); + #else + av_close_input_file(ctx);