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 | cfea006a9d30352c695b25ca4a3d4f4416be54b9 (patch) | |
tree | 0f4f9046805988cc273ce06b3db5fd75c8167c21 /win/makefile.vc | |
parent | 7c5ea5b5f1424998f9b8182c515b43d1c7f8452a (diff) | |
parent | 3a680cc4493122ec315ba29b1b97c966716a9503 (diff) | |
download | tcl-cfea006a9d30352c695b25ca4a3d4f4416be54b9.zip tcl-cfea006a9d30352c695b25ca4a3d4f4416be54b9.tar.gz tcl-cfea006a9d30352c695b25ca4a3d4f4416be54b9.tar.bz2 |
Fix [b42a851475]: file normalize ~user returns wrong directory on Windows
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 024ecb0..70f3f6e 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -550,7 +550,7 @@ dlllflags = $(lflags) -dll conlflags = $(lflags) -subsystem:console
guilflags = $(lflags) -subsystem:windows
-baselibs = netapi32.lib kernel32.lib user32.lib advapi32.lib ws2_32.lib
+baselibs = netapi32.lib kernel32.lib user32.lib advapi32.lib userenv.lib ws2_32.lib
# Avoid 'unresolved external symbol __security_cookie' errors.
# c.f. http://support.microsoft.com/?id=894573
!if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64"
|