Bug#358648: [Pyme-help] Re: FTBFS: 'alloc2' undeclared

2006-04-12 Thread Igor Belyi

Arnaud Fontaine wrote:

Are you planning a new stable release of pyme soon which will include
this patch ?
  


Well.. I do plan 0.7.1 release "any minute now" for the last half an 
year. :-(


I want to figure out why do I still have problems with MinGW32 built 
PyMe on Windows.
The problems boils down to gpgme problems with talking to gnupg.exe and 
obstacted by
my inability to find the right time to "really" look at them. I guess I 
would try newly
released GnuPG 1.4.4 to see if it is fixed there... But as for "when" - 
that's the hard

question.

In short, I'd suggest to add this patch in a debian specific release to 
avoid its eviction from
the testing or to speed up the inclusion into one. :-) The new 0.7.1 
release will have just
the Windows build and 2 (including this one) bug fixes which is not too 
much "value-add"

for Debian.

Cheers,
Igor



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#358648: [Pyme-help] Re: FTBFS: 'alloc2' undeclared

2006-04-12 Thread Arnaud Fontaine
> "Igor" == Igor Belyi <[EMAIL PROTECTED]> writes:

Igor> I've got it! Here's a slightly better patch which should not
Igor> break back compatibility and does not use undocumented
Igor> features. I'm making similar changes in CVS as well.

Hello Igor,

Are you  planning a new stable  release of pyme soon  which will include
this patch ?

Regards,
Arnaud Fontaine


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#358648: [Pyme-help] Re: FTBFS: 'alloc2' undeclared

2006-04-12 Thread Igor Belyi

Igor Belyi wrote:
I'm still trying to find the right workaround for this. For now it 
seems SWIG 1.3.28 is not good

version to use for pyme build.
I've got it! Here's a slightly better patch which should not break back 
compatibility and does not use

undocumented features. I'm making similar changes in CVS as well.

Cheers,
Igor


--- gpgme.i.old	2006-04-12 14:08:14.0 -0400
+++ gpgme.i	2006-04-12 13:46:23.0 -0400
@@ -35,6 +35,7 @@
 return NULL;
   }
 }
+%typemap(freearg) const char * "";
 
 // Release returned buffers as necessary.
 %typemap(newfree) char * "free($1);";