You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2001/07/31 08:15:41 UTC

cvs commit: apr/build apr_network.m4

jerenkrantz    01/07/30 23:15:41

  Modified:    build    apr_network.m4
  Log:
  Fix tpyo.
  (Caused getnameinfo to always be defined as present even when it is not.)
  
  Revision  Changes    Path
  1.8       +1 -1      apr/build/apr_network.m4
  
  Index: apr_network.m4
  ===================================================================
  RCS file: /home/cvs/apr/build/apr_network.m4,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- apr_network.m4	2001/07/31 02:10:11	1.7
  +++ apr_network.m4	2001/07/31 06:15:41	1.8
  @@ -98,7 +98,7 @@
   ],[
     ac_cv_working_getnameinfo="yes"
   ])])
  -if test "$ac_cv_working_getnameinfo"="yes"; then
  +if test "$ac_cv_working_getnameinfo" = "yes"; then
     AC_DEFINE(HAVE_GETNAMEINFO, 1, [Define if getnameinfo exists])
   fi
   ])