I've released Crypt-Rijndael-0.06_01 to see if the simple change of using <sys/type.h> solves most of the bugs in RT. In trying to test this, I've discovered that everything in my life is now some sort of BSD. I used to have linux logins, and I guess I should pul that Windows box out of the closet, but I'll wait to see what CPAN Testers say.
Uses what? (Score:2)
In looking at the entry, I see you don't state what it uses. Further, in viewing source, where you would have stated what it uses, I see that it has two blank spaces instead of one, implying that some programmatic transformation took place (or just some very weird typo).
Re: (Score:1)
Looks fine to me, though it might just be that brian got to it before I got here.
Re: (Score:2)
Interesting. It looks fine to me now, too. However, that doesn't how <sys/type.h> disappeared when I viewed source. Weird.
Re: (Score:2)
Re: (Score:1)
Ah, yeah, of course. The HTML tag filter doesn’t mangle user input, it just scrubs posts during rendering.
You, sir, are my hero. (Score:2)
Win32 a nogo (Score:1)
Doesn't build on Win32; but after I hacked the UINT32/UINT8 typedefs back to the 0.05 original, it built (w/ a few warnings):
Lemme know if you want an RT ticket on it.Re: (Score:2)
I'm not much of a Windows programmer, but is there another header that's equivalent to types.h? If not, what's the best way to do an #ifdef to detect windows? Pointing me at a module that does it right is fine as long as I can see an example.
Thanks,
Re: (Score:1)
A quick scan of perl-5.8.8 srcs shows WIN32 (and occassionally _WIN32) are the defines used. IIRC, thats defined by VC by default. In fact, when applied to rijndael.h, this works:
Re: (Score:2)