pcap-config.in revision 190214
1229997Sken#! /bin/sh
2229997Sken
3229997Sken#
4229997Sken# Script to give the appropriate compiler flags and linker flags
5229997Sken# to use when building code that uses libpcap.
6229997Sken#
7229997Skencase "$1" in
8229997Sken
9--cflags)
10	echo "-I @includedir@"
11	;;
12
13--libs)
14	echo "-L @libdir@ -lpcap @DEPLIBS@"
15	;;
16esac
17