[pypy-commit] pypy default: C header include paths .. once more

oberstet noreply at buildbot.pypy.org
Mon Nov 18 18:07:54 CET 2013


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

Log:	C header include paths .. once more

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