2001-04-17 08:23:06 -04:00
|
|
|
#! /bin/sh
|
2006-05-02 18:48:22 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
2001-04-17 08:23:06 -04:00
|
|
|
#
|
2009-03-20 08:42:29 -04:00
|
|
|
# Copyright (C) 2001 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-05-02 18:48:22 -04:00
|
|
|
#
|
|
|
|
# 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://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
2001-04-17 08:23:06 -04:00
|
|
|
#
|
|
|
|
# $Id$
|
2006-05-02 18:48:22 -04:00
|
|
|
###########################################################################
|
2009-03-20 08:42:29 -04:00
|
|
|
|
2001-04-17 08:23:06 -04:00
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
includedir=@includedir@
|
|
|
|
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
|
|
|
Usage: curl-config [OPTION]
|
|
|
|
|
2001-04-18 05:28:55 -04:00
|
|
|
Available values for OPTION include:
|
2001-04-17 08:23:06 -04:00
|
|
|
|
2002-08-30 07:00:54 -04:00
|
|
|
--ca ca bundle install path
|
2002-01-16 09:20:06 -05:00
|
|
|
--cc compiler
|
2001-04-18 05:28:55 -04:00
|
|
|
--cflags pre-processor and compiler flags
|
2006-05-02 18:48:22 -04:00
|
|
|
--checkfor [version] check for (lib)curl of the specified version
|
2004-12-24 03:59:44 -05:00
|
|
|
--features newline separated list of enabled features
|
2001-04-18 05:28:55 -04:00
|
|
|
--help display this help and exit
|
|
|
|
--libs library linking information
|
|
|
|
--prefix curl install prefix
|
2007-10-25 18:30:35 -04:00
|
|
|
--protocols newline separated list of enabled protocols
|
|
|
|
--static-libs static libcurl library linking information
|
2001-04-18 05:28:55 -04:00
|
|
|
--version output version information
|
2001-06-01 17:56:58 -04:00
|
|
|
--vernum output the version information as a number (hexadecimal)
|
2001-04-17 08:23:06 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
if test $# -eq 0; then
|
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
while test $# -gt 0; do
|
|
|
|
case "$1" in
|
2001-04-17 08:37:38 -04:00
|
|
|
# this deals with options in the style
|
|
|
|
# --option=value and extracts the value part
|
|
|
|
# [not currently used]
|
|
|
|
-*=*) value=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|
|
|
*) value= ;;
|
2001-04-17 08:23:06 -04:00
|
|
|
esac
|
|
|
|
|
|
|
|
case "$1" in
|
2002-08-30 07:00:54 -04:00
|
|
|
--ca)
|
2004-12-11 13:47:22 -05:00
|
|
|
echo "@CURL_CA_BUNDLE@"
|
2002-08-30 07:00:54 -04:00
|
|
|
;;
|
|
|
|
|
2002-01-16 09:20:06 -05:00
|
|
|
--cc)
|
2004-12-11 13:47:22 -05:00
|
|
|
echo "@CC@"
|
2002-01-16 09:20:06 -05:00
|
|
|
;;
|
|
|
|
|
2001-04-17 08:23:06 -04:00
|
|
|
--prefix)
|
2004-12-11 13:47:22 -05:00
|
|
|
echo "$prefix"
|
2001-04-17 08:23:06 -04:00
|
|
|
;;
|
|
|
|
|
2004-12-24 03:59:44 -05:00
|
|
|
--feature|--features)
|
2008-09-03 15:10:48 -04:00
|
|
|
for feature in @SUPPORT_FEATURES@ ""; do
|
|
|
|
test -n "$feature" && echo "$feature"
|
2008-09-02 08:07:08 -04:00
|
|
|
done
|
2004-12-24 03:59:44 -05:00
|
|
|
;;
|
|
|
|
|
|
|
|
--protocols)
|
2008-09-02 08:07:08 -04:00
|
|
|
for protocol in @SUPPORT_PROTOCOLS@; do
|
2008-09-03 07:17:20 -04:00
|
|
|
echo "$protocol"
|
2008-09-02 08:07:08 -04:00
|
|
|
done
|
2001-04-18 05:28:55 -04:00
|
|
|
;;
|
2001-04-17 08:23:06 -04:00
|
|
|
--version)
|
2001-04-17 08:32:37 -04:00
|
|
|
echo libcurl @VERSION@
|
2001-04-17 08:23:06 -04:00
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
|
2006-05-02 18:48:22 -04:00
|
|
|
--checkfor)
|
|
|
|
checkfor=$2
|
|
|
|
cmajor=`echo $checkfor | cut -d. -f1`
|
|
|
|
cminor=`echo $checkfor | cut -d. -f2`
|
|
|
|
# when extracting the patch part we strip off everything after a
|
|
|
|
# dash as that's used for things like version 1.2.3-CVS
|
|
|
|
cpatch=`echo $checkfor | cut -d. -f3 | cut -d- -f1`
|
|
|
|
checknum=`echo "$cmajor*256*256 + $cminor*256 + ${cpatch:-0}" | bc`
|
|
|
|
numuppercase=`echo @VERSIONNUM@ | tr 'a-f' 'A-F'`
|
|
|
|
nownum=`echo "obase=10; ibase=16; $numuppercase" | bc`
|
|
|
|
|
|
|
|
if test "$nownum" -ge "$checknum"; then
|
|
|
|
# silent success
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
echo "requested version $checkfor is newer than existing @VERSION@"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
2001-05-28 10:58:07 -04:00
|
|
|
--vernum)
|
|
|
|
echo @VERSIONNUM@
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
|
2001-04-17 08:23:06 -04:00
|
|
|
--help)
|
|
|
|
usage 0
|
|
|
|
;;
|
|
|
|
|
|
|
|
--cflags)
|
2003-01-16 05:58:49 -05:00
|
|
|
if test "X@includedir@" = "X/usr/include"; then
|
|
|
|
echo ""
|
|
|
|
else
|
|
|
|
echo "-I@includedir@"
|
|
|
|
fi
|
2001-08-16 09:02:46 -04:00
|
|
|
;;
|
|
|
|
|
2001-04-17 08:23:06 -04:00
|
|
|
--libs)
|
2008-01-10 17:14:02 -05:00
|
|
|
if test "X@libdir@" != "X/usr/lib" -a "X@libdir@" != "X/usr/lib64"; then
|
2007-02-14 13:13:16 -05:00
|
|
|
CURLLIBDIR="-L@libdir@ "
|
|
|
|
else
|
|
|
|
CURLLIBDIR=""
|
|
|
|
fi
|
2007-02-13 22:00:08 -05:00
|
|
|
if test "X@REQUIRE_LIB_DEPS@" = "Xyes"; then
|
2007-02-17 12:55:19 -05:00
|
|
|
echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
|
2007-02-13 22:00:08 -05:00
|
|
|
else
|
2007-02-17 12:55:19 -05:00
|
|
|
echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBS@
|
2007-02-13 22:00:08 -05:00
|
|
|
fi
|
|
|
|
;;
|
2001-04-17 08:23:06 -04:00
|
|
|
|
2007-10-25 18:30:35 -04:00
|
|
|
--static-libs)
|
|
|
|
echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
|
|
|
|
;;
|
|
|
|
|
2001-04-17 08:23:06 -04:00
|
|
|
*)
|
2001-08-16 09:05:00 -04:00
|
|
|
echo "unknown option: $1"
|
2004-12-24 03:59:44 -05:00
|
|
|
usage 1
|
2001-04-17 08:23:06 -04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|