From: Baruch Siach Date: Fri, 16 Jun 2017 03:32:53 +0000 (+0300) Subject: aiccu: don't link with librt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=045eb96407e4d2f97df5fd3706d7e7a081b2555e;p=buildroot.git aiccu: don't link with librt Buildroot no longer supports toolchains with glibc older than 2.17, so there is no need to link with librt for clock_* system calls. Cc: Michael Rommel Signed-off-by: Baruch Siach Reviewed-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/aiccu/0003-clock-suite-functions-fix.patch b/package/aiccu/0003-clock-suite-functions-fix.patch deleted file mode 100644 index 365e72a227..0000000000 --- a/package/aiccu/0003-clock-suite-functions-fix.patch +++ /dev/null @@ -1,18 +0,0 @@ -aiccu: fix undefined reference to clock_* functions - -Since glibc 2.17 the clock_* suite functions are available directly in -the main C library. For previous versions we still need -lrt to link. - -Signed-off-by: Vicente Olivert Riera - ---- aiccu/unix-console/Makefile.orig 2014-01-14 10:17:20.204602513 +0000 -+++ aiccu/unix-console/Makefile 2014-01-14 10:17:31.435777359 +0000 -@@ -42,7 +42,7 @@ CFLAGS += -D AICCU_CONSOLE - # Currently defaultly builds only on Linux, but other platforms might easily also support it - ifeq ($(shell uname | grep -c "Linux"),1) - CFLAGS += -D AICCU_GNUTLS --LDFLAGS += -lgnutls -+LDFLAGS += -lgnutls -lrt - endif - - # Linux diff --git a/package/aiccu/0003-if-ether-header.patch b/package/aiccu/0003-if-ether-header.patch new file mode 100644 index 0000000000..48e8ceb6b1 --- /dev/null +++ b/package/aiccu/0003-if-ether-header.patch @@ -0,0 +1,23 @@ +musl does not allow using together with headers. +Since there are both netinet/if_ether.h and linux/if_ether.h providing +the same definitions, use linux/if_ether.h whenever other linux/* +headers are included. + +Signed-off-by: Alex Suykov + +--- aiccu/common/common.h ++++ aiccu/common/common.h +@@ -91,11 +91,12 @@ + #include + + #include +- #include + #ifdef linux + #include ++ #include + #include + #else ++ #include + #ifdef _DFBSD + #include + #else diff --git a/package/aiccu/0004-if-ether-header.patch b/package/aiccu/0004-if-ether-header.patch deleted file mode 100644 index 48e8ceb6b1..0000000000 --- a/package/aiccu/0004-if-ether-header.patch +++ /dev/null @@ -1,23 +0,0 @@ -musl does not allow using together with headers. -Since there are both netinet/if_ether.h and linux/if_ether.h providing -the same definitions, use linux/if_ether.h whenever other linux/* -headers are included. - -Signed-off-by: Alex Suykov - ---- aiccu/common/common.h -+++ aiccu/common/common.h -@@ -91,11 +91,12 @@ - #include - - #include -- #include - #ifdef linux - #include -+ #include - #include - #else -+ #include - #ifdef _DFBSD - #include - #else