aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/ppp/patches/300-filter-pcap-includes-lib.patch
blob: 40866132e8a8e8387ce5cb42e8728a703d16d90f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
build: Add required CFLAGS for libpcap

This patch adds some flags to required to properly link libpcap within the
OpenWrt environment.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>

--- a/pppd/Makefile.linux
+++ b/pppd/Makefile.linux
@@ -190,8 +190,8 @@ endif
 
 ifdef FILTER
 ifneq ($(wildcard /usr/include/pcap-bpf.h),)
-LIBS    += -lpcap
-CFLAGS  += -DPPP_FILTER
+LIBS    += -lpcap -L$(STAGING_DIR)/usr/lib
+CFLAGS  += -DPPP_FILTER -I$(STAGING_DIR)/usr/include
 endif
 endif