summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-12 02:55:26 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-12 02:55:26 +0000
commit2801cea962d9e9346b089ff7a154979fca7d0ae7 (patch)
tree0967d14c4389748dcf561d143f4a47332eb48271 /configure.in
parentd11ecd01b9096c0e6f7472689a844e6505f1cfab (diff)
downloadlibapr-2801cea962d9e9346b089ff7a154979fca7d0ae7.tar.gz
Allow mingw to have access to the Win32 'unicode' FS system.
Originally titled: [patch 06/17] Win32 unicode filesystem Submitted by: John Mark Vandenberg Reviewed by: Justin Erenkrantz git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@421094 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 2356acdb2..8a0af99b3 100644
--- a/configure.in
+++ b/configure.in
@@ -2084,6 +2084,17 @@ dnl Check for langinfo support
AC_CHECK_HEADERS(langinfo.h)
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
+
+AC_SUBST(have_unicode_fs)
+
dnl ----------------------------- Finalize the variables
echo "${nl}Restore user-defined environment settings..."