diff options
author | Ned Deily <nad@acm.org> | 2013-10-25 07:30:10 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-10-25 07:30:10 (GMT) |
commit | a2a9f571a5bd14f7879e5c78c1778fa85bd08e58 (patch) | |
tree | ae8e2b0b0fa16dfe0616d5207a945c2f06e6fd70 /Misc | |
parent | 22fb0dec30af4168c81744782a8bcc2453ac8055 (diff) | |
download | cpython-a2a9f571a5bd14f7879e5c78c1778fa85bd08e58.zip cpython-a2a9f571a5bd14f7879e5c78c1778fa85bd08e58.tar.gz cpython-a2a9f571a5bd14f7879e5c78c1778fa85bd08e58.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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -280,6 +280,9 @@ Build OS X 10.8 systems because the Apple-deprecated QuickDraw headers have been removed from Xcode 4. Skip building it in this case. +- Issue #1584: Provide options to override default search paths for + Tcl and Tk when building _tkinter. + IDLE ---- |