wined3d: Disable vertex shaders when transformed vertices are used.
[wine] / configure
index b60889d..c80aa80 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for Wine 0.9.27.
+# Generated by GNU Autoconf 2.61 for Wine 0.9.32.
 #
 # Report bugs to <wine-devel@winehq.org>.
 #
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='Wine'
 PACKAGE_TARNAME='wine'
-PACKAGE_VERSION='0.9.27'
-PACKAGE_STRING='Wine 0.9.27'
+PACKAGE_VERSION='0.9.32'
+PACKAGE_STRING='Wine 0.9.32'
 PACKAGE_BUGREPORT='wine-devel@winehq.org'
 
 ac_unique_file="server/atom.c"
@@ -681,10 +681,7 @@ X_CFLAGS
 X_PRE_LIBS
 X_LIBS
 X_EXTRA_LIBS
-LEX
-LEX_OUTPUT_ROOT
-LEXLIB
-XLEX
+FLEX
 BISON
 AS
 ac_ct_AS
@@ -754,11 +751,13 @@ IMPLIBEXT
 LIBWINE_LDFLAGS
 DLLTOOL
 DLLWRAP
+MINGWAR
 COREFOUNDATIONLIB
 IOKITLIB
 LDEXECFLAGS
 DISKARBITRATIONLIB
 COREAUDIO
+CARBONLIB
 CROSSTEST
 CROSSCC
 CROSSWINDRES
