summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-12-29 23:14:22 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-12-29 23:14:22 +0000
commit4f9f87c87fa9ec66b2574f14fa454099e6e0f17f (patch)
treeccd3de96eba5c37b36a3b2b4f2438d151757188a /configure.in
parent715322934f6467641f88031f401014ab02491962 (diff)
downloadlibapr-4f9f87c87fa9ec66b2574f14fa454099e6e0f17f.tar.gz
roll the extra apr_lock_create_np() functionality into apr_lock_create()
and get rid of apr_lock_create_np(); apr_lock_create() has a new parameter for specifying the lock mechanism (or APR_LOCK_DEFAULT to let APR choose) (same for apr_proc_mutex_create_np() and apr_proc_mutex_create()) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62684 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in19
1 files changed, 0 insertions, 19 deletions
diff --git a/configure.in b/configure.in
index c67793817..f6c4b4205 100644
--- a/configure.in
+++ b/configure.in
@@ -1152,24 +1152,6 @@ case $ac_decision in
;;
esac
-if test "$flockser$sysvser$fcntlser$procpthreadser" = "0000"; then
- lockcreatenp="0"
-else
- lockcreatenp="1"
-fi
-
-case $host 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"
- ;;
- *-beos*)
- # This applies to beos as well
- lockcreatenp="0"
- ;;
-esac
-
AC_SUBST(hasflockser)
AC_SUBST(hassysvser)
AC_SUBST(hasfcntlser)
@@ -1180,7 +1162,6 @@ AC_SUBST(sysvser)
AC_SUBST(fcntlser)
AC_SUBST(procpthreadser)
AC_SUBST(pthreadser)
-AC_SUBST(lockcreatenp)
AC_MSG_CHECKING(if interprocess lock affects threads)
if test "x$apr_process_lock_is_global" = "xyes"; then