]> The Tcpdump Group git mirrors - libpcap/blob - pcap-config.in
Update CHANGES for USB fixes.
[libpcap] / pcap-config.in
1 #! /bin/sh
2
3 #
4 # Script to give the appropriate compiler flags and linker flags
5 # to use when building code that uses libpcap.
6 #
7 case "$1" in
8
9 --cflags)
10 echo "-I @includedir@"
11 ;;
12
13 --libs)
14 echo "-L @libdir@ -lpcap @DEPLIBS@"
15 ;;
16 esac