[pypy-commit] pypy default: Issue #2420

arigo pypy.commits at gmail.com
Tue Oct 18 15:13:32 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r87866:ad205516c724
Date: 2016-10-18 21:12 +0200
http://bitbucket.org/pypy/pypy/changeset/ad205516c724/

Log:	Issue #2420

diff --git a/rpython/rlib/rposix.py b/rpython/rlib/rposix.py
--- a/rpython/rlib/rposix.py
+++ b/rpython/rlib/rposix.py
@@ -236,6 +236,8 @@
                 'utime.h', 'sys/time.h', 'sys/times.h',
                 'grp.h', 'dirent.h', 'sys/stat.h', 'fcntl.h',
                 'signal.h', 'sys/utsname.h', _ptyh]
+    if sys.platform.startswith('freebsd'):
+        includes.append('sys/ttycom.h')
     libraries = ['util']
 eci = ExternalCompilationInfo(
     includes=includes,


More information about the pypy-commit mailing list