summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFranklin S. Cooper Jr <fcooper@ti.com>2014-06-12 13:10:58 -0500
committerJoe MacDonald <joe_macdonald@mentor.com>2014-06-24 22:08:06 -0400
commite659d5692b4f93d9e3065d1272e4560c68c25f28 (patch)
tree5858c2cf1ed7fcc4b54056cd6da22394d86d14b9
parent4fcc5cc1cca20d7c772f7c8b1999ef15fd2dc260 (diff)
downloadmeta-openembedded-e659d5692b4f93d9e3065d1272e4560c68c25f28.tar.gz
ptpd: update to 2.3.0
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r--meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch37
-rw-r--r--meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb (renamed from meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb)21
2 files changed, 11 insertions, 47 deletions
diff --git a/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch b/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch
deleted file mode 100644
index 7d5251be3d..0000000000
--- a/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1Patch from http://patch-tracker.debian.org/package/ptpd
2
3Description: Fix ld --as-needed
4 This patch fixes the order of gcc arguments to fix ld --as-needed
5Author: Roland Stigge <stigge@antcom.de>
6Bug-Debian: http://bugs.debian.org/607583
7
8Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
9---
10 src/Makefile | 4 ++--
11 1 files changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/src/Makefile b/src/Makefile
14index a672625..88a2fc8 100644
15--- a/src/Makefile
16+++ b/src/Makefile
17@@ -40,7 +40,7 @@ CFLAGS += -DDBG_SIGUSR2_CHANGE_DEBUG
18
19 CFLAGS += -DPTP_EXPERIMENTAL
20
21-LDFLAGS+= -lm -lrt
22+LIBS += -lm -lrt
23
24 PROG = ptpd
25 SRCS = ptpd.c arith.c bmc.c protocol.c display.c\
26@@ -63,7 +63,7 @@ TAGFILES = GPATH GRTAGS GSYMS GTAGS cscope.in.out cscope.out cscope.po.out
27 all: $(PROG)
28
29 $(PROG): $(OBJS)
30- $(CC) -o $@ $(OBJS) $(LDFLAGS)
31+ $(CC) -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
32
33 $(OBJS): $(HDRS)
34
35--
361.7.4
37
diff --git a/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
index f2e895d1ca..54679dcf1d 100644
--- a/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
+++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
@@ -6,23 +6,24 @@ time coordination of LAN connected computers."
6HOMEPAGE = "http://sourceforge.net/projects/ptpd" 6HOMEPAGE = "http://sourceforge.net/projects/ptpd"
7SECTION = "network" 7SECTION = "network"
8LICENSE = "BSD" 8LICENSE = "BSD"
9LIC_FILES_CHKSUM = "file://../COPYRIGHT;md5=3d8ac2c46c116bce2d2ad838b6cf3491" 9LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
10 10
11PR = "r1" 11DEPENDS = "libpcap"
12 12
13SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz \ 13inherit autotools
14 file://ld-as-needed.patch;striplevel=2 \
15"
16 14
17SRC_URI[md5sum] = "c63a3a149d30c710773ccb02df5782a3" 15SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz"
18SRC_URI[sha256sum] = "f2266a22db84318d8b9ce266ea83772c03438c31f4993fa9643fa675a07c26b4"
19 16
20S = "${WORKDIR}/ptpd-${PV}/src" 17S = "${WORKDIR}/ptpd-${PV}"
18SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
19SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
21 20
22EXTRA_OEMAKE = "" 21EXTRA_OEMAKE = ""
23 22
23EXTRA_OECONF += "--disable-snmp"
24
24do_install() { 25do_install() {
25 install -d ${D}${bindir} ${D}${mandir}/man8 26 install -d ${D}${bindir} ${D}${mandir}/man8
26 install -m 0755 ptpd2 ${D}${bindir} 27 install -m 0755 ${B}/src/ptpd2 ${D}${bindir}
27 install -m 0644 ptpd2.8 ${D}${mandir}/man8 28 install -m 0644 ${B}/src/ptpd2.8 ${D}${mandir}/man8
28} 29}