diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-16 15:41:41 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-16 15:41:41 (GMT) |
commit | 9127e933dd622fb7e0fd6892046aa3b58c7d43c8 (patch) | |
tree | 8c1a7f123da80bac2cd5cca2d9aa6d02e497079f /unix/Makefile.in | |
parent | 7a6a77955225006567252f9b76f90cafb12d56a8 (diff) | |
parent | dae178c6fb5d174b35f7b985caf0d8669349aeb3 (diff) | |
download | tk-9127e933dd622fb7e0fd6892046aa3b58c7d43c8.zip tk-9127e933dd622fb7e0fd6892046aa3b58c7d43c8.tar.gz tk-9127e933dd622fb7e0fd6892046aa3b58c7d43c8.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 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index aa4e255..1da2d72 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -186,7 +186,7 @@ KEYSYM_FLAGS = # 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 # Some versions of make, like SGI's, use the following variable to |