diff options
-rw-r--r-- | meta-multimedia/recipes-connectivity/libupnp/libupnp1.6/sepbuildfix.patch | 34 | ||||
-rw-r--r-- | meta-multimedia/recipes-connectivity/libupnp/libupnp1.6_1.6.21.bb | 20 |
2 files changed, 0 insertions, 54 deletions
diff --git a/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6/sepbuildfix.patch b/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6/sepbuildfix.patch deleted file mode 100644 index 0493cea0e0..0000000000 --- a/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6/sepbuildfix.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From e198f0a87660a048164ca0e16d18517d0aee846e Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Tue, 9 Jun 2015 12:20:45 -0700 | ||
4 | Subject: [PATCH] Fix builds when using separate source and build directories. | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
9 | --- | ||
10 | configure.ac | 10 +++++----- | ||
11 | 1 files changed, 5 insertions(+), 5 deletions(-) | ||
12 | |||
13 | diff --git a/configure.ac b/configure.ac | ||
14 | index a8731b5..54a3c3d 100644 | ||
15 | --- a/configure.ac | ||
16 | +++ b/configure.ac | ||
17 | @@ -744,9 +744,9 @@ AC_OUTPUT | ||
18 | # | ||
19 | # Files copied for windows compilation. | ||
20 | # | ||
21 | -echo "configure: copying \"autoconfig.h\" to \"build/inc/autoconfig.h\"" | ||
22 | -test -d build/inc || mkdir -p build/inc | ||
23 | -cp autoconfig.h build/inc/autoconfig.h | ||
24 | -echo "configure: copying \"upnp/inc/upnpconfig.h\" to \"build/inc/upnpconfig.h\"" | ||
25 | -cp upnp/inc/upnpconfig.h build/inc/upnpconfig.h | ||
26 | +echo "configure: copying \"autoconfig.h\" to \"\$srcdir/build/inc/autoconfig.h\"" | ||
27 | +test -d $srcdir/build/inc || mkdir -p $srcdir/build/inc | ||
28 | +cp autoconfig.h $srcdir/build/inc/autoconfig.h | ||
29 | +echo "configure: copying \"upnp/inc/upnpconfig.h\" to \"\$srcdir/build/inc/upnpconfig.h\"" | ||
30 | +cp upnp/inc/upnpconfig.h $srcdir/build/inc/upnpconfig.h | ||
31 | |||
32 | -- | ||
33 | 1.9.1 | ||
34 | |||
diff --git a/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6_1.6.21.bb b/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6_1.6.21.bb deleted file mode 100644 index c1b0429bdf..0000000000 --- a/meta-multimedia/recipes-connectivity/libupnp/libupnp1.6_1.6.21.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | SUMMARY = "Portable SDK for UPnP* Devices" | ||
2 | DESCRIPTION = "The Portable SDK for UPnP Devices is an SDK for development of \ | ||
3 | UPnP device and control point applications. It consists of the core UPnP \ | ||
4 | protocols along with a UPnP-specific eXtensible Markup Language (XML) parser \ | ||
5 | supporting the Document Object Model (DOM) Level 2 API and an optional, \ | ||
6 | integrated mini web server for serving UPnP related documents." | ||
7 | HOMEPAGE = "http://pupnp.sourceforge.net/" | ||
8 | LICENSE = "BSD" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b3190d5244e08e78e4c8ee78544f4863" | ||
10 | |||
11 | SRC_URI = "${SOURCEFORGE_MIRROR}/pupnp/libupnp-${PV}.tar.bz2 \ | ||
12 | file://sepbuildfix.patch \ | ||
13 | " | ||
14 | |||
15 | SRC_URI[md5sum] = "513adadb07fa039a8aeb0ceb7b7b0f6e" | ||
16 | SRC_URI[sha256sum] = "af3f3c0846a1d75baeadae4aa5a2bda427567e2a1fb4559bf73ccff0a4f9a39b" | ||
17 | |||
18 | S = "${WORKDIR}/libupnp-${PV}" | ||
19 | |||
20 | inherit autotools | ||