r10718 - in /branches/upstream/libcrypt-rijndael-perl/current: Changes META.yml Makefile.PL Rijndael.pm rijndael.h

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sun Dec 2 16:57:54 UTC 2007


Author: dmn
Date: Sun Dec  2 16:57:54 2007
New Revision: 10718

URL: http://svn.debian.org/wsvn/?sc=1&rev=10718
Log:
[svn-upgrade] Integrating new upstream version, libcrypt-rijndael-perl (01)

Modified:
    branches/upstream/libcrypt-rijndael-perl/current/Changes
    branches/upstream/libcrypt-rijndael-perl/current/META.yml
    branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL
    branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
    branches/upstream/libcrypt-rijndael-perl/current/rijndael.h

Modified: branches/upstream/libcrypt-rijndael-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-rijndael-perl/current/Changes?rev=10718&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Changes (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Changes Sun Dec  2 16:57:54 2007
@@ -1,10 +1,14 @@
+
+1.05_01 - Tue Nov 20 07:59:26 2007
+	* Updated rijndael.h to handle Mac OS X Panther.
+	* No need to upgrade if you already have this installed.
 
 1.05 - Fri Nov  9 05:39:09 2007
 	* This version fixes the signed integer problems that Solaris had.
-	* Now this module require perl 5.6.
+	* Now this module requires perl 5.6.
 	* You don't need to upgrade if your system isn't Solaris.
 
-1.04 - Mon Oct 15 14:27:00 2007
+1.04_03 - Mon Oct 15 14:27:00 2007
 	* Quashed warnings about overflows by casting numbers to
 	unsigned ints.
 	* This compiles warning-free and passes all tests on

Modified: branches/upstream/libcrypt-rijndael-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-rijndael-perl/current/META.yml?rev=10718&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/META.yml Sun Dec  2 16:57:54 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Crypt-Rijndael
-version:             1.05
+version:             1.05_01
 abstract:            Crypt::CBC compliant Rijndael encryption module
 license:             gpl
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL?rev=10718&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Makefile.PL Sun Dec  2 16:57:54 2007
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 2367 2007-11-09 11:38:52Z comdog $
+# $Id: Makefile.PL 2408 2007-11-20 13:54:31Z comdog $
 
 require 5.006;
 
@@ -23,7 +23,7 @@
 			'Rijndael.pm' => '$(INST_MAN3DIR)/Crypt::Rijndael.3',
 			},
 
-	clean          => { FILES    => q|*.bak Crypt-*| },
+	clean          => { FILES    => q|*.bak *.old Crypt-*| },
 
 	dist	       => {
 	            PREOP	=> 'pod2text Rijndael.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',

Modified: branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm?rev=10718&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm Sun Dec  2 16:57:54 2007
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.05';
+$VERSION = '1.05_01';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;

Modified: branches/upstream/libcrypt-rijndael-perl/current/rijndael.h
URL: http://svn.debian.org/wsvn/branches/upstream/libcrypt-rijndael-perl/current/rijndael.h?rev=10718&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/rijndael.h (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/rijndael.h Sun Dec  2 16:57:54 2007
@@ -42,6 +42,22 @@
 	#define _CRYPT_RIJNDAEL_H_TYPES
 	typedef uint32_t UINT32;
 	typedef uint8_t  UINT8;
+#endif
+
+/* Mac OS X 10.3 defines things differently than most other 
+systems */
+#if defined( __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ ) &&  __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__-0 < 1140
+	#define _CRYPT_RIJNDAEL_H_TYPES
+	typedef u_int32_t UINT32;
+	typedef u_char    UINT8;
+#endif
+
+/* Mac OS X 10.3 defines things differently than most other
+systems */
+#if defined(__APPLE__) && ! defined(__DARWIN_UNIX03)
+	#define _CRYPT_RIJNDAEL_H_TYPES
+	typedef u_int32_t UINT32;
+	typedef u_char Ê ÊUINT8;
 #endif
 
 /* I expect this to be the usual case */




More information about the Pkg-perl-cvs-commits mailing list