You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
Index: Makefile.in |
|
--- Makefile.in.orig 2018-07-22 19:08:39.000000000 +0200 |
|
+++ Makefile.in 2018-07-22 23:34:19.209689000 +0200 |
|
@@ -47,7 +47,7 @@ |
|
LD = /usr/bin/ld |
|
CC = @CC@ |
|
AR = @AR@ |
|
-LN_S = @LN_S@ |
|
+LN_S = ln |
|
MKDEP = @MKDEP@ |
|
CCOPT = @V_CCOPT@ |
|
SHLIB_CCOPT = @V_SHLIB_CCOPT@ |
|
@@ -379,7 +379,7 @@ |
|
Win32/Prj/wpcap.vcxproj \ |
|
Win32/Prj/wpcap.vcxproj.filters |
|
|
|
-all: libpcap.a shared $(BUILD_RPCAPD) libpcap.pc pcap-config |
|
+all: libpcap.a $(BUILD_RPCAPD) libpcap.pc pcap-config |
|
|
|
libpcap.a: $(OBJ) |
|
@rm -f $@ |
|
@@ -538,7 +538,7 @@ |
|
|
|
FORCE: |
|
|
|
-install: install-shared install-archive libpcap.pc pcap-config @INSTALL_RPCAPD@ |
|
+install: install-archive libpcap.pc pcap-config @INSTALL_RPCAPD@ |
|
[ -d $(DESTDIR)$(libdir) ] || \ |
|
(mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir)) |
|
[ -d $(DESTDIR)$(includedir) ] || \ |
|
Index: pcap.h |
|
--- pcap.h.orig 2018-06-24 19:54:20.000000000 +0200 |
|
+++ pcap.h 2018-07-22 23:28:09.852874000 +0200 |
|
@@ -40,4 +40,4 @@ |
|
* OSes that have "helpfully" moved pcap.h to <pcap/pcap.h> without |
|
* leaving behind a <pcap.h> file. |
|
*/ |
|
-#include <pcap/pcap.h> |
|
+#include "pcap/pcap.h" |
|
Index: scanner.l |
|
--- scanner.l.orig 2018-06-24 19:54:20.000000000 +0200 |
|
+++ scanner.l 2018-07-22 23:28:09.853088000 +0200 |
|
@@ -162,13 +162,6 @@ |
|
B2 ([0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f]) |
|
W ([0-9A-Fa-f][0-9A-Fa-f]?[0-9A-Fa-f]?[0-9A-Fa-f]?) |
|
|
|
-%a 18400 |
|
-%o 21500 |
|
-%e 7600 |
|
-%k 4550 |
|
-%p 27600 |
|
-%n 2000 |
|
- |
|
V680 {W}:{W}:{W}:{W}:{W}:{W}:{W}:{W} |
|
|
|
V670 ::{W}:{W}:{W}:{W}:{W}:{W}:{W}
|
|
|