aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2017-06-06 09:50:44 +0300
committerGitHub <noreply@github.com>2017-06-06 09:50:44 +0300
commit7f2719b5c900d3730715cc7ddb5b79991c2a8e0a (patch)
tree18d3a317ad9e4fddf2ba0fa9e67b477164194cab /libs
parent482499b60b3a2c92e9e4418e815957ef5430d8ef (diff)
parent0cd5602cbe5f45bcee83c86b69824a2b607677e7 (diff)
Merge pull request #4442 from MikePetullo/libdmapsharing
libdmapsharing: update to 2.9.38
Diffstat (limited to 'libs')
-rw-r--r--libs/libdmapsharing/Makefile9
-rw-r--r--libs/libdmapsharing/patches/003-make_unit_test_optional.patch17
2 files changed, 5 insertions, 21 deletions
diff --git a/libs/libdmapsharing/Makefile b/libs/libdmapsharing/Makefile
index 69a375079..986a15d60 100644
--- a/libs/libdmapsharing/Makefile
+++ b/libs/libdmapsharing/Makefile
@@ -10,7 +10,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=libdmapsharing
-PKG_VERSION:=2.9.35
+PKG_VERSION:=2.9.38
PKG_RELEASE:=1
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
@@ -20,7 +20,7 @@ PKG_LICENSE_FILES:=COPYING
PKG_SOURCE:=libdmapsharing-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.flyn.org/projects/libdmapsharing/
-PKG_MD5SUM:=02008e1998646d0bb6ca45784133b748
+PKG_MD5SUM:=2494161340c4c3c36907359eeddc4da3
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
@@ -44,8 +44,9 @@ define Package/libdmapsharing/decription
endef
CONFIGURE_ARGS += \
- --disable-introspection \
- --disable-gtk-doc
+ --disable-check \
+ --disable-gtk-doc \
+ --disable-introspection
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include/
diff --git a/libs/libdmapsharing/patches/003-make_unit_test_optional.patch b/libs/libdmapsharing/patches/003-make_unit_test_optional.patch
deleted file mode 100644
index 14d020f23..000000000
--- a/libs/libdmapsharing/patches/003-make_unit_test_optional.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -357,7 +357,13 @@ if test -n "$BUILD_DPAPVIEW" ; then
- AC_WARN([will not build dpapview])
- fi
-
--PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],have_check=yes,have_check=no)
-+dnl Test if --enable-unit-test given
-+AC_ARG_ENABLE(unit-test, [AC_HELP_STRING([--enable-unit-test],[enable unit test])])
-+if test "x$enable_unit_test" = "xyes" ; then
-+ PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],have_check=yes,have_check=no)
-+else
-+ have_check=no
-+fi
- AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
- if test "x$have_check" = "xyes"; then
- AC_DEFINE(HAVE_CHECK, 1, [Define if check support is enabled])