You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by da...@apache.org on 2007/06/29 18:37:27 UTC

svn commit: r551949 - in /apr/apr-util/branches/1.2.x: CHANGES build/apu-hints.m4

Author: davi
Date: Fri Jun 29 09:37:25 2007
New Revision: 551949

URL: http://svn.apache.org/viewvc?view=rev&rev=551949
Log:
Merge revision 551946 from trunk:

Solaris 2.8+ fdatasync is part of the Realtime Extensions library.
PR: 37343

Modified:
    apr/apr-util/branches/1.2.x/CHANGES
    apr/apr-util/branches/1.2.x/build/apu-hints.m4

Modified: apr/apr-util/branches/1.2.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/CHANGES?view=diff&rev=551949&r1=551948&r2=551949
==============================================================================
--- apr/apr-util/branches/1.2.x/CHANGES (original)
+++ apr/apr-util/branches/1.2.x/CHANGES Fri Jun 29 09:37:25 2007
@@ -1,5 +1,9 @@
 Changes with APR-util 1.2.9
 
+  *) Fix Solaris 2.8+ fdatasync() detection. The fdatasync() function
+     is marked as part of the Realtime library functions.
+     PR 37343.  [Davi Arnaut]
+
   *) Change configure's expat detection to use standard linker-based
      tests, fixing build on e.g. biarch Linux systems.  PR 28205.
      [Joe Orton, Ruediger Pluem]     

Modified: apr/apr-util/branches/1.2.x/build/apu-hints.m4
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/build/apu-hints.m4?view=diff&rev=551949&r1=551948&r2=551949
==============================================================================
--- apr/apr-util/branches/1.2.x/build/apu-hints.m4 (original)
+++ apr/apr-util/branches/1.2.x/build/apu-hints.m4 Fri Jun 29 09:37:25 2007
@@ -49,6 +49,7 @@
     *-solaris2*)
         APR_SETIFNULL(apu_iconv_inbuf_const, [1])
         APR_SETIFNULL(apu_crypt_threadsafe, [1])
+        AC_SEARCH_LIBS(fdatasync, [rt posix4])
         ;;
     *-sco3.2v5*)
 	APR_SETIFNULL(apu_db_xtra_libs, [-lsocket])