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;
}