r41434 - in /branches/upstream/libmath-random-mt-perl/current: Changes META.yml MT.pm mt.h

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Aug 6 23:15:43 UTC 2009


Author: jawnsy-guest
Date: Thu Aug  6 23:15:37 2009
New Revision: 41434

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41434
Log:
[svn-upgrade] Integrating new upstream version, libmath-random-mt-perl (1.10)

Modified:
    branches/upstream/libmath-random-mt-perl/current/Changes
    branches/upstream/libmath-random-mt-perl/current/META.yml
    branches/upstream/libmath-random-mt-perl/current/MT.pm
    branches/upstream/libmath-random-mt-perl/current/mt.h

Modified: branches/upstream/libmath-random-mt-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmath-random-mt-perl/current/Changes?rev=41434&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/Changes (original)
+++ branches/upstream/libmath-random-mt-perl/current/Changes Thu Aug  6 23:15:37 2009
@@ -1,3 +1,11 @@
+1.10    2009-08-06      Abhijit Menon-Sen <ams at toroid.org>
+
+    * Compile fix for MSVC, which has no stdint.h.
+      (Thanks to Taro Nishino for the report and patch.)
+
+    (I made a mistake releasing 1.09.)
+
+
 1.08    2009-08-06      Abhijit Menon-Sen <ams at toroid.org>
 
     * BSD license

Modified: branches/upstream/libmath-random-mt-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmath-random-mt-perl/current/META.yml?rev=41434&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/META.yml (original)
+++ branches/upstream/libmath-random-mt-perl/current/META.yml Thu Aug  6 23:15:37 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Math-Random-MT
-version:             1.08
+version:             1.10
 abstract:            The Mersenne Twister PRNG
 license:             ~
 author:              ~

Modified: branches/upstream/libmath-random-mt-perl/current/MT.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmath-random-mt-perl/current/MT.pm?rev=41434&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/MT.pm (original)
+++ branches/upstream/libmath-random-mt-perl/current/MT.pm Thu Aug  6 23:15:37 2009
@@ -7,7 +7,7 @@
 
 my $gen = undef;
 @ISA = qw( DynaLoader );
-$VERSION = '1.08';
+$VERSION = '1.10';
 
 bootstrap Math::Random::MT $VERSION;
 

Modified: branches/upstream/libmath-random-mt-perl/current/mt.h
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmath-random-mt-perl/current/mt.h?rev=41434&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/mt.h (original)
+++ branches/upstream/libmath-random-mt-perl/current/mt.h Thu Aug  6 23:15:37 2009
@@ -1,7 +1,9 @@
 #ifndef _MATH_MT_H_
 #define _MATH_MT_H_
 
-#if defined(__linux__) || defined(__WIN32__) || defined(__GLIBC__)
+#if defined(_MSC_VER) && (_MSC_VER <= 1300)
+typedef unsigned __int32 uint32_t;
+#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__)
 #include <stdint.h>
 #elif defined(__osf__)
 #include <inttypes.h>




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