bjh 01/06/27 18:57:05
Modified: . configure.in
Log:
We don't have apr_lock_create_np() on OS/2, override the test that thinks
it might due to having a working flock.
Revision Changes Path
1.321 +8 -0 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.320
retrieving revision 1.321
diff -u -r1.320 -r1.321
--- configure.in 2001/06/27 16:44:40 1.320
+++ configure.in 2001/06/28 01:57:02 1.321
@@ -988,6 +988,14 @@
lockcreatenp="1"
fi
+case "$OS" in
+ *-os2*)
+ # The above tests detect a working flock on OS/2
+ # but we don't want to use it when we have native locks
+ lockcreatenp="0"
+ ;;
+esac
+
AC_SUBST(hasflockser)
AC_SUBST(hassysvser)
AC_SUBST(hasfcntlser)