diff options
| author | Stephen Arnold <stephen.arnold42@gmail.com> | 2016-01-26 17:29:21 -0800 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2016-04-17 12:42:43 -0700 |
| commit | 8b03f47c22d8104bb0a1613c0db77c37ac891d8a (patch) | |
| tree | a4658942a19db83a4034c0ef1c4fb17563bf9cf1 /meta-networking | |
| parent | beaa9a80c435f1fabd13c38a365804714338e66e (diff) | |
| download | meta-openembedded-8b03f47c22d8104bb0a1613c0db77c37ac891d8a.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>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-networking')
| -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 b32d842de9..93eb0252d2 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 | |||
| @@ -27,7 +27,7 @@ SRC_URI[sha256sum] = "e8dfc79b6539b71a6ff335746ce63d2da2239062ad41872fff4354cafe | |||
| 27 | 27 | ||
| 28 | inherit autotools update-rc.d siteinfo systemd pkgconfig | 28 | inherit autotools update-rc.d siteinfo systemd pkgconfig |
| 29 | 29 | ||
| 30 | EXTRA_OEMAKE = "INSTALL_PREFIX=${D}" | 30 | EXTRA_OEMAKE = "INSTALL_PREFIX=${D} OTHERLDFLAGS='${LDFLAGS}' HOST_CPPFLAGS='${BUILD_CPPFLAGS}'" |
| 31 | 31 | ||
| 32 | PARALLEL_MAKE = "" | 32 | PARALLEL_MAKE = "" |
| 33 | CCACHE = "" | 33 | CCACHE = "" |
| @@ -36,12 +36,13 @@ TARGET_CC_ARCH += "${LDFLAGS}" | |||
| 36 | 36 | ||
| 37 | PACKAGECONFIG ??= "" | 37 | PACKAGECONFIG ??= "" |
| 38 | PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils" | 38 | PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils" |
| 39 | PACKAGECONFIG[libnl] = "--with-nl, --without-nl, libnl" | ||
| 39 | 40 | ||
| 40 | EXTRA_OECONF = "--disable-embedded-perl \ | 41 | EXTRA_OECONF = "--disable-embedded-perl \ |
| 41 | --with-perl-modules=no \ | 42 | --with-perl-modules=no \ |
| 42 | --enable-shared \ | ||
| 43 | --disable-manuals \ | 43 | --disable-manuals \ |
| 44 | --with-defaults \ | 44 | --with-defaults \ |
| 45 | --with-install-prefix=${D} \ | ||
| 45 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ | 46 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ |
| 46 | ${@base_conditional('SITEINFO_ENDIANNESS', 'le', '--with-endianness=little', '--with-endianness=big', d)}" | 47 | ${@base_conditional('SITEINFO_ENDIANNESS', 'le', '--with-endianness=little', '--with-endianness=big', d)}" |
| 47 | 48 | ||
| @@ -51,10 +52,15 @@ EXTRA_OECONF += "--with-mib-modules=smux" | |||
| 51 | CACHED_CONFIGUREVARS = " \ | 52 | CACHED_CONFIGUREVARS = " \ |
| 52 | ac_cv_header_valgrind_valgrind_h=no \ | 53 | ac_cv_header_valgrind_valgrind_h=no \ |
| 53 | ac_cv_header_valgrind_memcheck_h=no \ | 54 | ac_cv_header_valgrind_memcheck_h=no \ |
| 55 | ac_cv_ETC_MNTTAB=/etc/mtab \ | ||
| 56 | lt_cv_shlibpath_overrides_runpath=yes \ | ||
| 54 | " | 57 | " |
| 55 | 58 | ||
| 56 | do_configure_prepend() { | 59 | do_configure_prepend() { |
| 57 | export PERLPROG="${bindir}/env perl" | 60 | export PERLPROG="${bindir}/env perl" |
| 61 | sed -i -e "s|I/usr/include|I${STAGING_INCDIR}|g" \ | ||
| 62 | "${S}"/configure \ | ||
| 63 | "${S}"/configure.d/config_os_libs2 | ||
| 58 | } | 64 | } |
| 59 | 65 | ||
| 60 | do_install_append() { | 66 | do_install_append() { |
