[oe-commits] [meta-openembedded] 32/34: net-snmp: fix cross-compile breakage, add libnl pkgconfig option

git at git.openembedded.org git at git.openembedded.org
Wed Jan 27 12:03:29 UTC 2016


martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit d74aff81b7747106fbd4aafb25081847b27c4205
Author: Stephen Arnold <stephen.arnold42 at gmail.com>
AuthorDate: Tue Jan 26 17:29:21 2016 -0800

    net-snmp: fix cross-compile breakage, add libnl pkgconfig option
    
    This patch enhances a previously unapplied patch on jethro, plus adds
    some flexibility in terms of required deps and a few cleanups.
    
    Signed-off-by: Stephen Arnold <stephen.arnold42 at gmail.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
index 8364196..e8df06c 100644
--- a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
+++ b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
@@ -28,7 +28,7 @@ SRC_URI[sha256sum] = "e8dfc79b6539b71a6ff335746ce63d2da2239062ad41872fff4354cafe
 
 inherit autotools update-rc.d siteinfo systemd pkgconfig
 
-EXTRA_OEMAKE = "INSTALL_PREFIX=${D}"
+EXTRA_OEMAKE = "INSTALL_PREFIX=${D} OTHERLDFLAGS='${LDFLAGS}' HOST_CPPFLAGS='${BUILD_CPPFLAGS}'"
 
 PARALLEL_MAKE = ""
 CCACHE = ""
@@ -37,12 +37,13 @@ TARGET_CC_ARCH += "${LDFLAGS}"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils"
+PACKAGECONFIG[libnl] = "--with-nl, --without-nl, libnl"
 
 EXTRA_OECONF = "--disable-embedded-perl \
                 --with-perl-modules=no \
-                --enable-shared \
                 --disable-manuals \
                 --with-defaults \
+                --with-install-prefix=${D} \
                 --with-persistent-directory=${localstatedir}/lib/net-snmp \
                 ${@base_conditional('SITEINFO_ENDIANNESS', 'le', '--with-endianness=little', '--with-endianness=big', d)}"
 
@@ -52,10 +53,15 @@ EXTRA_OECONF += "--with-mib-modules=smux"
 CACHED_CONFIGUREVARS = " \
     ac_cv_header_valgrind_valgrind_h=no \
     ac_cv_header_valgrind_memcheck_h=no \
+    ac_cv_ETC_MNTTAB=/etc/mtab \
+    lt_cv_shlibpath_overrides_runpath=yes \
 "
 
 do_configure_prepend() {
     export PERLPROG="${bindir}/env perl"
+    sed -i -e "s|I/usr/include|I${STAGING_INCDIR}|g" \
+        "${S}"/configure \
+        "${S}"/configure.d/config_os_libs2
 }
 
 do_install_append() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list