jerenkrantz 02/02/08 12:27:27
Modified: . apr-config.in
Log:
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.)
Revision Changes Path
1.9 +8 -0 apr/apr-config.in
Index: apr-config.in
===================================================================
RCS file: /home/cvs/apr/apr-config.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- apr-config.in 6 Feb 2002 21:12:08 -0000 1.8
+++ apr-config.in 8 Feb 2002 20:27:27 -0000 1.9
@@ -90,6 +90,8 @@
--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:
@@ -188,6 +190,12 @@
if test -f "$LA_FILE"; then
flags="$flags $LA_FILE"
fi
+ ;;
+ --apr-so-ext)
+ flags="$flags $APR_SO_EXT"
+ ;;
+ --apr-lib-target)
+ flags="$flags $APR_LIB_TARGET"
;;
--help)
show_usage