I have a native recipe around which directly compiles/links against libintl. Gettext contains this code (usually supplied by glibc) as fallback. In native case this code is used by default because we don't have glibc there. This patch changes static linking into dynamic linking making libintl code shareable.
Signed-off-by: Andreas Müller <[email protected]> --- meta/recipes-core/gettext/gettext_0.18.3.2.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-core/gettext/gettext_0.18.3.2.bb b/meta/recipes-core/gettext/gettext_0.18.3.2.bb index 65d4103..98838d7 100644 --- a/meta/recipes-core/gettext/gettext_0.18.3.2.bb +++ b/meta/recipes-core/gettext/gettext_0.18.3.2.bb @@ -39,6 +39,9 @@ EXTRA_OECONF += "--without-lispdir \ --with-included-libunistring \ " +# we have no glib intl +EXTRA_OECONF_append_class-native = "--with-included-gettext --enable-shared" + acpaths = '-I ${S}/gettext-runtime/m4 \ -I ${S}/gettext-tools/m4' -- 1.8.3.1 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
