jim 01/01/11 05:55:59
Modified: . apr_common.m4
Log:
Add some verbosity to what we are doing. Doing apr_common.m4
things in the dark and without people's knowledge causes
mucho pain
Revision Changes Path
1.11 +4 -1 apr/apr_common.m4
Index: apr_common.m4
===================================================================
RCS file: /home/cvs/apr/apr_common.m4,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- apr_common.m4 2001/01/08 23:02:56 1.10
+++ apr_common.m4 2001/01/11 13:55:58 1.11
@@ -260,6 +260,7 @@
dnl
AC_DEFUN(APR_SETIFNULL,[
if test -z "$$1"; then
+ echo " Setting $1 to \"$2\""
$1="$2"; export $1
fi
])
@@ -270,6 +271,7 @@
dnl Set variable no matter what
dnl
AC_DEFUN(APR_SETVAR,[
+ echo " Forcing $1 to \"$2\""
$1="$2"; export $1
])
@@ -279,6 +281,7 @@
dnl Add value to variable
dnl
AC_DEFUN(APR_ADDTO,[
- $1="$$1 $2"; export $1
+ echo " Adding \"$2\" to $1"
+ $1="$$1 $2"; export $1
])