summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-13 08:17:33 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-13 08:17:33 +0000
commitd643d0ee456f9aa0972e9c5b7467864623756b10 (patch)
tree4fb64bc949049e09afc40702b157d7de22d7092a /configure.in
parentfe54634d698def66b935762348cc8a5bfd6db689 (diff)
downloadlibapr-d643d0ee456f9aa0972e9c5b7467864623756b10.tar.gz
Move some of the mingw-specific checks into the hints m4 file instead.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@421539 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
1 files changed, 3 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 8a0af99b3..07a68c3e7 100644
--- a/configure.in
+++ b/configure.in
@@ -1707,11 +1707,6 @@ APR_IFALLYES(header:OS.h func:create_sem,
if test "x$apr_lock_method" != "x"; then
APR_DECISION_FORCE($apr_lock_method)
fi
-case "$host" in
- *mingw* )
- APR_DECISION_FORCE(win32)
- ;;
-esac
APR_END_DECISION
AC_DEFINE_UNQUOTED($ac_decision)
@@ -2086,12 +2081,9 @@ AC_CHECK_FUNCS(nl_langinfo)
dnl Do we have a Win32-centric Unicode FS?
-have_unicode_fs="0"
-case "$host" in
- *mingw* )
- have_unicode_fs="1"
- ;;
-esac
+if test -z "$have_unicode_fs"; then
+ have_unicode_fs="0"
+fi
AC_SUBST(have_unicode_fs)