[oe-commits] Denis 'GNUtoo' Carikli : ekiga_git: fix configure not finding boost signals

git version control git at git.openembedded.org
Sun Mar 27 00:04:27 UTC 2011


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 40225fbb406dbeb07101c54b2a1da00b564a3262
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=40225fbb406dbeb07101c54b2a1da00b564a3262

Author: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>
Date:   Sat Mar 26 18:03:50 2011 +0100

ekiga_git: fix configure not finding boost signals

Without that fix we have that in the configure log:
  checking whether the Boost::Signals library is available... yes
  checking for main in -lboost_signals-mt... no
  checking for main in -lboost_signals-boost_signals-mt... no
But looking at config.log reveal something more problematic:
  configure:17760: checking for main in -lboost_signals-mt
  configure:17779: arm-angstrom-linux-gnueabi-g++ [...] -o conftest [...] -I/usr/include [...] -L/usr/lib conftest.cpp -lboost_signals-mt   >&5
  /usr/lib/libboost_signals-mt.so: file not recognized: File format not recognized
Wich is fixed by this commit.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>

---

 recipes/ekiga/ekiga_git.bb |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes/ekiga/ekiga_git.bb b/recipes/ekiga/ekiga_git.bb
index 025767b..1926b52 100644
--- a/recipes/ekiga/ekiga_git.bb
+++ b/recipes/ekiga/ekiga_git.bb
@@ -7,7 +7,7 @@ DEFAULT_PREFERENCE = "-1"
 DEFAULT_PREFERENCE_angstrom = "1"
 
 PV = "3.3.1+git"
-PR = "r6+gitr${SRCREV}"
+PR = "r7+gitr${SRCREV}"
 SRCREV = "7c669dd4ce69296f09004f8876366058c20a3352"
 
 inherit gnome
@@ -27,7 +27,8 @@ EXTRA_OECONF = " \
   --enable-gstreamer \
   --disable-gdu \
   --disable-scrollkeeper  \
-  --with-boost-signals=boost_signals-mt \
+  --with-boost=${STAGING_DIR} \
+  --with-boost-signals=boost_signals \
 "
 
 do_configure_prepend() {





More information about the Openembedded-commits mailing list