On Sat, Nov 6, 2010 at 11:56 PM, Roman I Khimov <[email protected]> wrote: > 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 >
hmmm is /include/prelude-plugin.h a generated file then you could see if it needs alteration. will this patch still work with older libtools > Originally reported by Paul Menzel <[email protected]>. > > Signed-off-by: Roman I Khimov <[email protected]> Acked-by: Khem Raj <[email protected]> > --- > .../libprelude-1.0.0/fix-ltdl-hack.patch | 21 > ++++++++++++++++++++ > recipes/libprelude/libprelude_1.0.0.bb | 3 +- > 2 files changed, 23 insertions(+), 1 deletions(-) > create mode 100644 recipes/libprelude/libprelude-1.0.0/fix-ltdl-hack.patch > > 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" > -- > 1.5.6.5 > > > _______________________________________________ > Openembedded-devel mailing list > [email protected] > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel > _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
