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 2003/04/02 16:23:51 UTC

cvs commit: apr configure.in

trawick     2003/04/02 06:23:51

  Modified:    .        configure.in
  Log:
  fix the required set of libraries determined by apr on systems where
  there is a modf in libc but sqrt is in libm
  
  Revision  Changes    Path
  1.523     +1 -0      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.522
  retrieving revision 1.523
  diff -u -r1.522 -r1.523
  --- configure.in	1 Apr 2003 22:28:35 -0000	1.522
  +++ configure.in	2 Apr 2003 14:23:51 -0000	1.523
  @@ -488,6 +488,7 @@
   AC_SEARCH_LIBS(crypt, crypt ufc)
   AC_CHECK_LIB(truerand, main)
   AC_SEARCH_LIBS(modf, m)
  +AC_SEARCH_LIBS(sqrt, m)
   
   dnl ----------------------------- Checking for Threads
   echo "${nl}Checking for Threads..."