@@ -1293,7 +1292,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Wine 0.9.27 to adapt to many kinds of systems.
+\`configure' configures Wine 0.9.32 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1362,7 +1361,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of Wine 0.9.27:";;
+     short | recursive ) echo "Configuration of Wine 0.9.32:";;
    esac
   cat <<\_ACEOF
 
@@ -1457,7 +1456,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Wine configure 0.9.27
+Wine configure 0.9.32
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1471,7 +1470,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by Wine $as_me 0.9.27, which was
+It was created by Wine $as_me 0.9.32, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   $ $0 $@
@@ -1998,6 +1997,17 @@ then
   WIN16_INSTALL=""
 fi
 
+case "$srcdir" in
+ .) ;;
+ *) if test -f "$srcdir/Makefile" -o -f "$srcdir/include/config.h"; then
+      { { echo "$as_me:$LINENO: error: you are building out of the source tree, but the source tree contains object files.
+You need to run 'make distclean' in the source tree first." >&5
+echo "$as_me: error: you are building out of the source tree, but the source tree contains object files.
+You need to run 'make distclean' in the source tree first." >&2;}
+   { (exit 1); exit 1; }; }
+    fi ;;
+esac
+
 
 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
 
 fi
 
-for ac_prog in flex lex
-do
-  # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-if test "${ac_cv_prog_LEX+set}" = set; then
-  echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-  if test -n "$LEX"; then
-  ac_cv_prog_LEX="$LEX" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
-  IFS=$as_save_IFS
-  test -z "$as_dir" && as_dir=.
-  for ac_exec_ext in '' $ac_executable_extensions; do
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-    ac_cv_prog_LEX="$ac_prog"
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-    break 2
-  fi
-done
-done
-IFS=$as_save_IFS
-
-fi
-fi
-LEX=$ac_cv_prog_LEX
-if test -n "$LEX"; then
-  { echo "$as_me:$LINENO: result: $LEX" >&5
-echo "${ECHO_T}$LEX" >&6; }
-else
-  { echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6; }
-fi
-
-
-  test -n "$LEX" && break
-done
-test -n "$LEX" || LEX=":"
-
-if test "x$LEX" != "x:"; then
-  cat >conftest.l <<_ACEOF
-%%
-a { ECHO; }
-b { REJECT; }
-c { yymore (); }
-d { yyless (1); }
-e { yyless (input () != 0); }
-f { unput (yytext[0]); }
-. { BEGIN INITIAL; }
-%%
-#ifdef YYTEXT_POINTER
-extern char *yytext;
-#endif
-int
-main (void)
-{
-  return ! yylex () + ! yywrap ();
-}
-_ACEOF
-{ (ac_try="$LEX conftest.l"
-case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-  (eval "$LEX conftest.l") 2>&5
-  ac_status=$?
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-  (exit $ac_status); }
-{ echo "$as_me:$LINENO: checking lex output file root" >&5
-echo $ECHO_N "checking lex output file root... $ECHO_C" >&6; }
-if test "${ac_cv_prog_lex_root+set}" = set; then
-  echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-
-if test -f lex.yy.c; then
-  ac_cv_prog_lex_root=lex.yy
-elif test -f lexyy.c; then
-  ac_cv_prog_lex_root=lexyy
-else
-  { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
-echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
-   { (exit 1); exit 1; }; }
-fi
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
-echo "${ECHO_T}$ac_cv_prog_lex_root" >&6; }
-LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
-
-if test -z "${LEXLIB+set}"; then
-  { echo "$as_me:$LINENO: checking lex library" >&5
-echo $ECHO_N "checking lex library... $ECHO_C" >&6; }
-if test "${ac_cv_lib_lex+set}" = set; then
-  echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-
-    ac_save_LIBS=$LIBS
-    ac_cv_lib_lex='none needed'
-    for ac_lib in '' -lfl -ll; do
-      LIBS="$ac_lib $ac_save_LIBS"
-      cat >conftest.$ac_ext <<_ACEOF
-`cat $LEX_OUTPUT_ROOT.c`
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (ac_try="$ac_link"
-case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-  (eval "$ac_link") 2>conftest.er1
-  ac_status=$?
-  grep -v '^ *+' conftest.er1 >conftest.err
-  rm -f conftest.er1
-  cat conftest.err >&5
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-  (exit $ac_status); } && {
-        test -z "$ac_c_werror_flag" ||
-        test ! -s conftest.err
-       } && test -s conftest$ac_exeext &&
-       $as_test_x conftest$ac_exeext; then
-  ac_cv_lib_lex=$ac_lib
-else
-  echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-
-fi
-
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-      conftest$ac_exeext conftest.$ac_ext
-      test "$ac_cv_lib_lex" != 'none needed' && break
-    done
-    LIBS=$ac_save_LIBS
-
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_lex" >&5
-echo "${ECHO_T}$ac_cv_lib_lex" >&6; }
-  test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex
-fi
-
-
-{ echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
-echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6; }
-if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
-  echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-  # POSIX says lex can declare yytext either as a pointer or an array; the
-# default is implementation-dependent.  Figure out which it is, since
-# not all implementations provide the %pointer and %array declarations.
-ac_cv_prog_lex_yytext_pointer=no
-ac_save_LIBS=$LIBS
-LIBS="$LEXLIB $ac_save_LIBS"
-cat >conftest.$ac_ext <<_ACEOF
-#define YYTEXT_POINTER 1
-`cat $LEX_OUTPUT_ROOT.c`
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (ac_try="$ac_link"
-case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-  (eval "$ac_link") 2>conftest.er1
-  ac_status=$?
-  grep -v '^ *+' conftest.er1 >conftest.err
-  rm -f conftest.er1
-  cat conftest.err >&5
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-  (exit $ac_status); } && {
-        test -z "$ac_c_werror_flag" ||
-        test ! -s conftest.err
-       } && test -s conftest$ac_exeext &&
-       $as_test_x conftest$ac_exeext; then
-  ac_cv_prog_lex_yytext_pointer=yes
-else
-  echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-
-fi
-
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-      conftest$ac_exeext conftest.$ac_ext
-LIBS=$ac_save_LIBS
-
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
-echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6; }
-if test $ac_cv_prog_lex_yytext_pointer = yes; then
-
-cat >>confdefs.h <<\_ACEOF
-#define YYTEXT_POINTER 1
-_ACEOF
-
-fi
-rm -f conftest.l $LEX_OUTPUT_ROOT.c
-
-fi
 
-for ac_prog in $LEX flex lex
+for ac_prog in flex
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
 { echo "$as_me:$LINENO: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-if test "${ac_cv_prog_XLEX+set}" = set; then
+if test "${ac_cv_prog_FLEX+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
-  if test -n "$XLEX"; then
-  ac_cv_prog_XLEX="$XLEX" # Let the user override the test.
+  if test -n "$FLEX"; then
+  ac_cv_prog_FLEX="$FLEX" # Let the user override the test.
 else
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 for as_dir in $PATH
@@ -5208,7 +5014,7 @@ do
   test -z "$as_dir" && as_dir=.
   for ac_exec_ext in '' $ac_executable_extensions; do
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-    ac_cv_prog_XLEX="$ac_prog"
+    ac_cv_prog_FLEX="$ac_prog"
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
   fi
@@ -5218,24 +5024,24 @@ IFS=$as_save_IFS
 
 fi
 fi
-XLEX=$ac_cv_prog_XLEX
-if test -n "$XLEX"; then
-  { echo "$as_me:$LINENO: result: $XLEX" >&5
-echo "${ECHO_T}$XLEX" >&6; }
+FLEX=$ac_cv_prog_FLEX
+if test -n "$FLEX"; then
+  { echo "$as_me:$LINENO: result: $FLEX" >&5
+echo "${ECHO_T}$FLEX" >&6; }
 else
   { echo "$as_me:$LINENO: result: no" >&5
 echo "${ECHO_T}no" >&6; }
 fi
 
 
-  test -n "$XLEX" && break
+  test -n "$FLEX" && break
 done
-test -n "$XLEX" || XLEX="none"
+test -n "$FLEX" || FLEX="none"
 
-if test "$XLEX" = "none"
+if test "$FLEX" = "none"
 then
-  { { echo "$as_me:$LINENO: error: no suitable lex found. Please install the 'flex' package." >&5
-echo "$as_me: error: no suitable lex found. Please install the 'flex' package." >&2;}
+  { { echo "$as_me:$LINENO: error: no suitable flex found. Please install the 'flex' package." >&5
+echo "$as_me: error: no suitable flex found. Please install the 'flex' package." >&2;}
    { (exit 1); exit 1; }; }
 fi
 
@@ -7014,6 +6820,7 @@ done
 
 
 
+
 
 
 for ac_header in \
@@ -7055,6 +6862,7 @@ for ac_header in \
        linux/param.h \
        linux/serial.h \
        linux/ucdrom.h \
+       mach/mach.h \
        mach/machine.h \
        machine/cpu.h \
        machine/limits.h \
@@ -13423,6 +13231,102 @@ else
   DLLWRAP="$ac_cv_prog_DLLWRAP"
 fi
 
+    if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
+set dummy ${ac_tool_prefix}ar; ac_word=$2
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
+if test "${ac_cv_prog_MINGWAR+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  if test -n "$MINGWAR"; then
+  ac_cv_prog_MINGWAR="$MINGWAR" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+  for ac_exec_ext in '' $ac_executable_extensions; do
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+    ac_cv_prog_MINGWAR="${ac_tool_prefix}ar"
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+done
+IFS=$as_save_IFS
+
+fi
+fi
+MINGWAR=$ac_cv_prog_MINGWAR
+if test -n "$MINGWAR"; then
+  { echo "$as_me:$LINENO: result: $MINGWAR" >&5
+echo "${ECHO_T}$MINGWAR" >&6; }
+else
+  { echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_prog_MINGWAR"; then
+  ac_ct_MINGWAR=$MINGWAR
+  # Extract the first word of "ar", so it can be a program name with args.
+set dummy ar; ac_word=$2
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
+if test "${ac_cv_prog_ac_ct_MINGWAR+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  if test -n "$ac_ct_MINGWAR"; then
+  ac_cv_prog_ac_ct_MINGWAR="$ac_ct_MINGWAR" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+  for ac_exec_ext in '' $ac_executable_extensions; do
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+    ac_cv_prog_ac_ct_MINGWAR="ar"
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_MINGWAR=$ac_cv_prog_ac_ct_MINGWAR
+if test -n "$ac_ct_MINGWAR"; then
+  { echo "$as_me:$LINENO: result: $ac_ct_MINGWAR" >&5
+echo "${ECHO_T}$ac_ct_MINGWAR" >&6; }
+else
+  { echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
+fi
+
+  if test "x$ac_ct_MINGWAR" = x; then
+    MINGWAR="false"
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
+whose name does not start with the host triplet.  If you think this
+configuration is useful to you, please write to autoconf@gnu.org." >&5
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
+whose name does not start with the host triplet.  If you think this
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
+ac_tool_warned=yes ;;
+esac
+    MINGWAR=$ac_ct_MINGWAR
+  fi
+else
+  MINGWAR="$ac_cv_prog_MINGWAR"
+fi
+
     if test "$DLLWRAP" = "false"; then
       LIBEXT="a"
     else
@@ -13462,6 +13366,8 @@ fi
     esac
         if test "$ac_cv_header_Carbon_Carbon_h" = "yes"
     then
+        CARBONLIB="-framework Carbon"
+
         QUARTZFILES='$(QUARTZFILES)'
     fi
     ;;
 done
 test -n "$CROSSWINDRES" || CROSSWINDRES="false"
 
+      for ac_prog in i586-mingw32msvc-ar i386-mingw32msvc-ar i386-mingw32-ar mingw32-ar mingw-ar
+do
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
+if test "${ac_cv_prog_MINGWAR+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  if test -n "$MINGWAR"; then
+  ac_cv_prog_MINGWAR="$MINGWAR" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+  for ac_exec_ext in '' $ac_executable_extensions; do
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+    ac_cv_prog_MINGWAR="$ac_prog"
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+done
+IFS=$as_save_IFS
+
+fi
+fi
+MINGWAR=$ac_cv_prog_MINGWAR
+if test -n "$MINGWAR"; then
+  { echo "$as_me:$LINENO: result: $MINGWAR" >&5
+echo "${ECHO_T}$MINGWAR" >&6; }
+else
+  { echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
+fi
+
+
+  test -n "$MINGWAR" && break
+done
+test -n "$MINGWAR" || MINGWAR="false"
+
       if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi
     fi
     ;;
@@ -15843,6 +15792,7 @@ fi
 
 
 
+
 
 
 for ac_func in \
@@ -15910,6 +15860,7 @@ for ac_func in \
        strcasecmp \
        strerror \
        strncasecmp \
+       strtold \
        tcgetattr \
        timegm \
        usleep \
@@ -20229,7 +20180,7 @@ DEPENDENCIES="### Dependencies:
 Makefile: dummy
        -\$(MAKEDEP) -C\$(SRCDIR) -S\$(TOPSRCDIR) -T\$(TOPOBJDIR) \$(EXTRAINCL) \$(DEPEND_SRCS)
 
-\$(ALL_OBJS): \$(IDL_H_SRCS:.idl=.h)
+\$(OBJS): \$(IDL_GEN_HEADERS)
 \$(IDL_GEN_C_SRCS:.c=.o): \$(IDL_GEN_C_SRCS)
 \$(LEX_SRCS:.l=.yy.o): \$(LEX_SRCS:.l=.yy.c)
 \$(BISON_SRCS:.y=.tab.o): \$(BISON_SRCS:.y=.tab.c)"
@@ -20269,24 +20220,676 @@ MAKE_TEST_RULES=dlls/Maketest.rules
 MAKE_PROG_RULES=programs/Makeprog.rules
 
 
-ac_config_files="$ac_config_files Make.rules dlls/Makedll.rules dlls/Makeimplib.rules dlls/Maketest.rules programs/Makeprog.rules Makefile dlls/Makefile dlls/activeds/Makefile dlls/advapi32/Makefile dlls/advapi32/tests/Makefile dlls/advpack/Makefile dlls/advpack/tests/Makefile dlls/amstream/Makefile dlls/atl/Makefile dlls/avicap32/Makefile dlls/avifil32/Makefile dlls/cabinet/Makefile dlls/cabinet/tests/Makefile dlls/capi2032/Makefile dlls/cards/Makefile dlls/cfgmgr32/Makefile dlls/clusapi/Makefile dlls/comcat/Makefile dlls/comcat/tests/Makefile dlls/comctl32/Makefile dlls/comctl32/tests/Makefile dlls/comdlg32/Makefile dlls/comdlg32/tests/Makefile dlls/compstui/Makefile dlls/crtdll/Makefile dlls/crypt32/Makefile dlls/crypt32/tests/Makefile dlls/cryptdll/Makefile dlls/cryptnet/Makefile dlls/ctl3d32/Makefile dlls/d3d8/Makefile dlls/d3d8/tests/Makefile dlls/d3d9/Makefile dlls/d3d9/tests/Makefile dlls/d3dim/Makefile dlls/d3drm/Makefile dlls/d3dx8/Makefile dlls/d3dxof/Makefile dlls/dbghelp/Makefile dlls/dciman32/Makefile dlls/ddraw/Makefile dlls/ddraw/tests/Makefile dlls/ddrawex/Makefile dlls/devenum/Makefile dlls/dinput/Makefile dlls/dinput/tests/Makefile dlls/dinput8/Makefile dlls/dmband/Makefile dlls/dmcompos/Makefile dlls/dmime/Makefile dlls/dmloader/Makefile dlls/dmscript/Makefile dlls/dmstyle/Makefile dlls/dmsynth/Makefile dlls/dmusic/Makefile dlls/dmusic32/Makefile dlls/dnsapi/Makefile dlls/dnsapi/tests/Makefile dlls/dplay/Makefile dlls/dplayx/Makefile dlls/dpnet/Makefile dlls/dpnhpast/Makefile dlls/dsound/Makefile dlls/dsound/tests/Makefile dlls/dswave/Makefile dlls/dxdiagn/Makefile dlls/dxerr8/Makefile dlls/dxerr9/Makefile dlls/dxguid/Makefile dlls/gdi32/Makefile dlls/gdi32/tests/Makefile dlls/glu32/Makefile dlls/gphoto2.ds/Makefile dlls/hhctrl.ocx/Makefile dlls/hid/Makefile dlls/hlink/Makefile dlls/hlink/tests/Makefile dlls/iccvid/Makefile dlls/icmp/Makefile dlls/ifsmgr.vxd/Makefile dlls/imaadp32.acm/Makefile dlls/imagehlp/Makefile dlls/imm32/Makefile dlls/infosoft/Makefile dlls/infosoft/tests/Makefile dlls/inseng/Makefile dlls/iphlpapi/Makefile dlls/iphlpapi/tests/Makefile dlls/itss/Makefile dlls/kernel32/Makefile dlls/kernel32/tests/Makefile dlls/localspl/Makefile dlls/localspl/tests/Makefile dlls/lz32/Makefile dlls/lz32/tests/Makefile dlls/mapi32/Makefile dlls/mapi32/tests/Makefile dlls/mciavi32/Makefile dlls/mcicda/Makefile dlls/mciseq/Makefile dlls/mciwave/Makefile dlls/midimap/Makefile dlls/mlang/Makefile dlls/mlang/tests/Makefile dlls/mmdevldr.vxd/Makefile dlls/monodebg.vxd/Makefile dlls/mpr/Makefile dlls/mprapi/Makefile dlls/msacm32.drv/Makefile dlls/msacm32/Makefile dlls/msacm32/tests/Makefile dlls/msadp32.acm/Makefile dlls/mscms/Makefile dlls/mscms/tests/Makefile dlls/mscoree/Makefile dlls/msdmo/Makefile dlls/msftedit/Makefile dlls/msg711.acm/Makefile dlls/mshtml/Makefile dlls/mshtml/tests/Makefile dlls/msi/Makefile dlls/msi/tests/Makefile dlls/msimg32/Makefile dlls/msisys.ocx/Makefile dlls/msnet32/Makefile dlls/msrle32/Makefile dlls/msvcrt/Makefile dlls/msvcrt/tests/Makefile dlls/msvcrt20/Makefile dlls/msvcrt40/Makefile dlls/msvcrtd/Makefile dlls/msvcrtd/tests/Makefile dlls/msvfw32/Makefile dlls/msvidc32/Makefile dlls/mswsock/Makefile dlls/msxml3/Makefile dlls/msxml3/tests/Makefile dlls/nddeapi/Makefile dlls/netapi32/Makefile dlls/netapi32/tests/Makefile dlls/newdev/Makefile dlls/ntdll/Makefile dlls/ntdll/tests/Makefile dlls/ntdsapi/Makefile dlls/objsel/Makefile dlls/odbc32/Makefile dlls/odbccp32/Makefile dlls/ole32/Makefile dlls/ole32/tests/Makefile dlls/oleacc/Makefile dlls/oleaut32/Makefile dlls/oleaut32/tests/Makefile dlls/olecli32/Makefile dlls/oledlg/Makefile dlls/olepro32/Makefile dlls/olesvr32/Makefile dlls/opengl32/Makefile dlls/powrprof/Makefile dlls/psapi/Makefile dlls/psapi/tests/Makefile dlls/pstorec/Makefile dlls/qcap/Makefile dlls/quartz/Makefile dlls/quartz/tests/Makefile dlls/query/Makefile dlls/rasapi32/Makefile dlls/resutils/Makefile dlls/riched20/Makefile dlls/riched20/tests/Makefile dlls/riched32/Makefile dlls/rpcrt4/Makefile dlls/rpcrt4/tests/Makefile dlls/rsabase/Makefile dlls/rsabase/tests/Makefile dlls/rsaenh/Makefile dlls/rsaenh/tests/Makefile dlls/sane.ds/Makefile dlls/secur32/Makefile dlls/secur32/tests/Makefile dlls/security/Makefile dlls/sensapi/Makefile dlls/serialui/Makefile dlls/setupapi/Makefile dlls/setupapi/tests/Makefile dlls/sfc/Makefile dlls/shdoclc/Makefile dlls/shdocvw/Makefile dlls/shdocvw/tests/Makefile dlls/shell32/Makefile dlls/shell32/tests/Makefile dlls/shfolder/Makefile dlls/shlwapi/Makefile dlls/shlwapi/tests/Makefile dlls/snmpapi/Makefile dlls/spoolss/Makefile dlls/stdole2.tlb/Makefile dlls/stdole32.tlb/Makefile dlls/sti/Makefile dlls/strmiids/Makefile dlls/svrapi/Makefile dlls/tapi32/Makefile dlls/twain_32/Makefile dlls/unicows/Makefile dlls/url/Makefile dlls/urlmon/Makefile dlls/urlmon/tests/Makefile dlls/user32/Makefile dlls/user32/tests/Makefile dlls/userenv/Makefile dlls/usp10/Makefile dlls/usp10/tests/Makefile dlls/uuid/Makefile dlls/uxtheme/Makefile dlls/uxtheme/tests/Makefile dlls/vdhcp.vxd/Makefile dlls/vdmdbg/Makefile dlls/version/Makefile dlls/version/tests/Makefile dlls/vmm.vxd/Makefile dlls/vnbt.vxd/Makefile dlls/vnetbios.vxd/Makefile dlls/vtdapi.vxd/Makefile dlls/vwin32.vxd/Makefile dlls/w32skrnl/Makefile dlls/winecrt0/Makefile dlls/wined3d/Makefile dlls/winedos/Makefile dlls/winemp3.acm/Makefile dlls/wineps.drv/Makefile dlls/winequartz.drv/Makefile dlls/winex11.drv/Makefile dlls/wininet/Makefile dlls/wininet/tests/Makefile dlls/winmm/Makefile dlls/winmm/joystick/Makefile dlls/winmm/tests/Makefile dlls/winmm/winealsa/Makefile dlls/winmm/winearts/Makefile dlls/winmm/wineaudioio/Makefile dlls/winmm/winecoreaudio/Makefile dlls/winmm/wineesd/Makefile dlls/winmm/winejack/Makefile dlls/winmm/winenas/Makefile dlls/winmm/wineoss/Makefile dlls/winnls32/Makefile dlls/winspool.drv/Makefile dlls/winspool.drv/tests/Makefile dlls/wintab32/Makefile dlls/wintrust/Makefile dlls/wintrust/tests/Makefile dlls/wldap32/Makefile dlls/wnaspi32/Makefile dlls/wow32/Makefile dlls/ws2_32/Makefile dlls/ws2_32/tests/Makefile dlls/wsock32/Makefile dlls/wtsapi32/Makefile documentation/Makefile fonts/Makefile include/Makefile libs/Makefile libs/port/Makefile libs/wine/Makefile libs/wpp/Makefile loader/Makefile programs/Makefile programs/clock/Makefile programs/cmd/Makefile programs/cmdlgtst/Makefile programs/control/Makefile programs/eject/Makefile programs/expand/Makefile programs/explorer/Makefile programs/hh/Makefile programs/icinfo/Makefile programs/iexplore/Makefile programs/msiexec/Makefile programs/notepad/Makefile programs/oleview/Makefile programs/progman/Makefile programs/regedit/Makefile programs/regsvr32/Makefile programs/rpcss/Makefile programs/rundll32/Makefile programs/start/Makefile programs/taskmgr/Makefile programs/uninstaller/Makefile programs/view/Makefile programs/wineboot/Makefile programs/winebrowser/Makefile programs/winecfg/Makefile programs/wineconsole/Makefile programs/winedbg/Makefile programs/winefile/Makefile programs/winemenubuilder/Makefile programs/winemine/Makefile programs/winepath/Makefile programs/winetest/Makefile programs/winevdm/Makefile programs/winhelp/Makefile programs/winver/Makefile programs/wordpad/Makefile server/Makefile tools/Makefile tools/widl/Makefile tools/winebuild/Makefile tools/winedump/Makefile tools/winegcc/Makefile tools/wmc/Makefile tools/wrc/Makefile"
+ac_config_files="$ac_config_files Make.rules"
 
+ac_config_files="$ac_config_files dlls/Makedll.rules"
 
-cat >confcache <<\_ACEOF
-# This file is a shell script that caches the results of configure
-# tests run on this system so they can be shared between configure
-# scripts and configure runs, see configure's option --config-cache.
-# It is not useful on other systems.  If it contains results you don't
-# want to keep, you may remove or edit it.
-#
-# config.status only pays attention to the cache file if you give it
-# the --recheck option to rerun configure.
-#
-# `ac_cv_env_foo' variables (set or unset) will be overridden when
-# loading this file, other *unset* `ac_cv_foo' will be assigned the
-# following values.
+ac_config_files="$ac_config_files dlls/Makeimplib.rules"
 
