]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/libpcap/pcap-config.in
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / 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