summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-10-16 12:49:18 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-10-16 12:49:18 +0000
commitbb6b1aed1a1cf8cdcff988ad0f1d26c2a5a62c4a (patch)
treef58d4e6be4cb70ce93e14a1121987492613d2949 /build
parent21f5cd4567adf05074deea2e4aad74a796ea1bbd (diff)
downloadlibapr-bb6b1aed1a1cf8cdcff988ad0f1d26c2a5a62c4a.tar.gz
In Autoconf, it's good practice to use "dnl" only when commenting on an
m4 construct, or something which doesn't end up in the configure script. But otherwise, '#' should be used, so that the configure script can be debugged more easily. This fixes some uses of "dnl" which should be "#", and removes uses of the redundant "dnl #" oddity. Submitted by: Joe Orton <joe@manyfish.co.uk> Reviewed by: Jeff Trawick git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/apr_common.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/build/apr_common.m4 b/build/apr_common.m4
index 0210e8371..61b6b830a 100644
--- a/build/apr_common.m4
+++ b/build/apr_common.m4
@@ -524,8 +524,8 @@ dnl
if test "$ac_cv_crypt_r_style" = "cryptd"; then
AC_DEFINE(CRYPT_R_CRYPTD, 1, [Define if crypt_r has uses CRYPTD])
fi
-dnl if we don't combine these conditions, CRYPT_R_STRUCT_CRYPT_DATA
-dnl will end up defined twice
+# if we don't combine these conditions, CRYPT_R_STRUCT_CRYPT_DATA
+# will end up defined twice
if test "$ac_cv_crypt_r_style" = "struct_crypt_data" -o \
"$ac_cv_crypt_r_style" = "struct_crypt_data_gnu_source"; then
AC_DEFINE(CRYPT_R_STRUCT_CRYPT_DATA, 1, [Define if crypt_r uses struct crypt_data])