-_ACEOF
+ac_config_files="$ac_config_files dlls/Maketest.rules"
+
+ac_config_files="$ac_config_files programs/Makeprog.rules"
+
+ac_config_files="$ac_config_files Makefile"
+
+ac_config_files="$ac_config_files dlls/Makefile"
+
+ac_config_files="$ac_config_files dlls/activeds/Makefile"
+
+ac_config_files="$ac_config_files dlls/advapi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/advapi32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/advpack/Makefile"
+
+ac_config_files="$ac_config_files dlls/advpack/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/amstream/Makefile"
+
+ac_config_files="$ac_config_files dlls/atl/Makefile"
+
+ac_config_files="$ac_config_files dlls/avicap32/Makefile"
+
+ac_config_files="$ac_config_files dlls/avifil32/Makefile"
+
+ac_config_files="$ac_config_files dlls/browseui/Makefile"
+
+ac_config_files="$ac_config_files dlls/browseui/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/cabinet/Makefile"
+
+ac_config_files="$ac_config_files dlls/cabinet/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/capi2032/Makefile"
+
+ac_config_files="$ac_config_files dlls/cards/Makefile"
+
+ac_config_files="$ac_config_files dlls/cfgmgr32/Makefile"
+
+ac_config_files="$ac_config_files dlls/clusapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/comcat/Makefile"
+
+ac_config_files="$ac_config_files dlls/comcat/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/comctl32/Makefile"
+
+ac_config_files="$ac_config_files dlls/comctl32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/comdlg32/Makefile"
+
+ac_config_files="$ac_config_files dlls/comdlg32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/compstui/Makefile"
+
+ac_config_files="$ac_config_files dlls/credui/Makefile"
+
+ac_config_files="$ac_config_files dlls/crtdll/Makefile"
+
+ac_config_files="$ac_config_files dlls/crypt32/Makefile"
+
+ac_config_files="$ac_config_files dlls/crypt32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/cryptdll/Makefile"
+
+ac_config_files="$ac_config_files dlls/cryptnet/Makefile"
+
+ac_config_files="$ac_config_files dlls/ctl3d32/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3d8/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3d8/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3d9/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3d9/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3dim/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3drm/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3dx8/Makefile"
+
+ac_config_files="$ac_config_files dlls/d3dxof/Makefile"
+
+ac_config_files="$ac_config_files dlls/dbghelp/Makefile"
+
+ac_config_files="$ac_config_files dlls/dciman32/Makefile"
+
+ac_config_files="$ac_config_files dlls/ddraw/Makefile"
+
+ac_config_files="$ac_config_files dlls/ddraw/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/ddrawex/Makefile"
+
+ac_config_files="$ac_config_files dlls/devenum/Makefile"
+
+ac_config_files="$ac_config_files dlls/dinput/Makefile"
+
+ac_config_files="$ac_config_files dlls/dinput/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/dinput8/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmband/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmcompos/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmime/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmloader/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmscript/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmstyle/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmsynth/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmusic/Makefile"
+
+ac_config_files="$ac_config_files dlls/dmusic32/Makefile"
+
+ac_config_files="$ac_config_files dlls/dnsapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/dnsapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/dplay/Makefile"
+
+ac_config_files="$ac_config_files dlls/dplayx/Makefile"
+
+ac_config_files="$ac_config_files dlls/dplayx/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/dpnaddr/Makefile"
+
+ac_config_files="$ac_config_files dlls/dpnet/Makefile"
+
+ac_config_files="$ac_config_files dlls/dpnhpast/Makefile"
+
+ac_config_files="$ac_config_files dlls/dsound/Makefile"
+
+ac_config_files="$ac_config_files dlls/dsound/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/dswave/Makefile"
+
+ac_config_files="$ac_config_files dlls/dxdiagn/Makefile"
+
+ac_config_files="$ac_config_files dlls/dxerr8/Makefile"
+
+ac_config_files="$ac_config_files dlls/dxerr9/Makefile"
+
+ac_config_files="$ac_config_files dlls/dxguid/Makefile"
+
+ac_config_files="$ac_config_files dlls/gdi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/gdi32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/glu32/Makefile"
+
+ac_config_files="$ac_config_files dlls/gphoto2.ds/Makefile"
+
+ac_config_files="$ac_config_files dlls/hhctrl.ocx/Makefile"
+
+ac_config_files="$ac_config_files dlls/hid/Makefile"
+
+ac_config_files="$ac_config_files dlls/hlink/Makefile"
+
+ac_config_files="$ac_config_files dlls/hlink/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/iccvid/Makefile"
+
+ac_config_files="$ac_config_files dlls/icmp/Makefile"
+
+ac_config_files="$ac_config_files dlls/ifsmgr.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/imaadp32.acm/Makefile"
+
+ac_config_files="$ac_config_files dlls/imagehlp/Makefile"
+
+ac_config_files="$ac_config_files dlls/imm32/Makefile"
+
+ac_config_files="$ac_config_files dlls/infosoft/Makefile"
+
+ac_config_files="$ac_config_files dlls/infosoft/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/inseng/Makefile"
+
+ac_config_files="$ac_config_files dlls/iphlpapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/iphlpapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/itss/Makefile"
+
+ac_config_files="$ac_config_files dlls/itss/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/kernel32/Makefile"
+
+ac_config_files="$ac_config_files dlls/kernel32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/localspl/Makefile"
+
+ac_config_files="$ac_config_files dlls/localspl/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/lz32/Makefile"
+
+ac_config_files="$ac_config_files dlls/lz32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/mapi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/mapi32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/mciavi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/mcicda/Makefile"
+
+ac_config_files="$ac_config_files dlls/mciseq/Makefile"
+
+ac_config_files="$ac_config_files dlls/mciwave/Makefile"
+
+ac_config_files="$ac_config_files dlls/midimap/Makefile"
+
+ac_config_files="$ac_config_files dlls/mlang/Makefile"
+
+ac_config_files="$ac_config_files dlls/mlang/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/mmdevldr.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/monodebg.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/mpr/Makefile"
+
+ac_config_files="$ac_config_files dlls/mprapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/msacm32.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/msacm32/Makefile"
+
+ac_config_files="$ac_config_files dlls/msacm32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/msadp32.acm/Makefile"
+
+ac_config_files="$ac_config_files dlls/mscms/Makefile"
+
+ac_config_files="$ac_config_files dlls/mscms/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/mscoree/Makefile"
+
+ac_config_files="$ac_config_files dlls/msdmo/Makefile"
+
+ac_config_files="$ac_config_files dlls/msftedit/Makefile"
+
+ac_config_files="$ac_config_files dlls/msg711.acm/Makefile"
+
+ac_config_files="$ac_config_files dlls/mshtml/Makefile"
+
+ac_config_files="$ac_config_files dlls/mshtml/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/msi/Makefile"
+
+ac_config_files="$ac_config_files dlls/msi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/msimg32/Makefile"
+
+ac_config_files="$ac_config_files dlls/msisys.ocx/Makefile"
+
+ac_config_files="$ac_config_files dlls/msnet32/Makefile"
+
+ac_config_files="$ac_config_files dlls/msrle32/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrt/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrt/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrt20/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrt40/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrtd/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvcrtd/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvfw32/Makefile"
+
+ac_config_files="$ac_config_files dlls/msvidc32/Makefile"
+
+ac_config_files="$ac_config_files dlls/mswsock/Makefile"
+
+ac_config_files="$ac_config_files dlls/msxml3/Makefile"
+
+ac_config_files="$ac_config_files dlls/msxml3/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/nddeapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/netapi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/netapi32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/newdev/Makefile"
+
+ac_config_files="$ac_config_files dlls/ntdll/Makefile"
+
+ac_config_files="$ac_config_files dlls/ntdll/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/ntdsapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/objsel/Makefile"
+
+ac_config_files="$ac_config_files dlls/odbc32/Makefile"
+
+ac_config_files="$ac_config_files dlls/odbccp32/Makefile"
+
+ac_config_files="$ac_config_files dlls/odbccp32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/ole32/Makefile"
+
+ac_config_files="$ac_config_files dlls/ole32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/oleacc/Makefile"
+
+ac_config_files="$ac_config_files dlls/oleaut32/Makefile"
+
+ac_config_files="$ac_config_files dlls/oleaut32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/olecli32/Makefile"
+
+ac_config_files="$ac_config_files dlls/oledlg/Makefile"
+
+ac_config_files="$ac_config_files dlls/olepro32/Makefile"
+
+ac_config_files="$ac_config_files dlls/olesvr32/Makefile"
+
+ac_config_files="$ac_config_files dlls/opengl32/Makefile"
+
+ac_config_files="$ac_config_files dlls/powrprof/Makefile"
+
+ac_config_files="$ac_config_files dlls/psapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/psapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/pstorec/Makefile"
+
+ac_config_files="$ac_config_files dlls/qcap/Makefile"
+
+ac_config_files="$ac_config_files dlls/quartz/Makefile"
+
+ac_config_files="$ac_config_files dlls/quartz/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/query/Makefile"
+
+ac_config_files="$ac_config_files dlls/rasapi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/resutils/Makefile"
+
+ac_config_files="$ac_config_files dlls/riched20/Makefile"
+
+ac_config_files="$ac_config_files dlls/riched20/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/riched32/Makefile"
+
+ac_config_files="$ac_config_files dlls/rpcrt4/Makefile"
+
+ac_config_files="$ac_config_files dlls/rpcrt4/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/rsabase/Makefile"
+
+ac_config_files="$ac_config_files dlls/rsabase/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/rsaenh/Makefile"
+
+ac_config_files="$ac_config_files dlls/rsaenh/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/sane.ds/Makefile"
+
+ac_config_files="$ac_config_files dlls/schannel/Makefile"
+
+ac_config_files="$ac_config_files dlls/secur32/Makefile"
+
+ac_config_files="$ac_config_files dlls/secur32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/security/Makefile"
+
+ac_config_files="$ac_config_files dlls/sensapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/serialui/Makefile"
+
+ac_config_files="$ac_config_files dlls/serialui/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/setupapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/setupapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/sfc/Makefile"
+
+ac_config_files="$ac_config_files dlls/sfc_os/Makefile"
+
+ac_config_files="$ac_config_files dlls/shdoclc/Makefile"
+
+ac_config_files="$ac_config_files dlls/shdocvw/Makefile"
+
+ac_config_files="$ac_config_files dlls/shdocvw/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/shell32/Makefile"
+
+ac_config_files="$ac_config_files dlls/shell32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/shfolder/Makefile"
+
+ac_config_files="$ac_config_files dlls/shlwapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/shlwapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/snmpapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/snmpapi/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/spoolss/Makefile"
+
+ac_config_files="$ac_config_files dlls/stdole2.tlb/Makefile"
+
+ac_config_files="$ac_config_files dlls/stdole32.tlb/Makefile"
+
+ac_config_files="$ac_config_files dlls/sti/Makefile"
+
+ac_config_files="$ac_config_files dlls/strmiids/Makefile"
+
+ac_config_files="$ac_config_files dlls/svrapi/Makefile"
+
+ac_config_files="$ac_config_files dlls/tapi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/twain_32/Makefile"
+
+ac_config_files="$ac_config_files dlls/unicows/Makefile"
+
+ac_config_files="$ac_config_files dlls/url/Makefile"
+
+ac_config_files="$ac_config_files dlls/urlmon/Makefile"
+
+ac_config_files="$ac_config_files dlls/urlmon/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/user32/Makefile"
+
+ac_config_files="$ac_config_files dlls/user32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/userenv/Makefile"
+
+ac_config_files="$ac_config_files dlls/usp10/Makefile"
+
+ac_config_files="$ac_config_files dlls/usp10/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/uuid/Makefile"
+
+ac_config_files="$ac_config_files dlls/uxtheme/Makefile"
+
+ac_config_files="$ac_config_files dlls/uxtheme/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/vdhcp.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/vdmdbg/Makefile"
+
+ac_config_files="$ac_config_files dlls/version/Makefile"
+
+ac_config_files="$ac_config_files dlls/version/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/vmm.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/vnbt.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/vnetbios.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/vtdapi.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/vwin32.vxd/Makefile"
+
+ac_config_files="$ac_config_files dlls/w32skrnl/Makefile"
+
+ac_config_files="$ac_config_files dlls/winealsa.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winearts.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/wineaudioio.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winecoreaudio.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winecrt0/Makefile"
+
+ac_config_files="$ac_config_files dlls/wined3d/Makefile"
+
+ac_config_files="$ac_config_files dlls/winedos/Makefile"
+
+ac_config_files="$ac_config_files dlls/wineesd.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winejack.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winejoystick.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winemp3.acm/Makefile"
+
+ac_config_files="$ac_config_files dlls/winenas.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/wineoss.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/wineps.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winequartz.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winex11.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/wing32/Makefile"
+
+ac_config_files="$ac_config_files dlls/wininet/Makefile"
+
+ac_config_files="$ac_config_files dlls/wininet/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/winmm/Makefile"
+
+ac_config_files="$ac_config_files dlls/winmm/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/winnls32/Makefile"
+
+ac_config_files="$ac_config_files dlls/winspool.drv/Makefile"
+
+ac_config_files="$ac_config_files dlls/winspool.drv/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/wintab32/Makefile"
+
+ac_config_files="$ac_config_files dlls/wintrust/Makefile"
+
+ac_config_files="$ac_config_files dlls/wintrust/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/wldap32/Makefile"
+
+ac_config_files="$ac_config_files dlls/wnaspi32/Makefile"
+
+ac_config_files="$ac_config_files dlls/wow32/Makefile"
+
+ac_config_files="$ac_config_files dlls/ws2_32/Makefile"
+
+ac_config_files="$ac_config_files dlls/ws2_32/tests/Makefile"
+
+ac_config_files="$ac_config_files dlls/wsock32/Makefile"
+
+ac_config_files="$ac_config_files dlls/wtsapi32/Makefile"
+
+ac_config_files="$ac_config_files documentation/Makefile"
+
+ac_config_files="$ac_config_files fonts/Makefile"
+
+ac_config_files="$ac_config_files include/Makefile"
+
+ac_config_files="$ac_config_files libs/Makefile"
+
+ac_config_files="$ac_config_files libs/port/Makefile"
+
+ac_config_files="$ac_config_files libs/wine/Makefile"
+
+ac_config_files="$ac_config_files libs/wpp/Makefile"
+
+ac_config_files="$ac_config_files loader/Makefile"
+
+ac_config_files="$ac_config_files programs/Makefile"
+
+ac_config_files="$ac_config_files programs/clock/Makefile"
+
+ac_config_files="$ac_config_files programs/cmd/Makefile"
+
+ac_config_files="$ac_config_files programs/cmdlgtst/Makefile"
+
+ac_config_files="$ac_config_files programs/control/Makefile"
+
+ac_config_files="$ac_config_files programs/eject/Makefile"
+
+ac_config_files="$ac_config_files programs/expand/Makefile"
+
+ac_config_files="$ac_config_files programs/explorer/Makefile"
+
+ac_config_files="$ac_config_files programs/hh/Makefile"
+
+ac_config_files="$ac_config_files programs/icinfo/Makefile"
+
+ac_config_files="$ac_config_files programs/iexplore/Makefile"
+
+ac_config_files="$ac_config_files programs/msiexec/Makefile"
+
+ac_config_files="$ac_config_files programs/notepad/Makefile"
+
+ac_config_files="$ac_config_files programs/oleview/Makefile"
+
+ac_config_files="$ac_config_files programs/progman/Makefile"
+
+ac_config_files="$ac_config_files programs/regedit/Makefile"
+
+ac_config_files="$ac_config_files programs/regsvr32/Makefile"
+
+ac_config_files="$ac_config_files programs/rpcss/Makefile"
+
+ac_config_files="$ac_config_files programs/rundll32/Makefile"
+
+ac_config_files="$ac_config_files programs/start/Makefile"
+
+ac_config_files="$ac_config_files programs/taskmgr/Makefile"
+
+ac_config_files="$ac_config_files programs/uninstaller/Makefile"
+
+ac_config_files="$ac_config_files programs/view/Makefile"
+
+ac_config_files="$ac_config_files programs/wineboot/Makefile"
+
+ac_config_files="$ac_config_files programs/winebrowser/Makefile"
+
+ac_config_files="$ac_config_files programs/winecfg/Makefile"
+
+ac_config_files="$ac_config_files programs/wineconsole/Makefile"
+
+ac_config_files="$ac_config_files programs/winedbg/Makefile"
+
+ac_config_files="$ac_config_files programs/winefile/Makefile"
+
+ac_config_files="$ac_config_files programs/winemenubuilder/Makefile"
+
+ac_config_files="$ac_config_files programs/winemine/Makefile"
+
+ac_config_files="$ac_config_files programs/winepath/Makefile"
+
+ac_config_files="$ac_config_files programs/winetest/Makefile"
+
+ac_config_files="$ac_config_files programs/winevdm/Makefile"
+
+ac_config_files="$ac_config_files programs/winhelp/Makefile"
+
+ac_config_files="$ac_config_files programs/winver/Makefile"
+
+ac_config_files="$ac_config_files programs/wordpad/Makefile"
+
+ac_config_files="$ac_config_files server/Makefile"
+
+ac_config_files="$ac_config_files tools/Makefile"
+
+ac_config_files="$ac_config_files tools/widl/Makefile"
+
+ac_config_files="$ac_config_files tools/winebuild/Makefile"
+
+ac_config_files="$ac_config_files tools/winedump/Makefile"
+
+ac_config_files="$ac_config_files tools/winegcc/Makefile"
+
+ac_config_files="$ac_config_files tools/wmc/Makefile"
+
+ac_config_files="$ac_config_files tools/wrc/Makefile"
+
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems.  If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
 
 # The following way of writing the cache mishandles newlines in values,
 # but we know of no workaround that is simple, portable, and efficient.
