linuxptp: Upgrade to 1.8

Fix build on musl along way

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Khem Raj
2017-07-17 20:10:07 -07:00
committed by Martin Jansa
parent b9d8854ec0
commit a8b542f399
3 changed files with 68 additions and 3 deletions
@@ -0,0 +1,26 @@
From b36cafdbcbe2193f5b669e703c608e19e23f80a3 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 15 Jul 2017 11:16:42 -0700
Subject: [PATCH 3/4] include missing time.h for time_t
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
util.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util.h b/util.h
index e912f19..3c634c1 100644
--- a/util.h
+++ b/util.h
@@ -22,7 +22,7 @@
#include "ddt.h"
#include "ether.h"
-
+#include <time.h>
/**
* Table of human readable strings, one for each port state.
*/
--
2.13.3
@@ -0,0 +1,36 @@
From 3cd28aa771934d9165ff0d7e19932cde65de3e52 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 15 Jul 2017 11:16:57 -0700
Subject: [PATCH 4/4] Adjust include header sequence to avoid duplicate
definitions on musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
raw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/raw.c b/raw.c
index f51c829..494ea7f 100644
--- a/raw.c
+++ b/raw.c
@@ -18,8 +18,6 @@
*/
#include <errno.h>
#include <fcntl.h>
-#include <linux/filter.h>
-#include <linux/if_ether.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <netinet/in.h>
@@ -32,6 +30,8 @@
#include <sys/types.h>
#include <unistd.h>
+#include <linux/filter.h>
+#include <linux/if_ether.h>
#include <linux/errqueue.h>
#include <linux/net_tstamp.h>
#include <linux/sockios.h>
--
2.13.3
@@ -4,10 +4,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "http://sourceforge.net/projects/linuxptp/files/v${PV}/linuxptp-${PV}.tgz \
file://build-Allow-CC-and-prefix-to-be-overriden.patch \
file://no-incdefs-using-host-headers.patch"
file://no-incdefs-using-host-headers.patch \
file://0003-include-missing-time.h-for-time_t.patch \
file://0004-Adjust-include-header-sequence-to-avoid-duplicate-de.patch \
"
SRC_URI[md5sum] = "6aa15d83f5a35f1fd076ba9adc4e7285"
SRC_URI[sha256sum] = "e7fd16a9f235b059be527bd512e86f0c1d9f2e7c36736e6d6d9727a4427ac14c"
SRC_URI[md5sum] = "5688cdfe57932273e1dbf35b3b97b9a0"
SRC_URI[sha256sum] = "fa8e00f6ec73cefa7bb313dce7f60dfe5eb9e2bde3353594e9ac18edc93e5165"
EXTRA_OEMAKE = "ARCH=${TARGET_ARCH} \
EXTRA_CFLAGS='-D_GNU_SOURCE -DHAVE_CLOCK_ADJTIME -DHAVE_POSIX_SPAWN -DHAVE_ONESTEP_SYNC ${CFLAGS}'"