diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-07-12 11:28:25 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-07-12 11:28:25 +0200 |
commit | 863800b1019cc92d6c20de4a9d5cd02682ad9177 (patch) | |
tree | 87fda1a33072cd5299382870cb751662ba23f307 /netsniff-ng/Makefile | |
parent | d026932f69d66778f518196c79886fecafc95621 (diff) |
bpf_comp: pass NEED_TCPDUMP_LIKE_FILTER through gcc
We have to pass NEED_TCPDUMP_LIKE_FILTER define through gcc as it
otherwise is not possible to let the pcap compiler invoke through
netsniff-ng, but not through astraceroute.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'netsniff-ng/Makefile')
-rw-r--r-- | netsniff-ng/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netsniff-ng/Makefile b/netsniff-ng/Makefile index 683db4f..790c7c4 100644 --- a/netsniff-ng/Makefile +++ b/netsniff-ng/Makefile @@ -75,4 +75,4 @@ endif netsniff-ng-eflags = $(shell pkg-config --cflags libnl-3.0) \ $(shell pkg-config --cflags libnl-genl-3.0) \ - -DHAVE_DISSECTOR_PROTOS + -DHAVE_DISSECTOR_PROTOS -DNEED_TCPDUMP_LIKE_FILTER |