summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2009-09-09 22:48:53 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2009-09-09 22:48:53 +0000
commit95bdc6c441a7fddf59af49809cf7e69cc01bbf34 (patch)
tree50269c30ede00254237e19da920bd9eefb1aede3 /apr-config.in
parentedd83a9a9e4c0ff23f7e96d048913a3525aae587 (diff)
downloadapr-95bdc6c441a7fddf59af49809cf7e69cc01bbf34.tar.gz
Revert r799085 for now; vote on the list was to retain this functionality
until the APR 2.0.0 rollout, to help ease developers into a new ldap interface, or to drop the ldap interface altogether. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@813152 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/apr-config.in b/apr-config.in
index 84b407356..e6b518137 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -44,6 +44,7 @@ APR_BUILD_DIR="@apr_builddir@"
APR_SO_EXT="@so_ext@"
APR_LIB_TARGET="@export_lib_target@"
APR_LIBNAME="@APR_LIBNAME@"
+LDAP_LIBS="@LDADD_ldap@"
# NOTE: the following line is modified during 'make install': alter with care!
location=@APR_CONFIG_LOCATION@
@@ -64,6 +65,7 @@ Known values for OPTION are:
--includes print include information
--ldflags print linker flags
--libs print additional libraries to link against
+ --ldap-libs print additional library information to link with ldap
--srcdir print APR source directory
--installbuilddir print APR build helper directory
--link-ld print link switch(es) for linking to APR
@@ -148,6 +150,9 @@ while test $# -gt 0; do
--libs)
flags="$flags $LIBS"
;;
+ --ldap-libs)
+ flags="$flags $LDAP_LIBS"
+ ;;
--ldflags)
flags="$flags $LDFLAGS"
;;