From 9fdbc6b987711a0fbb382ba89bb65c15924e10e8 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 2 Mar 2006 09:40:13 +0000 Subject: [PATCH] gst/pygstminiobject.h: Some crack distributions do weirdo stuff with PYGIL_API_IS_BUGGY. Original commit message from CVS: * gst/pygstminiobject.h: Some crack distributions do weirdo stuff with PYGIL_API_IS_BUGGY. Let's keep our own detection. Closes #333055 --- ChangeLog | 7 +++++++ gst/pygstminiobject.h | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index d514365f76..54bdc12b45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-03-02 Edward Hervey + + * gst/pygstminiobject.h: + Some crack distributions do weirdo stuff with PYGIL_API_IS_BUGGY. + Let's keep our own detection. + Closes #333055 + 2006-02-28 Jan Schmidt * pygst.py.in: diff --git a/gst/pygstminiobject.h b/gst/pygstminiobject.h index 4e97ce573e..c1c5bd9214 100644 --- a/gst/pygstminiobject.h +++ b/gst/pygstminiobject.h @@ -13,6 +13,7 @@ G_BEGIN_DECLS /* Work around bugs in PyGILState api fixed in 2.4.0a4 */ +#undef PYGIL_API_IS_BUGGY #if PY_VERSION_HEX < 0x020400A4 #define PYGIL_API_IS_BUGGY TRUE #else