Skip Menu |

This queue is for tickets about the re-engine-Plugin CPAN distribution.

Report information
The Basics
Id: 31635
Status: resolved
Priority: 0/
Queue: re-engine-Plugin

People
Owner: Nobody in particular
Requestors: PERRAD [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.03
Fixed in: (no value)



Subject: Fix compilation on MinGW32
The followin patch fixes compilatio error on MinGW32. Perl 5.10.0 (build 1000 beta ActiveState) OS : MSWin32 gcc 3.4.5
Subject: Plugin.xs.patch
--- Plugin.xs 2007-12-17 23:21:51.000000000 +0100 +++ ..\..\tmp.orig\re-engine-Plugin-0.03\Plugin.xs 2007-05-17 21:04:54.000000000 +0200 @@ -210,9 +210,9 @@ } void * -Plugin_dupe(pTHX_ REGEXP * const rx, CLONE_PARAMS *param) +Plugin_dupe(pTHX_ const REGEXP * rx, CLONE_PARAMS *param) { - Perl_croak(aTHX_ "dupe not supported yet"); + Perl_croak("dupe not supported yet"); return rx->pprivate; }
On Tue Dec 18 03:52:14 2007, PERRAD wrote: Show quoted text
> The followin patch fixes compilatio error on MinGW32. > Perl 5.10.0 (build 1000 beta ActiveState) > OS : MSWin32 > gcc 3.4.5
Fixed and uploaded in 0.05. Thanks for the patch