@@ -20668,7 +21271,7 @@ exec 6>&1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by Wine $as_me 0.9.27, which was
+This file was extended by Wine $as_me 0.9.32, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -20721,7 +21324,7 @@ Report bugs to <bug-autoconf@gnu.org>."
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-Wine config.status 0.9.27
+Wine config.status 0.9.32
 configured by $0, generated by GNU Autoconf 2.61,
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
@@ -20853,6 +21456,8 @@ do
     "dlls/atl/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/atl/Makefile" ;;
     "dlls/avicap32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/avicap32/Makefile" ;;
     "dlls/avifil32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/avifil32/Makefile" ;;
+    "dlls/browseui/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/browseui/Makefile" ;;
+    "dlls/browseui/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/browseui/tests/Makefile" ;;
     "dlls/cabinet/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/cabinet/Makefile" ;;
     "dlls/cabinet/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/cabinet/tests/Makefile" ;;
     "dlls/capi2032/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/capi2032/Makefile" ;;
@@ -20866,6 +21471,7 @@ do
     "dlls/comdlg32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/comdlg32/Makefile" ;;
     "dlls/comdlg32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/comdlg32/tests/Makefile" ;;
     "dlls/compstui/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/compstui/Makefile" ;;
+    "dlls/credui/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/credui/Makefile" ;;
     "dlls/crtdll/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/crtdll/Makefile" ;;
     "dlls/crypt32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/crypt32/Makefile" ;;
     "dlls/crypt32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/crypt32/tests/Makefile" ;;
