package MIME::Base64;
-# $Id: Base64.pm,v 3.0 2004/01/14 11:59:07 gisle Exp $
+# $Id: Base64.pm,v 3.1 2004/03/29 11:55:49 gisle Exp $
use strict;
use vars qw(@ISA @EXPORT $VERSION);
@ISA = qw(Exporter DynaLoader);
@EXPORT = qw(encode_base64 decode_base64);
-$VERSION = '3.00_01';
+$VERSION = '3.01';
MIME::Base64->bootstrap($VERSION);
-/* $Id: Base64.xs,v 3.0 2004/01/14 11:59:07 gisle Exp $
+/* $Id: Base64.xs,v 3.2 2004/03/29 11:35:13 gisle Exp $
Copyright 1997-2004 Gisle Aas
#ifdef __cplusplus
extern "C" {
#endif
+#define PERL_NO_GET_CONTEXT /* we want efficiency */
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
+2004-03-29 Gisle Aas <gisle@ActiveState.com>
+
+ Release 3.01
+
+ By compiling the extension with PERL_NO_GET_CONTEXT we can
+ make it slightly faster on a threaded perl. No change on a
+ regular perl. Patch provided by Beau E. Cox <beau@beaucox.com>.
+
+ Fixed missing ";" with assert. Patch provided by
+ Brendan O'Dea <bod@debian.org>.
+
+
+
2004-01-14 Gisle Aas <gisle@ActiveState.com>
Release 3.00
package MIME::QuotedPrint;
-# $Id: QuotedPrint.pm,v 3.0 2004/01/14 11:59:07 gisle Exp $
+# $Id: QuotedPrint.pm,v 3.1 2004/03/29 11:55:49 gisle Exp $
use strict;
use vars qw(@ISA @EXPORT $VERSION);
@ISA = qw(Exporter);
@EXPORT = qw(encode_qp decode_qp);
-$VERSION = "3.00";
+$VERSION = "3.01";
use MIME::Base64; # will load XS version of {en,de}code_qp()