This is the mail archive of the cygwin-apps mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Python 2.6 ?


Jason,

Another patch is required for Python 2.6 to export PySignal_SetWakeupFd in the implib, which is a new symbol in 2.6 and is used by PyGObject.

Please add this to your 2.6 package before we switch so that PyGObject/PyGtk doesn't break.

Thanks,
--- origsrc/Python-2.6.5/Include/pyerrors.h	2008-06-08 23:58:54.000000000 -0500
+++ src/Python-2.6.5/Include/pyerrors.h	2010-05-12 04:19:31.535297200 -0500
@@ -232,7 +232,7 @@ PyAPI_FUNC(int) PyErr_CheckSignals(void)
 PyAPI_FUNC(void) PyErr_SetInterrupt(void);
 
 /* In signalmodule.c */
-int PySignal_SetWakeupFd(int fd);
+PyAPI_FUNC(int) PySignal_SetWakeupFd(int fd);
 
 /* Support for adding program text to SyntaxErrors */
 PyAPI_FUNC(void) PyErr_SyntaxLocation(const char *, int);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]