@@ -20902,6 +21508,8 @@ do
     "dlls/dnsapi/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dnsapi/tests/Makefile" ;;
     "dlls/dplay/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplay/Makefile" ;;
     "dlls/dplayx/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplayx/Makefile" ;;
+    "dlls/dplayx/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplayx/tests/Makefile" ;;
+    "dlls/dpnaddr/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnaddr/Makefile" ;;
     "dlls/dpnet/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnet/Makefile" ;;
     "dlls/dpnhpast/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnhpast/Makefile" ;;
     "dlls/dsound/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dsound/Makefile" ;;
@@ -20931,6 +21539,7 @@ do
     "dlls/iphlpapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/iphlpapi/Makefile" ;;
     "dlls/iphlpapi/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/iphlpapi/tests/Makefile" ;;
     "dlls/itss/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/itss/Makefile" ;;
+    "dlls/itss/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/itss/tests/Makefile" ;;
     "dlls/kernel32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/kernel32/Makefile" ;;
     "dlls/kernel32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/kernel32/tests/Makefile" ;;
     "dlls/localspl/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/localspl/Makefile" ;;
@@ -20989,6 +21598,7 @@ do
     "dlls/objsel/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/objsel/Makefile" ;;
     "dlls/odbc32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbc32/Makefile" ;;
     "dlls/odbccp32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbccp32/Makefile" ;;
