configure: Disable VxD and DOS modules when 16-bit support is disabled.
diff --git a/configure b/configure
index d51df86..2b9b4e4 100755
--- a/configure
+++ b/configure
Binary files differ
diff --git a/configure.ac b/configure.ac
index ad1cdd7..8db0c51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -124,12 +124,16 @@
 
 dnl enable_win16 defaults to yes on x86, to no on other CPUs
 case $host_cpu in
-  *i[[3456789]]86*)
-    enable_win16=${enable_win16:-yes}
-    ;;
-  *)
-    enable_win16=${enable_win16:-no}
-dnl disable some modules by default on non-x86
+  *i[[3456789]]86*) enable_win16=${enable_win16:-yes} ;;
+  *)                enable_win16=${enable_win16:-no} ;;
+esac
+
+AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
+AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
+if test "x$enable_win16" != "xyes"
+then
+    WIN16_FILES=""
+    WIN16_INSTALL=""
     enable_ifsmgr_vxd=${enable_ifsmgr_vxd:-no}
     enable_mmdevldr_vxd=${enable_mmdevldr_vxd:-no}
     enable_monodebg_vxd=${enable_monodebg_vxd:-no}
@@ -142,15 +146,6 @@
     enable_w32skrnl=${enable_w32skrnl:-no}
     enable_winedos=${enable_winedos:-no}
     enable_winevdm=${enable_winevdm:-no}
-    ;;
-esac
-   
-AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
-AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
-if test "x$enable_win16" != "xyes"
-then
-  WIN16_FILES=""
-  WIN16_INSTALL=""
 fi
 
 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,