You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fi...@apache.org on 2003/04/02 00:28:36 UTC

cvs commit: apr CHANGES configure.in

fielding    2003/04/01 14:28:36

  Modified:    .        CHANGES configure.in
  Log:
  Don't add the math library (-lm) if the modf() function
  is already available via libc.
  
  Revision  Changes    Path
  1.395     +3 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.394
  retrieving revision 1.395
  diff -u -r1.394 -r1.395
  --- CHANGES	1 Apr 2003 00:15:03 -0000	1.394
  +++ CHANGES	1 Apr 2003 22:28:35 -0000	1.395
  @@ -1,5 +1,8 @@
   Changes with APR 0.9.4
   
  +  *) Don't add the math library (-lm) if the modf() function
  +     is already available via libc.  [Roy Fielding]
  +
     *) Solaris cc: Don't use the -mt option for threaded builds.  That
        is for non-Posix threading, and the use of it prevented us from
        linking with -lpthread, which in turn caused weird problems for
  
  
  
  1.522     +1 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.521
  retrieving revision 1.522
  diff -u -r1.521 -r1.522
  --- configure.in	27 Mar 2003 20:34:30 -0000	1.521
  +++ configure.in	1 Apr 2003 22:28:35 -0000	1.522
  @@ -487,7 +487,7 @@
   AC_CHECK_LIB(socket, socket)
   AC_SEARCH_LIBS(crypt, crypt ufc)
   AC_CHECK_LIB(truerand, main)
  -AC_CHECK_LIB(m, modf)
  +AC_SEARCH_LIBS(modf, m)
   
   dnl ----------------------------- Checking for Threads
   echo "${nl}Checking for Threads..."