+    "dlls/odbccp32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/odbccp32/tests/Makefile" ;;
     "dlls/ole32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ole32/Makefile" ;;
     "dlls/ole32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/ole32/tests/Makefile" ;;
     "dlls/oleacc/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/oleacc/Makefile" ;;
     "dlls/rsaenh/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/rsaenh/Makefile" ;;
     "dlls/rsaenh/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/rsaenh/tests/Makefile" ;;
     "dlls/sane.ds/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/sane.ds/Makefile" ;;
+    "dlls/schannel/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/schannel/Makefile" ;;
     "dlls/secur32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/secur32/Makefile" ;;
     "dlls/secur32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/secur32/tests/Makefile" ;;
     "dlls/security/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/security/Makefile" ;;
     "dlls/sensapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/sensapi/Makefile" ;;
     "dlls/serialui/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/serialui/Makefile" ;;
+    "dlls/serialui/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/serialui/tests/Makefile" ;;
     "dlls/setupapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/setupapi/Makefile" ;;
     "dlls/setupapi/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/setupapi/tests/Makefile" ;;
     "dlls/sfc/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/sfc/Makefile" ;;
+    "dlls/sfc_os/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/sfc_os/Makefile" ;;
     "dlls/shdoclc/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/shdoclc/Makefile" ;;
     "dlls/shdocvw/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/shdocvw/Makefile" ;;
     "dlls/shdocvw/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/shdocvw/tests/Makefile" ;;
