diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-16 15:41:41 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-16 15:41:41 (GMT) |
commit | 8521cc41e28d11a559f364f13f26d2ba2c777d7b (patch) | |
tree | 8c1a7f123da80bac2cd5cca2d9aa6d02e497079f /win/Makefile.in | |
parent | 1d6fc3b07436ae3a0b13d55d5578ede883550cc3 (diff) | |
parent | 08a0e312c1601d08de1d671f30f7978cad65d813 (diff) | |
download | tk-8521cc41e28d11a559f364f13f26d2ba2c777d7b.zip tk-8521cc41e28d11a559f364f13f26d2ba2c777d7b.tar.gz tk-8521cc41e28d11a559f364f13f26d2ba2c777d7b.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/Makefile.in')
-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 24217be..550e6ae 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -163,7 +163,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 |