This just fixes some AC_MSG_RESULT()s to not include double quotes, e.g.
checking if APR supports IPv6... "yes"
and also removes the stray semi-colons.
--- configure.in.msg 2002-10-15 21:10:07.000000000 +0100
+++ configure.in 2002-10-15 21:13:35.000000000 +0100
@@ -1771,25 +1771,25 @@
AC_MSG_CHECKING(if APR supports IPv6)
have_ipv6="0"
if test "$user_disabled_ipv6" = 1; then
- AC_MSG_RESULT("no -- disabled by user")
+ AC_MSG_RESULT([no -- disabled by user])
else
if test "x$broken_ipv6" = "x0"; then
if test "x$have_sockaddr_in6" = "x1"; then
if test "x$ac_cv_working_getaddrinfo" = "xyes"; then
if test "x$ac_cv_working_getnameinfo" = "xyes"; then
have_ipv6="1"
- AC_MSG_RESULT("yes")
+ AC_MSG_RESULT([yes])
else
- AC_MSG_RESULT("no -- no getnameinfo")
+ AC_MSG_RESULT([no -- no getnameinfo])
fi
else
- AC_MSG_RESULT("no -- no working getaddrinfo")
+ AC_MSG_RESULT([no -- no working getaddrinfo])
fi
else
- AC_MSG_RESULT("no -- no sockaddr_in6");
+ AC_MSG_RESULT([no -- no sockaddr_in6])
fi
else
- AC_MSG_RESULT("no -- the platform has problems supporting IPv6");
+ AC_MSG_RESULT([no -- the platform has problems supporting IPv6])
fi
fi