summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-23 21:33:01 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-23 21:33:01 +0000
commit1cf73003ed7f74b7f868299dbbdfca45f4ca72b8 (patch)
tree2daf6ea59b08f53ce4f2e95e858154a1805c2e4f /configure.in
parent07705e23a0483208ae81e5dcdc9f4f29bd368afe (diff)
downloadlibapr-1cf73003ed7f74b7f868299dbbdfca45f4ca72b8.tar.gz
fix a typo which broke the check for whether share memory is file based
or mem based git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61288 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 78d8a7edd..9fd951c29 100644
--- a/configure.in
+++ b/configure.in
@@ -203,7 +203,7 @@ AC_SUBST(keybased_shm)
APR_CHECK_DEFINE(MM_SHMT_MMFILE, $srcdir/shmem/unix/mm/mm_conf.h)
-if test "ac_cv_define_MM_SHMT_MMFILE" = "yes"; then
+if test "$ac_cv_define_MM_SHMT_MMFILE" = "yes"; then
file_based="1"
mem_based="0"
else