You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2005/05/06 16:29:49 UTC

svn commit: r168607 - /apr/apr/trunk/build/apr_hints.m4

Author: jorton
Date: Fri May  6 07:29:49 2005
New Revision: 168607

URL: http://svn.apache.org/viewcvs?rev=168607&view=rev
Log:
Committed to 0.9.x but missing from HEAD:

* build/apr_hints.m4 (APR_PRELOAD): NetBSD fcntl() confounds
O_NONBLOCK inheritance test, so work around it.

Modified:
    apr/apr/trunk/build/apr_hints.m4

Modified: apr/apr/trunk/build/apr_hints.m4
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/build/apr_hints.m4?rev=168607&r1=168606&r2=168607&view=diff
==============================================================================
--- apr/apr/trunk/build/apr_hints.m4 (original)
+++ apr/apr/trunk/build/apr_hints.m4 Fri May  6 07:29:49 2005
@@ -152,6 +152,8 @@
 	;;
     *-netbsd*)
 	APR_ADDTO(CPPFLAGS, [-DNETBSD])
+        # fcntl() lies about O_NONBLOCK on an accept()ed socket (PR kern/26950)
+        APR_SETIFNULL(ac_cv_o_nonblock_inherited, [yes])
 	;;
     *-freebsd*)
         APR_SETIFNULL(apr_lock_method, [USE_FLOCK_SERIALIZE])