Is this acceptable to default the cache variables to simplify the needed
hints?
This changes the "mingw" case in configure.in:
--- ../configure.in 2006-09-08 16:41:45.000000000 +0000
+++ configure.in 2007-03-23 23:28:49.000000000 +0000
@@ -411,6 +411,17 @@
eolstr="\\n"
proc_mutex_is_global=1
OBJECTS_PLATFORM='$(OBJECTS_win32)'
+ if test "$cross_compiling" = yes; then
+ ac_cv_file__dev_zero=no
+ ac_cv_func_setpgrp_void=no
+ apr_cv_tcp_nodelay_with_cork=no
+ case $host in
+ *mingw32*)
+ ac_cv_sizeof_ssize_t=4
+ ac_cv_sizeof_size_t=4
+ ;;
+ esac
+ fi
;;
*cygwin*)
OSDIR="unix"