summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/connman/connman')
-rw-r--r--meta/recipes-connectivity/connman/connman/build-libppp-plugin-without-versioning-info.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-connectivity/connman/connman/build-libppp-plugin-without-versioning-info.patch b/meta/recipes-connectivity/connman/connman/build-libppp-plugin-without-versioning-info.patch
deleted file mode 100644
index 8e81f1bc52..0000000000
--- a/meta/recipes-connectivity/connman/connman/build-libppp-plugin-without-versioning-info.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1Upstream-Status: Submitted
2Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
3
4From dd8044ed6ccb468558bab037257e27a409903d86 Mon Sep 17 00:00:00 2001
5From: Jukka Rissanen <jukka.rissanen@linux.intel.com>
6Date: Mon, 21 Jul 2014 15:01:45 +0300
7Subject: [PATCH] scripts: Build libppp-plugin as a plain .so file
8
9There is no need to have module versioning for libppp-plugin.so
10file so build the plugin same way as other vpn plugins.
11
12This issue was seen when building ConnMan for Yocto.
13---
14 Makefile.plugins | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/Makefile.plugins b/Makefile.plugins
18index 294cae0..8139967 100644
19--- a/Makefile.plugins
20+++ b/Makefile.plugins
21@@ -4,7 +4,7 @@ plugin_cflags = -fvisibility=hidden -I$(srcdir)/gdbus \
22 plugin_ldflags = -no-undefined -module -avoid-version
23
24 script_cflags = -fvisibility=hidden -I$(srcdir)/gdbus \
25- @DBUS_CFLAGS@
26+ @DBUS_CFLAGS@ $(plugin_ldflags) -shared
27
28 if LOOPBACK
29 builtin_modules += loopback
30--
311.8.3.1
32