pcap-config.in   [plain text]


#! /bin/sh

#
# Script to give the appropriate compiler flags and linker flags
# to use when building code that uses libpcap.
#
case "$1" in

--cflags)
	echo ""
	;;

--libs)
	echo "-lpcap @DEPLIBS@"
	;;
esac