You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2002/10/15 22:47:12 UTC

cvs commit: apr configure.in

trawick     2002/10/15 13:47:11

  Modified:    .        configure.in
  Log:
  fix 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.
  
  Submitted by:	Joe Orton <jo...@manyfish.co.uk>
  Reviewed by:	Jeff Trawick
  
  Revision  Changes    Path
  1.485     +6 -6      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.484
  retrieving revision 1.485
  diff -u -r1.484 -r1.485
  --- configure.in	3 Oct 2002 15:31:49 -0000	1.484
  +++ configure.in	15 Oct 2002 20:47:11 -0000	1.485
  @@ -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