[pypy-commit] pypy default: In the default case, try harder to find /usr/include/tclX.Y

arigo noreply at buildbot.pypy.org
Mon Apr 6 17:23:21 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76726:0b13b369733e
Date: 2015-04-06 17:23 +0200
http://bitbucket.org/pypy/pypy/changeset/0b13b369733e/

Log:	In the default case, try harder to find /usr/include/tclX.Y

diff --git a/lib_pypy/_tkinter/tklib.py b/lib_pypy/_tkinter/tklib.py
--- a/lib_pypy/_tkinter/tklib.py
+++ b/lib_pypy/_tkinter/tklib.py
@@ -135,7 +135,7 @@
     linklibs = ['tcl', 'tk']
     libdirs = []
 else:
-    incdirs=['/usr/include/tcl']
+    incdirs=['/usr/include/tcl', '/usr/include/tcl8.6', '/usr/include/tcl8.5']
     linklibs=['tcl', 'tk']
     libdirs = []
 


More information about the pypy-commit mailing list