summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-25 07:34:44 (GMT)
committerNed Deily <nad@acm.org>2013-10-25 07:34:44 (GMT)
commit65657c27fabc9d2419d1616c7e0e3915998047e0 (patch)
tree913bf075294f6b86891d771a1de5056cd6309d6b /Misc
parent7d6392c517c6501d79541b4b2bdbfd661b9322a7 (diff)
downloadcpython-65657c27fabc9d2419d1616c7e0e3915998047e0.zip
cpython-65657c27fabc9d2419d1616c7e0e3915998047e0.tar.gz
cpython-65657c27fabc9d2419d1616c7e0e3915998047e0.tar.bz2
Issue #1584: Provide options to override default search paths for Tcl and Tk
when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 854a4a0..2f2c932 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -592,6 +592,9 @@ Build
- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1
on Windows.
+- Issue #1584: Provide options to override default search paths for
+ Tcl and Tk when building _tkinter.
+
What's New in Python 3.3.2?
===========================