From: Lei Liu <lei.l...@windriver.com> Implict dependency library libXrender is missing from linker options, which causes build error. Fix it by checking and linking the library explictly.
Signed-off-by: Lei Liu <lei.l...@windriver.com> Signed-off-by: Randy MacLeod <randy.macl...@windriver.com> Signed-off-by: Jeff Polk <jeff.p...@windriver.com> --- .../files/add-lXrender-to-link.patch | 55 ++++++++++++++++++++++ .../matchbox-keyboard/matchbox-keyboard_git.bb | 4 +- 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-sato/matchbox-keyboard/files/add-lXrender-to-link.patch diff --git a/meta/recipes-sato/matchbox-keyboard/files/add-lXrender-to-link.patch b/meta/recipes-sato/matchbox-keyboard/files/add-lXrender-to-link.patch new file mode 100644 index 0000000..5f99d05 --- /dev/null +++ b/meta/recipes-sato/matchbox-keyboard/files/add-lXrender-to-link.patch @@ -0,0 +1,55 @@ +Add explict link against -lXrender to fix build error. + +Upstream-Status: Pending + +Signed-off-by: Lei Liu <lei.l...@windriver.com> +--- + configure.ac | 6 ++++++ + src/Makefile.am | 4 ++-- + 2 files changed, 8 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 9bbbd76..75bffee 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -65,6 +65,9 @@ AC_ARG_WITH(expat-lib, + PKG_CHECK_MODULES(FAKEKEY, libfakekey,, + AC_MSG_ERROR([*** You need to install libfakekey from MB SVN ***])) + ++PKG_CHECK_MODULES(XRENDER, xrender,, ++ AC_MSG_ERROR([*** Required Xrender Library not found ***])) ++ + if test x$enable_cairo = xyes; then + PKG_CHECK_MODULES(CAIRO, cairo,, [enable_cairo="no"]) + fi +@@ -202,6 +205,9 @@ AC_SUBST(EXPAT_CFLAGS) + AC_SUBST(PNG_LIBS) + AC_SUBST(PNG_CFLAGS) + ++AC_SUBST(XRENDER_LIBS) ++AC_SUBST(XRENDER_CFLAGS) ++ + AC_OUTPUT([ + Makefile + src/Makefile +diff --git a/src/Makefile.am b/src/Makefile.am +index 6dc986e..6df9480 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -12,11 +12,11 @@ XFT_BACKEND_C = \ + matchbox-keyboard-ui-xft-backend.h + endif + +-INCLUDES = -DDATADIR=\"$(DATADIR)\" -DPKGDATADIR=\"$(PKGDATADIR)\" -DPREFIX=\"$(PREFIXDIR)\" $(FAKEKEY_CFLAGS) $(XFT_CFLAGS) $(EXPAT_CFLAGS) $(CAIRO_CFLAGS) $(PNG_CFLAGS) ++INCLUDES = -DDATADIR=\"$(DATADIR)\" -DPKGDATADIR=\"$(PKGDATADIR)\" -DPREFIX=\"$(PREFIXDIR)\" $(FAKEKEY_CFLAGS) $(XFT_CFLAGS) $(EXPAT_CFLAGS) $(CAIRO_CFLAGS) $(PNG_CFLAGS) $(XRENDER_CFLAGS) + + bin_PROGRAMS = matchbox-keyboard + +-matchbox_keyboard_LDADD = $(FAKEKEY_LIBS) $(XFT_LIBS) $(EXPAT_LIBS) $(CAIRO_LIBS) $(PNG_LIBS) ++matchbox_keyboard_LDADD = $(FAKEKEY_LIBS) $(XFT_LIBS) $(EXPAT_LIBS) $(CAIRO_LIBS) $(PNG_LIBS) $(XRENDER_LIBS) + + matchbox_keyboard_SOURCES = \ + matchbox-keyboard.c matchbox-keyboard.h \ +-- +1.7.0.4 + diff --git a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb index ffcabca..85e856f 100644 --- a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb +++ b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb @@ -18,7 +18,9 @@ SRC_URI = "git://git.yoctoproject.org/${BPN} \ file://configure_fix.patch;maxrev=1819 \ file://single-instance.patch \ file://80matchboxkeyboard.shbg \ - file://png-fix.patch" + file://png-fix.patch \ + file://add-lXrender-to-link.patch \ + " S = "${WORKDIR}/git" -- 1.8.1.2.545.g2f19ada _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core