diff options
Diffstat (limited to 'recipes-daemons/ptpd/ptpd-qoriq/ptpd-use-pkgconfig.patch')
-rw-r--r-- | recipes-daemons/ptpd/ptpd-qoriq/ptpd-use-pkgconfig.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/recipes-daemons/ptpd/ptpd-qoriq/ptpd-use-pkgconfig.patch b/recipes-daemons/ptpd/ptpd-qoriq/ptpd-use-pkgconfig.patch deleted file mode 100644 index e4578dda..00000000 --- a/recipes-daemons/ptpd/ptpd-qoriq/ptpd-use-pkgconfig.patch +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | From 4c850b92a1cf8cfa19677c66bcde2edfab1a4490 Mon Sep 17 00:00:00 2001 | ||
2 | From: Joe MacDonald <joe_macdonald@mentor.com> | ||
3 | Date: Tue, 24 Feb 2015 23:02:14 -0500 | ||
4 | Subject: [PATCH] ptpd: use pkgconfig | ||
5 | |||
6 | Yocto uses pkg-config for libpcap, rather than pcap-config, so use that | ||
7 | instead as the source for libs and cflags. | ||
8 | |||
9 | Upstream-status: Inappropriate [ embedded specific ] | ||
10 | |||
11 | Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com> | ||
12 | --- | ||
13 | configure.ac | 4 ++-- | ||
14 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/configure.ac b/configure.ac | ||
17 | index dc9541f..288f547 100644 | ||
18 | --- a/configure.ac | ||
19 | +++ b/configure.ac | ||
20 | @@ -112,10 +112,10 @@ case "$try_pcap" in | ||
21 | yes) | ||
22 | case "$PATH_PCAP_CONFIG" in | ||
23 | /*) | ||
24 | - PCAP_LIBS=`$PATH_PCAP_CONFIG --libs` | ||
25 | + PCAP_LIBS=`$PATH_PCAP_CONFIG --libs libpcap` | ||
26 | AC_SUBST([PCAP_LIBS]) | ||
27 | # Separate CPPFLAGS and CFLAGS | ||
28 | - foo=`$PATH_PCAP_CONFIG --cflags` | ||
29 | + foo=`$PATH_PCAP_CONFIG --cflags libpcap` | ||
30 | PCAP_CPPFLAGS= | ||
31 | PCAP_CFLAGS= | ||
32 | for i in $foo; do | ||
33 | -- | ||
34 | 1.9.1 | ||
35 | |||