#!/bin/sh
#
# Nessus libraries configuration script
#
# by Renaud Deraison - <deraison@cvs.nessus.org>
#
# Thanks to the GTK team for the idea.
#
# Some code comes from gtk-config
#
#


PREFIX=/usr/local
LIBDIR=$PREFIX/lib
INCLUDEDIR=$PREFIX/include
VERSION=1.2.5

usage()
{
 echo "Usage : nasl-config [ --cflags | --libs | --version ]"
 exit $1
}


test $# -gt 0 || usage 1

# check whether we have echo -n, depending
# on the current shell, used
case `echo -n` in
\-n)	Xn=   ; Xc='\c' ;;
*)	Xn=-n ; Xc=
esac


while test $# -gt 0; do
 case "$1" in
	--version)
		echo $VERSION
		exit 0
		;;
	--libs)
		echo $Xn "-L$LIBDIR -lnasl $Xc"
		;;
	--cflags)
		echo $Xn "-I$INCLUDEDIR $Xc"
		;;
	--help | -h)
		usage 0
		;;
	*)
		usage 1
		;;
 esac
 shift
done

echo 	
	