@@ -21036,6 +21649,7 @@ do
     "dlls/shlwapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/shlwapi/Makefile" ;;
     "dlls/shlwapi/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/shlwapi/tests/Makefile" ;;
     "dlls/snmpapi/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/snmpapi/Makefile" ;;
+    "dlls/snmpapi/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/snmpapi/tests/Makefile" ;;
     "dlls/spoolss/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/spoolss/Makefile" ;;
     "dlls/stdole2.tlb/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/stdole2.tlb/Makefile" ;;
     "dlls/stdole32.tlb/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/stdole32.tlb/Makefile" ;;
     "dlls/vtdapi.vxd/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/vtdapi.vxd/Makefile" ;;
     "dlls/vwin32.vxd/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/vwin32.vxd/Makefile" ;;
     "dlls/w32skrnl/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/w32skrnl/Makefile" ;;
+    "dlls/winealsa.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winealsa.drv/Makefile" ;;
+    "dlls/winearts.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winearts.drv/Makefile" ;;
+    "dlls/wineaudioio.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wineaudioio.drv/Makefile" ;;
+    "dlls/winecoreaudio.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winecoreaudio.drv/Makefile" ;;
     "dlls/winecrt0/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winecrt0/Makefile" ;;
     "dlls/wined3d/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wined3d/Makefile" ;;
     "dlls/winedos/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winedos/Makefile" ;;
