diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-07-15 16:11:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-07-15 18:28:36 +0200 |
commit | e03f6d5e956b348c142d0ffd9f89af845f05eb86 (patch) | |
tree | 8acca5f1fe4941f91d03f72c02055292ee94008e /gnu/packages | |
parent | b42d45088d19069c960cf8c3301449730917a02d (diff) | |
download | patches-e03f6d5e956b348c142d0ffd9f89af845f05eb86.tar patches-e03f6d5e956b348c142d0ffd9f89af845f05eb86.tar.gz |
gnu: libpcap: Enable plain "linux" backend.
* gnu/packages/admin.scm (libpcap)[arguments]: Add "--with-pcap=linux"
configure flag.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/admin.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index c96e11635b..5b5659910c 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -476,7 +476,8 @@ tools: server, client, and relay agent.") "14wyjywrdi1ikaj6yc9c72m6m2r64z94lb0gm7k1a3q6q5cj3scs")))) (build-system gnu-build-system) (native-inputs `(("bison" ,bison) ("flex" ,flex))) - (arguments '(#:tests? #f)) ; no 'check' target + (arguments '(#:configure-flags '("--with-pcap=linux") + #:tests? #f)) ; no 'check' target (home-page "http://www.tcpdump.org") (synopsis "Network packet capture library") (description |