summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch')
-rw-r--r--meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch b/meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch
deleted file mode 100644
index e077a29ecd..0000000000
--- a/meta/recipes-connectivity/libpcap/libpcap-1.3.0/0001-The-leading-comma-looked-weird-remove-it.patch
+++ /dev/null
@@ -1,54 +0,0 @@
1Upstream-Status: Backport
2
3From fffa60a0693182085a7d4351150137eda26dbf82 Mon Sep 17 00:00:00 2001
4From: Guy Harris <guy@alum.mit.edu>
5Date: Wed, 13 Jun 2012 12:20:19 -0700
6Subject: [PATCH] The leading comma looked weird; remove it.
7
8That might be how the --disable-canusb bug got in. Hopefully this will
9make the code look a little clearer and possibly avoid future bugs of
10that sort.
11
12sgw - Cleaned up the patch based on another patch
13Signed-off-by: Saul Wold <sgw@linux.intel.com>
14---
15 configure.in | 9 ++++++---
16 1 file changed, 6 insertions(+), 3 deletions(-)
17
18Index: libpcap-1.3.0/configure.in
19===================================================================
20--- libpcap-1.3.0.orig/configure.in
21+++ libpcap-1.3.0/configure.in
22@@ -1371,7 +1371,8 @@ AC_SUBST(NETFILTER_SRC)
23
24 AC_ARG_ENABLE([bluetooth],
25 [AC_HELP_STRING([--enable-bluetooth],[enable Bluetooth support @<:@default=yes, if support available@:>@])],
26-,enable_bluetooth=yes)
27+ [],
28+ [enable_bluetooth=yes])
29
30 if test "x$enable_bluetooth" != "xno" ; then
31 dnl check for Bluetooth sniffing support
32@@ -1395,8 +1396,10 @@ if test "x$enable_bluetooth" != "xno" ;
33 fi
34
35 AC_ARG_ENABLE([canusb],
36-[AC_HELP_STRING([--enable-canusb],[enable canusb support @<:@default=yes, if support available@:>@])]
37-,enable_canusb=yes)
38+[AC_HELP_STRING([--enable-canusb],[enable canusb support @<:@default=yes, if support available@:>@])],
39+ [],
40+ [enable_canusb=yes])
41+
42
43 if test "x$enable_canusb" != "xno" ; then
44 dnl check for canusb support
45@@ -1422,7 +1425,8 @@ fi
46
47 AC_ARG_ENABLE([can],
48 [AC_HELP_STRING([--enable-can],[enable CAN support @<:@default=yes, if support available@:>@])],
49-,enable_can=yes)
50+ [],
51+ [enable_can=yes])
52
53 if test "x$enable_can" != "xno" ; then
54 dnl check for CAN sniffing support