Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r78623:55c0403ff1d9
Date: 2015-07-21 13:15 +0200
http://bitbucket.org/pypy/pypy/changeset/55c0403ff1d9/

Log:    Issue #2086: attempted fix

diff --git a/pypy/module/cpyext/include/modsupport.h 
b/pypy/module/cpyext/include/modsupport.h
--- a/pypy/module/cpyext/include/modsupport.h
+++ b/pypy/module/cpyext/include/modsupport.h
@@ -95,6 +95,13 @@
 
 PyAPI_DATA(char *) _Py_PackageContext;
 
+/* hack hack hack */
+#ifndef __va_copy
+# ifdef va_copy
+#  define __va_copy(a,b) va_copy(a,b)
+# endif
+#endif
+
 #ifdef __cplusplus
 }
 #endif
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to