[oe-commits] Roman Khimov : libprelude: workaround build failures with libtool 2.4

git version control git at git.openembedded.org
Fri Nov 12 05:06:40 UTC 2010


Module: openembedded.git
Branch: testing-next
Commit: 971a58b4865e91f9b2141d3919372b10da69a3bc
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=971a58b4865e91f9b2141d3919372b10da69a3bc

Author: Roman Khimov <khimov at altell.ru>
Date:   Sat Nov  6 20:56:56 2010 +0000

libprelude: workaround build failures with libtool 2.4

Like:

In file included from prelude-plugin.c:56:0:
/include/prelude-plugin.h:66:20: error: conflicting types for 'lt__PROGRAM__LTX_preloaded_symbols'
/oe/build-angstrom-next/angstrom-dev/sysroots/armv7a-angstrom-linux-gnueabi/usr/include/ltdl.h:106:36: note: previous declaration of 'lt__PROGRAM__LTX_preloaded_symbols' was here
make[4]: *** [prelude-plugin.lo] Error 1

Originally reported by Paul Menzel <paulepanter at users.sourceforge.net>.

Forwarded upstream as https://dev.prelude-technologies.com/issues/386

Signed-off-by: Roman I Khimov <khimov at altell.ru>
Acked-by: Khem Raj <raj.khem at gmail.com>
Acked-by: Paul Menzel <paulepanter at users.sourceforge.net>

---

 .../libprelude-1.0.0/fix-ltdl-hack.patch           |   21 ++++++++++++++++++++
 recipes/libprelude/libprelude_1.0.0.bb             |    3 +-
 2 files changed, 23 insertions(+), 1 deletions(-)

diff --git a/recipes/libprelude/libprelude-1.0.0/fix-ltdl-hack.patch b/recipes/libprelude/libprelude-1.0.0/fix-ltdl-hack.patch
new file mode 100644
index 0000000..c6f147f
--- /dev/null
+++ b/recipes/libprelude/libprelude-1.0.0/fix-ltdl-hack.patch
@@ -0,0 +1,21 @@
+libtool 2.4 changed lt__PROGRAM__LTX_preloaded_symbols definition to
+
+extern LT_DLSYM_CONST lt_dlsymlist lt__PROGRAM__LTX_preloaded_symbols[];
+
+but there is no easy way to find its version to fix it properly, so it's a
+temporary hack to make at least libprelude compile.
+Index: libprelude-1.0.0/src/include/prelude-plugin.h
+===================================================================
+--- libprelude-1.0.0.orig/src/include/prelude-plugin.h	2010-11-06 21:30:18.000000000 +0300
++++ libprelude-1.0.0/src/include/prelude-plugin.h	2010-11-06 21:30:47.000000000 +0300
+@@ -61,9 +61,8 @@
+  */
+ #ifdef PRELUDE_APPLICATION_USE_LIBTOOL2
+ # define lt_preloaded_symbols lt__PROGRAM__LTX_preloaded_symbols
+-#endif
+-
+ extern const void *lt_preloaded_symbols[];
++#endif
+ 
+ #define PRELUDE_PLUGIN_SET_PRELOADED_SYMBOLS()         \
+         prelude_plugin_set_preloaded_symbols(lt_preloaded_symbols)
diff --git a/recipes/libprelude/libprelude_1.0.0.bb b/recipes/libprelude/libprelude_1.0.0.bb
index d99af1c..85f7acd 100644
--- a/recipes/libprelude/libprelude_1.0.0.bb
+++ b/recipes/libprelude/libprelude_1.0.0.bb
@@ -2,13 +2,14 @@ DESCRIPTION = "Libprelude is a library that guarantees secure connections betwee
 SECTION = "net"
 DEPENDS = "gnutls libgcrypt zlib perl perl-native"
 LICENSE = "GPLv2"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = " \
 	http://www.prelude-ids.com/download/releases/libprelude/${PN}-${PV}.tar.gz \
 	file://libprelude-dont-regenerate-perl-makefile.patch \
 	file://libprelude-perl-build-with-gnu-hash.patch \
 	file://libprelude-fix-uid-gid-conflicting-types.patch \
+	file://fix-ltdl-hack.patch \
 	"
 SRC_URI[md5sum] = "a5bb76538d240e5fac5f6ab0b7fabfe5"
 SRC_URI[sha256sum] = "e16d83a6a7bcc43a02d6f2bd40c91a03a258a9a86bab42262cbb5adaba8c4640"





More information about the Openembedded-commits mailing list