summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-01-30 19:27:56 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-07 12:24:11 +0100
commitbe4ab74d321dc5055e66681311bdd9c953b48fe5 (patch)
tree7d9b7912e8b55fd729631b3e9d7b52088c050b48
parent60ad5b9dac3385929ff425dd34032e5a7a74e814 (diff)
downloadbuildroot-be4ab74d321dc5055e66681311bdd9c953b48fe5.tar.gz
buildroot-be4ab74d321dc5055e66681311bdd9c953b48fe5.zip
package/iperf3: fix musl build
Ported -D_GNU_SOURCE from https://dev.openwrt.org/changeset/45103 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/iperf3/0002-Fix-build-using-musl-libc.patch43
-rw-r--r--package/iperf3/iperf3.mk2
2 files changed, 45 insertions, 0 deletions
diff --git a/package/iperf3/0002-Fix-build-using-musl-libc.patch b/package/iperf3/0002-Fix-build-using-musl-libc.patch
new file mode 100644
index 0000000000..f2203605f0
--- /dev/null
+++ b/package/iperf3/0002-Fix-build-using-musl-libc.patch
@@ -0,0 +1,43 @@
+From 1fe02385b60c9dcd8a04b8bd3ff5cff120ec35a6 Mon Sep 17 00:00:00 2001
+From: Bernd Kuhls <bernd.kuhls@t-online.de>
+Date: Sat, 30 Jan 2016 19:23:20 +0100
+Subject: [PATCH 1/1] Fix build using musl libc
+
+Fixes https://github.com/esnet/iperf/issues/331
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+Patch sent upstream: https://github.com/esnet/iperf/pull/344
+
+ src/cjson.h | 2 ++
+ src/timer.h | 1 +
+ 2 files changed, 3 insertions(+)
+
+diff --git a/src/cjson.h b/src/cjson.h
+index d4449e6..7af19a9 100644
+--- a/src/cjson.h
++++ b/src/cjson.h
+@@ -23,6 +23,8 @@
+ #ifndef cJSON__h
+ #define cJSON__h
+
++#include <stdint.h>
++
+ #ifdef __cplusplus
+ extern "C"
+ {
+diff --git a/src/timer.h b/src/timer.h
+index 0f9c5eb..9b22b7f 100644
+--- a/src/timer.h
++++ b/src/timer.h
+@@ -30,6 +30,7 @@
+ #ifndef __TIMER_H
+ #define __TIMER_H
+
++#include <stdint.h>
+ #include <sys/time.h>
+
+ /* TimerClientData is an opaque value that tags along with a timer. The
+--
+2.7.0.rc3
+
diff --git a/package/iperf3/iperf3.mk b/package/iperf3/iperf3.mk
index 885a5990f8..74d6cce2be 100644
--- a/package/iperf3/iperf3.mk
+++ b/package/iperf3/iperf3.mk
@@ -9,4 +9,6 @@ IPERF3_SITE = $(call github,esnet,iperf,$(IPERF3_VERSION))
IPERF3_LICENSE = BSD-3c, BSD-2c, MIT
IPERF3_LICENSE_FILES = LICENSE
+IPERF3_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE"
+
$(eval $(autotools-package))
OpenPOWER on IntegriCloud