-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Fri, 17 Jan 2003, Christopher H. Laco wrote:

> This is on FreeBSD 4.7-STABLE, Perl 5.005_3, AxKit 1.6, Compress::Zlip 1.19
> Thoughts?

That problem only occurs with Perl versions not higher than 5.00555 and is 
fixed in CVS. If you don't want to update to the whole current CVS you 
could apply the following patch.

<snip>
- --- AxKit.pm_1.6 Sat Jun  8 14:03:10 2002
+++ AxKit.pm Sat Jan 18 09:34:48 2003
@@ -790,12 +790,12 @@
             AxKit::Debug(4, 'Sending gzipped xml string to browser');
             AxKit::Apache::send_http_header($r);
             if ($doit) {
- -                $r->print( unpack("U0A*", Compress::Zlib::memGzip( 
+                $r->print( unpack($]>5.00555?"U0A*":"A*", Compress::Zlib::memGzip(
                          $transformer->( $r->pnotes('xml_string') )
                          ) ) );
             }
             else {
- -                $r->print( unpack("U0A*", Compress::Zlib::memGzip( 
$r->pnotes('xml_string') ) ) );
+                $r->print( unpack($]>5.00555?"U0A*":"A*", Compress::Zlib::memGzip( 
+$r->pnotes('xml_string') ) ) );
             }
         }
         else {
</snip>

Michael

- -- 
IT Services
University of Innsbruck


-----BEGIN PGP SIGNATURE-----
Version: PGP 6.5.8

iQA/AwUBPikVhHjN0CNeKmaIEQJQOgCg9vIxW8yLSXkyzbJzR+2fo9tLUEEAn0c5
h6uAkF/zyQkWqn5bztBW6QvP
=V/yg
-----END PGP SIGNATURE-----


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to