diff options
| author | Stephen Arnold <stephen.arnold42@gmail.com> | 2016-01-26 17:29:21 -0800 |
|---|---|---|
| committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-02-22 15:51:20 -0500 |
| commit | dafd61fa87c31fab97e36f71974fc097a1841c91 (patch) | |
| tree | fde9dc8eec81cbf8be198d1adde59152eecbb2be | |
| parent | 8895bd0b73cd6b7ed933737506fd03cf44e42530 (diff) | |
| download | meta-openembedded-dafd61fa87c31fab97e36f71974fc097a1841c91.tar.gz | |
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@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
| -rw-r--r-- | meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb | 10 |
1 files 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 83641964ba..e8df06c84a 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 | |||
| 28 | 28 | ||
| 29 | inherit autotools update-rc.d siteinfo systemd pkgconfig | 29 | inherit autotools update-rc.d siteinfo systemd pkgconfig |
| 30 | 30 | ||
| 31 | EXTRA_OEMAKE = "INSTALL_PREFIX=${D}" | 31 | EXTRA_OEMAKE = "INSTALL_PREFIX=${D} OTHERLDFLAGS='${LDFLAGS}' HOST_CPPFLAGS='${BUILD_CPPFLAGS}'" |
| 32 | 32 | ||
| 33 | PARALLEL_MAKE = "" | 33 | PARALLEL_MAKE = "" |
| 34 | CCACHE = "" | 34 | CCACHE = "" |
| @@ -37,12 +37,13 @@ TARGET_CC_ARCH += "${LDFLAGS}" | |||
| 37 | 37 | ||
| 38 | PACKAGECONFIG ??= "" | 38 | PACKAGECONFIG ??= "" |
| 39 | PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils" | 39 | PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils" |
| 40 | PACKAGECONFIG[libnl] = "--with-nl, --without-nl, libnl" | ||
| 40 | 41 | ||
| 41 | EXTRA_OECONF = "--disable-embedded-perl \ | 42 | EXTRA_OECONF = "--disable-embedded-perl \ |
| 42 | --with-perl-modules=no \ | 43 | --with-perl-modules=no \ |
| 43 | --enable-shared \ | ||
| 44 | --disable-manuals \ | 44 | --disable-manuals \ |
| 45 | --with-defaults \ | 45 | --with-defaults \ |
| 46 | --with-install-prefix=${D} \ | ||
| 46 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ | 47 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ |
| 47 | ${@base_conditional('SITEINFO_ENDIANNESS', 'le', '--with-endianness=little', '--with-endianness=big', d)}" | 48 | ${@base_conditional('SITEINFO_ENDIANNESS', 'le', '--with-endianness=little', '--with-endianness=big', d)}" |
| 48 | 49 | ||
| @@ -52,10 +53,15 @@ EXTRA_OECONF += "--with-mib-modules=smux" | |||
| 52 | CACHED_CONFIGUREVARS = " \ | 53 | CACHED_CONFIGUREVARS = " \ |
| 53 | ac_cv_header_valgrind_valgrind_h=no \ | 54 | ac_cv_header_valgrind_valgrind_h=no \ |
| 54 | ac_cv_header_valgrind_memcheck_h=no \ | 55 | ac_cv_header_valgrind_memcheck_h=no \ |
| 56 | ac_cv_ETC_MNTTAB=/etc/mtab \ | ||
| 57 | lt_cv_shlibpath_overrides_runpath=yes \ | ||
| 55 | " | 58 | " |
| 56 | 59 | ||
| 57 | do_configure_prepend() { | 60 | do_configure_prepend() { |
| 58 | export PERLPROG="${bindir}/env perl" | 61 | export PERLPROG="${bindir}/env perl" |
| 62 | sed -i -e "s|I/usr/include|I${STAGING_INCDIR}|g" \ | ||
| 63 | "${S}"/configure \ | ||
| 64 | "${S}"/configure.d/config_os_libs2 | ||
| 59 | } | 65 | } |
| 60 | 66 | ||
| 61 | do_install_append() { | 67 | do_install_append() { |
