Randy Kobes wrote:
> One clue to the problem might be that, on my ActivePerl 620, the
> module builds OK and passes the tests if I manually remove
> -DPERL_IMPLICIT_SYS from the CCFLAGS of the generated Makefile.

same for me (ActivePerl 623 built from source).
I have patched Storable.xs like this (don't know if it's good
in all cases, though):

diff -bu Storable.xs.orig Storable.xs
--- Storable.xs.orig    Wed Jan  3 10:45:14 2001
+++ Storable.xs Fri Feb  2 11:32:22 2001
@@ -38,6 +38,10 @@
  *
  */

+#ifdef WIN32
+#undef PERL_IMPLICIT_SYS
+#endif
+
 #include <EXTERN.h>
 #include <perl.h>
 #include <patchlevel.h>                /* Perl's one, needed since 5.6 */


cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;


Reply via email to