diff options
author | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2002-05-15 17:37:59 +0000 |
---|---|---|
committer | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2002-05-15 17:37:59 +0000 |
commit | cc59d9c4a6cd90a5239e0787652db2f2ae5e937f (patch) | |
tree | 1007538a1a06dad973d48c92a39183a9f706cef5 /apr-config.in | |
parent | 9f8e0f4b7bb1aa46ba4774c1cb46f310c64bf84e (diff) | |
download | libapr-cc59d9c4a6cd90a5239e0787652db2f2ae5e937f.tar.gz |
expose the name of the shared library path variable
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63401 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r-- | apr-config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apr-config.in b/apr-config.in index d80ed2d15..bc3383bdf 100644 --- a/apr-config.in +++ b/apr-config.in @@ -91,6 +91,7 @@ Known values for OPTION are: --srcdir print APR source directory --link-ld print link switch(es) for linking to APR --link-libtool print the libtool inputs for linking to APR + --shlib-path-var print the name of the shard library path env var --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 @@ -198,6 +199,10 @@ while test $# -gt 0; do flags="$flags $LA_FILE" fi ;; + --shlib-path-var) + echo "$SHLIBPATH_VAR" + exit 0 + ;; --apr-la-file) if test -f "$LA_FILE"; then flags="$flags $LA_FILE" |