diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-16 15:33:44 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-16 15:33:44 (GMT) |
commit | eec2e2dbf117c18e1946e95eb3b961b6d24e639d (patch) | |
tree | e64d146c10212507004adccaceac4987225b1bf8 /win | |
parent | 0a93ff61541376329acefdac9e9f536437626e96 (diff) | |
download | tk-eec2e2dbf117c18e1946e95eb3b961b6d24e639d.zip tk-eec2e2dbf117c18e1946e95eb3b961b6d24e639d.tar.gz tk-eec2e2dbf117c18e1946e95eb3b961b6d24e639d.tar.bz2 |
Don't compile Tk with -DTCL_NO_DEPRECATED by default
any more, it might hurt when we compile Tk 8.x
against Tcl 8.y with y > x, because new deprecated constructs might be
added in higher Tcl versions (except for Tk 8.6, for now, because there
is no higher 8.x yet)
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 1c47ad2..1c62dfc 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -162,7 +162,7 @@ LDFLAGS_OPTIMIZE = @LDFLAGS_OPTIMIZE@ # Tk does not used deprecated Tcl constructs so it should # compile fine with -DTCL_NO_DEPRECATED. To remove its own # set of deprecated code uncomment the second line. -NO_DEPRECATED_FLAGS = -DTCL_NO_DEPRECATED +NO_DEPRECATED_FLAGS = #NO_DEPRECATED_FLAGS = -DTCL_NO_DEPRECATED -DTK_NO_DEPRECATED # To change the compiler switches, for example to change from optimization to |