summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb2
-rw-r--r--meta-networking/recipes-support/ruli/ruli_0.36.bb4
-rw-r--r--meta-oe/recipes-core/safec/safec_3.7.1.bb3
3 files changed, 7 insertions, 2 deletions
diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb
index 6a62304a1c..7c849cf5e7 100644
--- a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb
+++ b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb
@@ -46,8 +46,6 @@ PARALLEL_MAKE = ""
46CCACHE = "" 46CCACHE = ""
47CLEANBROKEN = "1" 47CLEANBROKEN = "1"
48 48
49TARGET_CC_ARCH += "${LDFLAGS}"
50
51PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)} des smux" 49PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)} des smux"
52PACKAGECONFIG[des] = "--enable-des, --disable-des" 50PACKAGECONFIG[des] = "--enable-des, --disable-des"
53PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils" 51PACKAGECONFIG[elfutils] = "--with-elf, --without-elf, elfutils"
diff --git a/meta-networking/recipes-support/ruli/ruli_0.36.bb b/meta-networking/recipes-support/ruli/ruli_0.36.bb
index 178906b7b5..0526f842a8 100644
--- a/meta-networking/recipes-support/ruli/ruli_0.36.bb
+++ b/meta-networking/recipes-support/ruli/ruli_0.36.bb
@@ -18,6 +18,10 @@ SRC_URI = "http://download.savannah.gnu.org/releases/ruli/ruli_${PV}.orig.tar.gz
18SRC_URI[md5sum] = "e73fbfdeadddb68a703a70cea5271468" 18SRC_URI[md5sum] = "e73fbfdeadddb68a703a70cea5271468"
19SRC_URI[sha256sum] = "11d32def5b514748fbd9ea8c88049ae99e1bb358efc74eb91a4d268a3999dbfa" 19SRC_URI[sha256sum] = "11d32def5b514748fbd9ea8c88049ae99e1bb358efc74eb91a4d268a3999dbfa"
20 20
21# -shared is passed via CFLAGS, clang complains since its used during linking
22# and not compiling
23CFLAGS:append:toolchain-clang = " -Wno-error=unused-command-line-argument"
24
21EXTRA_OEMAKE = 'CC="${CC}" CPPFLAGS="${CFLAGS}" OOP_BASE_DIR="${STAGING_EXECPREFIXDIR}" \ 25EXTRA_OEMAKE = 'CC="${CC}" CPPFLAGS="${CFLAGS}" OOP_BASE_DIR="${STAGING_EXECPREFIXDIR}" \
22 INSTALL_BASE_DIR="${D}${exec_prefix}" \ 26 INSTALL_BASE_DIR="${D}${exec_prefix}" \
23 OOP_LIB_DIR=${STAGING_EXECPREFIXDIR}/${baselib} \ 27 OOP_LIB_DIR=${STAGING_EXECPREFIXDIR}/${baselib} \
diff --git a/meta-oe/recipes-core/safec/safec_3.7.1.bb b/meta-oe/recipes-core/safec/safec_3.7.1.bb
index a2f66e9a1a..4de58f5d63 100644
--- a/meta-oe/recipes-core/safec/safec_3.7.1.bb
+++ b/meta-oe/recipes-core/safec/safec_3.7.1.bb
@@ -10,6 +10,9 @@ SRCREV = "f9add9245b97c7bda6e28cceb0ee37fb7e254fd8"
10SRC_URI = "git://github.com/rurban/safeclib.git;branch=master;protocol=https \ 10SRC_URI = "git://github.com/rurban/safeclib.git;branch=master;protocol=https \
11 file://0001-strpbrk_s-Remove-unused-variable-len.patch \ 11 file://0001-strpbrk_s-Remove-unused-variable-len.patch \
12 " 12 "
13# arm-yoe-linux-gnueabi-clang: error: argument unused during compilation: '-mretpoline' [-Werror,-Wunused-command-line-argument]
14# arm-yoe-linux-gnueabi-clang: error: argument unused during compilation: '-fstack-clash-protection' [-Werror,-Wunused-command-line-argument]
15TUNE_CCARGS:append:toolchain-clang = " -Qunused-arguments"
13 16
14COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm|aarch64|mips).*-linux' 17COMPATIBLE_HOST = '(x86_64|i.86|powerpc|powerpc64|arm|aarch64|mips).*-linux'
15 18