summaryrefslogtreecommitdiff
path: root/neon-config.in
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2008-02-06 11:12:09 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2008-02-06 11:12:09 +0000
commitc92a77e27dd0fc6b909a28139df15938a6353172 (patch)
tree66940d63e45c406ddc48c05d74c25cc02b807912 /neon-config.in
parent9f338bf2a7059f619361dfb5b95618d9eb87a8ed (diff)
downloadneon-c92a77e27dd0fc6b909a28139df15938a6353172.tar.gz
Revert diff r1320:r1314.
git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1323 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'neon-config.in')
-rw-r--r--neon-config.in23
1 files changed, 2 insertions, 21 deletions
diff --git a/neon-config.in b/neon-config.in
index 1114cde..3475122 100644
--- a/neon-config.in
+++ b/neon-config.in
@@ -1,6 +1,6 @@
#! /bin/sh
# Originally from libxml, Copyright (C) Daniel Veillard
-# Adapted for neon, Copyright (C) 2000-2008 Joe Orton.
+# Modifications for neon Copyright (C) 2000-2006 Joe Orton.
prefix=@prefix@
exec_prefix=@exec_prefix@
@@ -17,9 +17,7 @@ Known values for OPTION are:
--prefix=DIR change neon prefix [default $prefix]
--libs print library linking information
--la-file print location of libtool .la file
- --la-file=gnutls print location of libneon-gnutls .la file
--cflags print pre-processor and compiler flags
- --cflags-gnutls print additional CFLAGS needed by ne_gnutls.h
--help display this help and exit
--version output version information
--support FEATURE exit with success if feature is supported
@@ -70,14 +68,6 @@ while test $# -gt 0; do
usage 0
;;
- --cflags=gnutls)
- if [ "x@NE_SSL_LIBNAME@" = "xgnutls" ]; then
- echo @NE_SSL_CFLAGS@
- else
- echo neon-config: GnuTLS toolkit interface not supported
- fi
- ;;
-
--cflags)
echo -I${includedir}/neon @NEON_CFLAGS@
;;
@@ -95,14 +85,6 @@ while test $# -gt 0; do
echo ${libdir}/libneon.la
;;
- --la-file=gnutls)
- if [ "x@NE_SSL_LIBNAME@" = "xgnutls" ]; then
- echo ${libdir}/libneon-gnutls.la
- else
- echo neon-config: GnuTLS toolkit interface not supported
- fi
- ;;
-
--support)
shift
@@ -119,8 +101,7 @@ while test $# -gt 0; do
;;
*)
- echo "neon-config: unrecognized option $1, see --help" 1>&2
- exit 1
+ usage 1 1>&2
;;
esac
shift