summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-02-08 20:27:27 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-02-08 20:27:27 +0000
commitc8363d0fd95f96d4cef060468f9c31dca11b6ccb (patch)
treeb56469887359d797b70478c4b8f8d332d74d2912 /apr-config.in
parentcfc5a55b9dfedc773b0cfe310ed58754613bac62 (diff)
downloadapr-c8363d0fd95f96d4cef060468f9c31dca11b6ccb.tar.gz
Add apr-so-ext and apr-lib-target which the APR-util build system depends on.
(It was previously getting them from APRVARS, but let's remove that dependency from apr-util.) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62935 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/apr-config.in b/apr-config.in
index 56c5d9aed..831454634 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -90,6 +90,8 @@ Known values for OPTION are:
--link-ld print link switch(es) for linking to APR
--link-libtool print the libtool inputs for linking to APR
--apr-la-file print the path to the .la file, if available
+ --apr-so-ext print the extensions of shared objects on this platform
+ --apr-lib-target print the libtool target information
--help print this help
When linking with libtool, an application should do something like:
@@ -189,6 +191,12 @@ while test $# -gt 0; do
flags="$flags $LA_FILE"
fi
;;
+ --apr-so-ext)
+ flags="$flags $APR_SO_EXT"
+ ;;
+ --apr-lib-target)
+ flags="$flags $APR_LIB_TARGET"
+ ;;
--help)
show_usage
exit 0