librevenge: add -lboost_system to pkgconfig

In current masters of out meta-verse this is required to fix dependent
libraries fail during link:

| /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/librevenge-0.0.so: undefined reference to `boost::system::system_category()'
| /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/librevenge-0.0.so: undefined reference to `boost::system::generic_category()'

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
This commit is contained in:
Andreas Müller
2016-02-22 23:29:15 +01:00
parent 7dc442f71e
commit 4d6113c7f4

View File

@@ -14,3 +14,7 @@ inherit autotools pkgconfig
DEPENDS = "cppunit zlib boost"
BBCLASSEXTEND = "native"
do_install_append() {
sed -i '/^Libs:/ s/$/ -lboost_system/' ${D}${libdir}/pkgconfig/librevenge-0.0.pc
}