[pypy-commit] pypy release-2.2.x: C header include paths .. once more

oberstet noreply at buildbot.pypy.org
Sun Nov 24 11:49:41 CET 2013


Author: Tobias Oberstein <tobias.oberstein at tavendo.de>
Branch: release-2.2.x
Changeset: r68302:cd21588f10bf
Date: 2013-11-18 17:08 +0100
http://bitbucket.org/pypy/pypy/changeset/cd21588f10bf/

Log:	C header include paths .. once more (transplanted from
	b6c763cd5357318c6c3f914e340f92529db4bf33)

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
@@ -113,7 +113,7 @@
     linklibs = ['tk85', 'tcl85']
     libdirs = ['/usr/local/lib', '/usr/X11R6/lib']
 elif sys.platform.startswith("freebsd"):
-    incdirs = ['/usr/local/include/tcl8.6', '/usr/local/include/tk8.6', '/usr/local/include/X11']
+    incdirs = ['/usr/local/include/tcl8.6', '/usr/local/include/tk8.6', '/usr/local/include/X11', '/usr/local/include']
     linklibs = ['tk86', 'tcl86']
     libdirs = ['/usr/local/lib']
 elif sys.platform == 'win32':


More information about the pypy-commit mailing list