[pypy-commit] pypy py3k: Fixed translation for freebsd.

marky1991 pypy.commits at gmail.com
Thu Aug 11 11:49:27 EDT 2016


Author: Mark Young <marky1991 at gmail.com>
Branch: py3k
Changeset: r86149:575f3ed5760a
Date: 2016-08-02 21:40 +0000
http://bitbucket.org/pypy/pypy/changeset/575f3ed5760a/

Log:	Fixed translation for freebsd.

diff --git a/pypy/module/_posixsubprocess/_posixsubprocess.c b/pypy/module/_posixsubprocess/_posixsubprocess.c
--- a/pypy/module/_posixsubprocess/_posixsubprocess.c
+++ b/pypy/module/_posixsubprocess/_posixsubprocess.c
@@ -12,7 +12,7 @@
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
-#if defined(HAVE_SYS_STAT_H) && defined(__FreeBSD__)
+#if defined(__FreeBSD__)
 #include <sys/stat.h>
 #endif
 #ifdef HAVE_SYS_SYSCALL_H


More information about the pypy-commit mailing list