#!/bin/sh

prefix="/usr"
exec_prefix="/usr"
VERSION="1.6.17"
CFLAGS="-Wstrict-prototypes -Wwrite-strings -W -Wall -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -fno-strict-aliasing"
CPPFLAGS="  -I/usr/include/python2.7"
LDFLAGS="  -L/usr/lib64 -lpython2.7"
LIBS="  -lcrypto -ldl"
LIBDIR="/usr/lib64"
INCLUDEDIR="/usr/include"
LIBVERSION="@LIBLDNS_CURRENT@.@LIBLDNS_REVISION@.@LIBLDNS_AGE@"

for arg in $@
do
    if [ $arg = "--cflags" ]
    then
        echo "-I${INCLUDEDIR}"
    fi
    if [ $arg = "--libs" ]
    then
        echo "${LDFLAGS} -L${LIBDIR} ${LIBS} -lldns"
    fi
    if [ $arg = "-h" ] || [ $arg = "--help" ]
    then
        echo "Usage: $0 [--cflags] [--libs] [--version]"
    fi
    if [ $arg = "--version" ]
    then
        echo "${VERSION}"
    fi
    if [ $arg = "--libversion" ]
    then
        echo "${LIBVERSION}"
    fi
done
