#!/bin/sh
# ====================================================================
# Copyright (c) 2000-2004 CollabNet.  All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.  The terms
# are also available at http://subversion.tigris.org/license-1.html.
# If newer versions of this license are posted there, you may use a
# newer version instead, at your option.
#
# This software consists of voluntary contributions made by many
# individuals.  For exact contribution history, see the revision
# history and logs, available at http://subversion.tigris.org/.
# ====================================================================

# SVN script designed to allow easy command line access to SVN
# configuration parameters.

prefix="/usr"
exec_prefix="${prefix}"
bindir="${exec_prefix}/bin"
libdir="/usr/lib64"
includedir="${prefix}/include"

LIBS="/usr/lib64/libneon.la  -L/usr/lib64 -laprutil-1 -lldap -llber -ldb-4.3 -lexpat  -L/usr/lib64 -lapr-1 -lrt -lcrypt  -lpthread -ldl  -lz"
CFLAGS="-O2 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -g -fPIC -Wall -fno-strict-aliasing -DLDAP_DEPRECATED -Wall -g -fpie -fstack-protector   -pthread  -DNEON_ZLIB -DNEON_SSL"
CPPFLAGS="  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE"
INCLUDES="-I/usr/include/neon    -I/usr/include   -I/usr/include/apr-1 "
LDFLAGS="-pie    "


show_usage()
{
    cat << EOF
Usage: svn-config [OPTION]

Known values for OPTION are:
  --prefix[=DIR]    change prefix to DIR
  --cflags          print C compiler flags
  --cppflags        print cpp flags
  --includes        print include information
  --ldflags         print linker flags
  --libs            print library information
  --link-ld         [NOT IMPL] print link switch(es) for linking to SVN
  --link-libtool    [NOT IMPL] print the libtool inputs for linking to SVN
  --help            print this help

When linking with libtool, an application should do something like:
  SVN_LIBS="\`svn-config --link-libtool --libs\`"
or when linking directly:
  SVN_LIBS="\`svn-config --link-ld --libs\`"

An application should use the results of --cflags, --cppflags, --includes,
and --ldflags in their build process.
EOF
}

if test $# -eq 0; then
    show_usage
    exit 1
fi

flags=""

while test $# -gt 0; do
    # Normalize the prefix.
    case "$1" in
    -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
    *) optarg= ;;
    esac

    case "$1" in
    # It is possible for the user to override our prefix.
    --prefix=*)
    prefix=$optarg
    ;;
    --prefix)
    echo $prefix
    exit 0
    ;;
    --cflags)
    flags="$flags $CFLAGS"
    ;;
    --cppflags)
    flags="$flags $CPPFLAGS"
    ;;
    --libs)
    flags="$flags $LIBS"
    ;;
    --includes)
        flags="$flags -I$includedir/subversion-1 $INCLUDES"
    ;;
    --ldflags)
    flags="$flags $LDFLAGS"
    ;;
    --help)
    show_usage
    exit 0
    ;;
    *)
    show_usage
    exit 1
    ;;
    esac

    # Next please.
    shift
done

if test -n "$flags"; then
  echo "$flags"
fi

exit 0
