summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-28 10:04:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-28 10:04:08 (GMT)
commit96b9e6e871228c0a269c0b3310b987186e1a89c7 (patch)
tree51e32e9feeebc029458058e3f82286ae983d75dc /win
parent97ed5b117d97994ac272d663a4c754ab73afeace (diff)
downloadtcl-96b9e6e871228c0a269c0b3310b987186e1a89c7.zip
tcl-96b9e6e871228c0a269c0b3310b987186e1a89c7.tar.gz
tcl-96b9e6e871228c0a269c0b3310b987186e1a89c7.tar.bz2
Missing -DUNICODE in makefile.vc
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 95a34d7..cc340a8 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -893,9 +893,9 @@ $(TMP_DIR)\tclWinReg.obj: $(WINDIR)\tclWinReg.c
$(TMP_DIR)\tclWinDde.obj: $(WINDIR)\tclWinDde.c
!if $(STATIC_BUILD)
- $(cc32) $(TCL_CFLAGS) -DTCL_THREADS=1 -DSTATIC_BUILD -Fo$@ $?
+ $(cc32) $(TCL_CFLAGS) -DTCL_THREADS=1 -DSTATIC_BUILD -DUNICODE -D_UNICODE -Fo$@ $?
!else
- $(cc32) $(TCL_CFLAGS) -DTCL_THREADS=1 -DUSE_TCL_STUBS -Fo$@ $?
+ $(cc32) $(TCL_CFLAGS) -DTCL_THREADS=1 -DUSE_TCL_STUBS -DUNICODE -D_UNICODE -Fo$@ $?
!endif