summaryrefslogtreecommitdiff
path: root/apu-config.in
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2008-05-22 22:37:19 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2008-05-22 22:37:19 +0000
commitca488ed89eafdb07a18b0ca76499540ae6729375 (patch)
tree605e58d63f1c4aff757f38d9950b758bea44da1e /apu-config.in
parent80ef8ad94cd72967f073d9e54103f0ea38a4f03b (diff)
downloadlibapr-util-ca488ed89eafdb07a18b0ca76499540ae6729375.tar.gz
Introduce an internal apu_dso API for loading modular components into the
core library, even across multiple consumers. Rearranges apr_dbd into this schema to ensure consumers do not corrupt one another, and to respect the platform specific shared lib search path - especially for pre-installation `make check`. Abstracts ldap into the apu_dso schema, with a note in CHANGES for changes required by apps which consume the ldap library directly. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@659293 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apu-config.in')
-rw-r--r--apu-config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/apu-config.in b/apu-config.in
index cb28dc25..650aab4e 100644
--- a/apu-config.in
+++ b/apu-config.in
@@ -30,6 +30,7 @@ includedir="@includedir@"
LIBS="@APRUTIL_EXPORT_LIBS@"
INCLUDES="@APRUTIL_INCLUDES@"
LDFLAGS="@APRUTIL_LDFLAGS@"
+LDAP_LIBS="@LDADD_ldap@"
APRUTIL_LIBNAME="@APRUTIL_LIBNAME@"
@@ -53,6 +54,7 @@ Known values for OPTION are:
--includedir print location where headers are installed
--ldflags print linker flags
--libs print library information
+ --ldap-libs print additional library information to link with ldap
--srcdir print APR-util source directory
--link-ld print link switch(es) for linking to APR-util
--link-libtool print the libtool inputs for linking to APR-util
@@ -112,6 +114,9 @@ while test $# -gt 0; do
--libs)
flags="$flags $LIBS"
;;
+ --ldap-libs)
+ flags="$flags $LDAP_LIBS"
+ ;;
--includedir)
if test "$location" = "installed"; then
flags="$includedir"