1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-17 14:05:25 +03:00
aports/testing/p0f/p0f-fixes.patch
Arch3y 87d740c28e testing/p0f: new aport
Passive traffic fingerprinting tool
http://lcamtuf.coredump.cx/p0f3/

[TT: modernize]
2017-08-29 07:21:40 +00:00

42 lines
1.1 KiB
Diff

--- p0f-3.09b.orig/build.sh
+++ p0f-3.09b/build.sh
@@ -13,12 +13,12 @@
test "$CC" = "" && CC="gcc"
-BASIC_CFLAGS="-Wall -Wno-format -I/usr/local/include/ \
+BASIC_CFLAGS="-Wall -Wno-format -I/usr/include/ \
-I/opt/local/include/ -DVERSION=\"$VERSION\" $CFLAGS"
-BASIC_LDFLAGS="-L/usr/local/lib/ -L/opt/local/lib $LDFLAGS"
+BASIC_LDFLAGS="-L/usr/lib/ -L/opt/local/lib $LDFLAGS"
-USE_CFLAGS="-fstack-protector-all -fPIE -D_FORTIFY_SOURCE=2 -g -ggdb \
+USE_CFLAGS="-fstack-protector-all -fPIE -D_FORTIFY_SOURCE=2 \
$BASIC_CFLAGS"
USE_LDFLAGS="-Wl,-z,relro -pie $BASIC_LDFLAGS"
--- p0f-3.09b.orig/config.h
+++ p0f-3.09b/config.h
@@ -20,7 +20,7 @@
/* Default location of p0f.fp: */
#ifndef FP_FILE
-# define FP_FILE "p0f.fp"
+# define FP_FILE "/etc/p0f/p0f.fp"
#endif /* !FP_FILE */
/* Initial permissions on log files: */
--- p0f-3.09b.orig/tools/Makefile
+++ p0f-3.09b/tools/Makefile
@@ -8,8 +8,8 @@
#
CC = gcc
-CFLAGS = -g -ggdb -Wall -Wno-format -funsigned-char
-LDFLAGS =
+CFLAGS = -Wall -Wno-format -funsigned-char
+LDFLAGS =
TARGETS = p0f-client p0f-sendsyn p0f-sendsyn6
all: $(TARGETS)