summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2009-09-09 22:48:53 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2009-09-09 22:48:53 +0000
commitee0ba64c0a898e84a8d453f5666bb5b5fe8bc84b (patch)
tree50269c30ede00254237e19da920bd9eefb1aede3 /apr-config.in
parenta78c71e3b3bd575d7d4006250ec031a0fd4d6eeb (diff)
downloadlibapr-ee0ba64c0a898e84a8d453f5666bb5b5fe8bc84b.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: http://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"
;;