+    "dlls/wineesd.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wineesd.drv/Makefile" ;;
+    "dlls/winejack.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winejack.drv/Makefile" ;;
+    "dlls/winejoystick.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winejoystick.drv/Makefile" ;;
     "dlls/winemp3.acm/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winemp3.acm/Makefile" ;;
+    "dlls/winenas.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winenas.drv/Makefile" ;;
+    "dlls/wineoss.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wineoss.drv/Makefile" ;;
     "dlls/wineps.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wineps.drv/Makefile" ;;
     "dlls/winequartz.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winequartz.drv/Makefile" ;;
     "dlls/winex11.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winex11.drv/Makefile" ;;
+    "dlls/wing32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wing32/Makefile" ;;
     "dlls/wininet/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wininet/Makefile" ;;
     "dlls/wininet/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/wininet/tests/Makefile" ;;
     "dlls/winmm/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/Makefile" ;;
-    "dlls/winmm/joystick/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/joystick/Makefile" ;;
     "dlls/winmm/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/tests/Makefile" ;;
-    "dlls/winmm/winealsa/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/winealsa/Makefile" ;;
-    "dlls/winmm/winearts/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/winearts/Makefile" ;;
-    "dlls/winmm/wineaudioio/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/wineaudioio/Makefile" ;;
-    "dlls/winmm/winecoreaudio/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/winecoreaudio/Makefile" ;;
-    "dlls/winmm/wineesd/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/wineesd/Makefile" ;;
-    "dlls/winmm/winejack/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/winejack/Makefile" ;;
-    "dlls/winmm/winenas/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/winenas/Makefile" ;;
-    "dlls/winmm/wineoss/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winmm/wineoss/Makefile" ;;
     "dlls/winnls32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winnls32/Makefile" ;;
     "dlls/winspool.drv/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winspool.drv/Makefile" ;;
     "dlls/winspool.drv/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/winspool.drv/tests/Makefile" ;;
@@ -21285,10 +21900,7 @@ X_CFLAGS!$X_CFLAGS$ac_delim
 X_PRE_LIBS!$X_PRE_LIBS$ac_delim
 X_LIBS!$X_LIBS$ac_delim
 X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim
-LEX!$LEX$ac_delim
-LEX_OUTPUT_ROOT!$LEX_OUTPUT_ROOT$ac_delim
-LEXLIB!$LEXLIB$ac_delim
-XLEX!$XLEX$ac_delim
+FLEX!$FLEX$ac_delim
 BISON!$BISON$ac_delim
 AS!$AS$ac_delim
 ac_ct_AS!$ac_ct_AS$ac_delim
@@ -21301,6 +21913,9 @@ LN_S!$LN_S$ac_delim
 LN!$LN$ac_delim
 GREP!$GREP$ac_delim
 EGREP!$EGREP$ac_delim
+LDCONFIG!$LDCONFIG$ac_delim
+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
 _ACEOF
 
   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 82; then
@@ -21362,9 +21977,6 @@ _ACEOF
 ac_delim='%!_!# '
 for ac_last_try in false false false false false :; do
   cat >conf$$subs.sed <<_ACEOF
-LDCONFIG!$LDCONFIG$ac_delim
-INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
-INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
 INSTALL_DATA!$INSTALL_DATA$ac_delim
 LINT!$LINT$ac_delim
 LINTFLAGS!$LINTFLAGS$ac_delim
@@ -21419,11 +22031,13 @@ IMPLIBEXT!$IMPLIBEXT$ac_delim
 LIBWINE_LDFLAGS!$LIBWINE_LDFLAGS$ac_delim
 DLLTOOL!$DLLTOOL$ac_delim
 DLLWRAP!$DLLWRAP$ac_delim
+MINGWAR!$MINGWAR$ac_delim
 COREFOUNDATIONLIB!$COREFOUNDATIONLIB$ac_delim
 IOKITLIB!$IOKITLIB$ac_delim
 LDEXECFLAGS!$LDEXECFLAGS$ac_delim
 DISKARBITRATIONLIB!$DISKARBITRATIONLIB$ac_delim
 COREAUDIO!$COREAUDIO$ac_delim
+CARBONLIB!$CARBONLIB$ac_delim
 CROSSTEST!$CROSSTEST$ac_delim
 CROSSCC!$CROSSCC$ac_delim
 CROSSWINDRES!$CROSSWINDRES$ac_delim
@@ -21440,7 +22054,7 @@ LIBOBJS!$LIBOBJS$ac_delim
 LTLIBOBJS!$LTLIBOBJS$ac_delim
 _ACEOF
 
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 76; then
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 75; then
     break
   elif $ac_last_try; then
     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5