diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-06 14:49:23 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-06 14:49:23 (GMT) |
commit | 2738bd34505c7fa7a1d68fe8f5bbaa2f5d35c12c (patch) | |
tree | 0f4f9046805988cc273ce06b3db5fd75c8167c21 /win/configure | |
parent | e38804664b6a2b090714657b23bcfe211c58347c (diff) | |
parent | 40ba2e067496a7fab51129617bbcd0f5553f285f (diff) | |
download | tcl-2738bd34505c7fa7a1d68fe8f5bbaa2f5d35c12c.zip tcl-2738bd34505c7fa7a1d68fe8f5bbaa2f5d35c12c.tar.gz tcl-2738bd34505c7fa7a1d68fe8f5bbaa2f5d35c12c.tar.bz2 |
Fix [b42a851475]: file normalize ~user returns wrong directory on Windows
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/configure b/win/configure index 4ca795c..4ce23f9 100755 --- a/win/configure +++ b/win/configure @@ -3587,7 +3587,7 @@ echo $ECHO_N "checking compiler flags... $ECHO_C" >&6 if test "${GCC}" = "yes" ; then SHLIB_LD="" SHLIB_LD_LIBS='${LIBS}' - LIBS="-lnetapi32 -lkernel32 -luser32 -ladvapi32 -lws2_32" + LIBS="-lnetapi32 -lkernel32 -luser32 -ladvapi32 -luserenv -lws2_32" # mingw needs to link ole32 and oleaut32 for [send], but MSVC doesn't LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32 -lshell32 -luuid -lole32 -loleaut32" STLIB_LD='${AR} cr' @@ -3803,7 +3803,7 @@ echo "${ECHO_T} Using 64-bit $MACHINE mode" >&6 fi fi - LIBS="netapi32.lib kernel32.lib user32.lib advapi32.lib ws2_32.lib" + LIBS="netapi32.lib kernel32.lib user32.lib advapi32.lib userenv.lib ws2_32.lib" case "x`echo \${VisualStudioVersion}`" in x1[4-9]*) |