On Wed, Jan 30, 2008 at 09:43:22AM -0000, Steve Hay wrote: > Not straight out-of-the-box. I tried with 1.0.14 and then again with > 2.12 (the version prior to the UTF8 changes), but they both choke on > "case SVt_PVBM" in sv_type(). I don't know how to workaround that to get > it building with 5.10, but if it (and any other build problems) can be I think like this: #if PERL_VERSION < 9 case SVt_PVBM: #endif It's what the current Storable has, and I'd be surprised if anyone ever managed to get an SV of type SVt_PVBM into a data structure that they were able to pass into Storable. Nicholas ClarkThread Previous | Thread Next