jerenkrantz 01/07/02 09:23:49
Modified: . configure.in Log: fcntl() should be our preference for the short-term. Our support of pthread_mutex_t needs more work before we can make it the default (if that's what we want anyway). Revision Changes Path 1.324 +1 -1 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.323 retrieving revision 1.324 diff -u -r1.323 -r1.324 --- configure.in 2001/07/01 05:49:43 1.323 +++ configure.in 2001/07/02 16:23:45 1.324 @@ -967,8 +967,8 @@ # See which lock mechanisms we can support on this system. APR_IFALLYES(func:semget func:semctl, hassysvser="1", hassysvser="0") APR_IFALLYES(func:flock define:LOCK_EX, hasflockser="1", hasflockser="0") -APR_IFALLYES(header:fcntl.h define:F_SETLK, hasfcntlser="1", hasfcntlser="0") APR_IFALLYES(header:pthread.h define:PTHREAD_PROCESS_SHARED func:pthread_mutexattr_setpshared, hasprocpthreadser="1", hasprocpthreadser="0") +APR_IFALLYES(header:fcntl.h define:F_SETLK, hasfcntlser="1", hasfcntlser="0") APR_IFALLYES(struct:pthread_rw, hasrwlockser="1", hasrwlockser="0") # See which lock mechanism we'll select by default on this system.
