summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-06-18 20:22:56 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-06-20 00:48:09 +0200
commitb45a880f836a37d72b6ca0d7f3eb4fcf0e8ec2ac (patch)
tree16ce8680aabeba3bc4eccd6751c8bd2f0cec32d1 /net-libs
parentdev-perl/Class-Singleton: -r bump for EAPI7 (diff)
downloadgentoo-b45a880f836a37d72b6ca0d7f3eb4fcf0e8ec2ac.tar.gz
gentoo-b45a880f836a37d72b6ca0d7f3eb4fcf0e8ec2ac.tar.bz2
gentoo-b45a880f836a37d72b6ca0d7f3eb4fcf0e8ec2ac.zip
net-libs/libupnp: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/16314 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch b/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch
deleted file mode 100644
index cbb844952be6..000000000000
--- a/net-libs/libupnp/files/libupnp-1.12.0-cxx-compat.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 5a8e93f1a57cce5cead5c8c566a75f7c7c294c97 Mon Sep 17 00:00:00 2001
-From: Ian Whyman <v00d00@v00d00.net>
-Date: Mon, 27 Jan 2020 21:46:47 +0000
-Subject: [PATCH] List: Add extern C for C++ users
-
----
- upnp/inc/list.h | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
-diff --git a/upnp/inc/list.h b/upnp/inc/list.h
-index 214a53e5..0fbe7efc 100644
---- a/upnp/inc/list.h
-+++ b/upnp/inc/list.h
-@@ -40,6 +40,10 @@
-
- #include "UpnpGlobal.h"
-
-+#ifdef __cplusplus
-+extern "C" {
-+#endif /* __cplusplus */
-+
- /** List anchor structure. This should be the *first* entry in list
- * member objects, except if you want to do member offset arithmetic
- * instead of simple casts (look up "containerof"). The list code itself
-@@ -71,4 +75,8 @@ EXPORT_SPEC UpnpListIter UpnpListInsert(UpnpListHead *list, UpnpListIter pos,
- /** Erase element at pos, return next one, or end()*/
- EXPORT_SPEC UpnpListIter UpnpListErase(UpnpListHead *list, UpnpListIter pos);
-
-+#ifdef __cplusplus
-+}
-+#endif /* __cplusplus */
-+
- #endif /* _UPNPLISTH_ */