summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2009-07-29 21:29:42 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2009-07-29 21:29:42 +0000
commit09d2d9c7c12f8bf4d58467d28212dc3a845d625d (patch)
treef48f820252a122506e3e6a88ef8e6b3242807814 /apr-config.in
parenta535e219bb09d7a82a4e2f6f9a95a0b1a24d0c87 (diff)
downloadapr-09d2d9c7c12f8bf4d58467d28212dc3a845d625d.tar.gz
Drop incomplete abstrations from apr-2.0; for today, simply omit the ability
to inspect ldap linkage binding. apr_ldap either needs to be refactored as a proper abstration or dropped from the apr 'suite' of portability abstractions, as previously discussed on list. This commit might encourge some forward progress to accomplishing this. Note there is nothing wrong with abstracting our build/autogunk m4 macros to the point where authors can borrow the logic when they want an apr-ish method of picking one of many interfaces. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@799085 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in5
1 files changed, 0 insertions, 5 deletions
diff --git a/apr-config.in b/apr-config.in
index e6b518137..84b407356 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -44,7 +44,6 @@ 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@
@@ -65,7 +64,6 @@ 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
@@ -150,9 +148,6 @@ while test $# -gt 0; do
--libs)
flags="$flags $LIBS"
;;
- --ldap-libs)
- flags="$flags $LDAP_LIBS"
- ;;
--ldflags)
flags="$flags $LDFLAGS"
;;