Hello,
I had a build problem with ActiveState Perl 5.8.4 and Scalar-List-Utils-
1.18 during step 'nmake':
Linker complains about 'Perl_seed' being unresolved. (Original message
was in German, maybe that is not so informative).
Solution: I patched file Util.xs at line 315
#if (PERL_VERSION < 8) || (PERL_VERSION == 8 && PERL_SUBVERSION <1)
to
#if (PERL_VERSION < 8) || (PERL_VERSION == 8 && PERL_SUBVERSION <5)
which solved my problem. Hope that helps.