r63233 - 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
Sun Oct 3 18:18:11 UTC 2010


Author: jawnsy-guest
Date: Sun Oct  3 18:18:01 2010
New Revision: 63233

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

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=63233&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/Changes (original)
+++ branches/upstream/libmath-random-mt-perl/current/Changes Sun Oct  3 18:18:01 2010
@@ -1,3 +1,9 @@
+1.12    2010-09-29      Abhijit Menon-Sen <ams at toroid.org>
+
+    * Fix OS X build failure reported by Daniel Barker and fixed by
+      Tokuhiro Matsuno.
+
+
 1.11    2010-05-08      Abhijit Menon-Sen <ams at toroid.org>
 
     * Fix tests broken by overly optimistic floating point comparison

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=63233&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/META.yml (original)
+++ branches/upstream/libmath-random-mt-perl/current/META.yml Sun Oct  3 18:18:01 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Math-Random-MT
-version:            1.11
+version:            1.12
 abstract:           The Mersenne Twister PRNG
 author:  []
 license:            unknown

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=63233&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/MT.pm (original)
+++ branches/upstream/libmath-random-mt-perl/current/MT.pm Sun Oct  3 18:18:01 2010
@@ -7,7 +7,7 @@
 
 my $gen = undef;
 @ISA = qw( DynaLoader );
-$VERSION = '1.11';
+$VERSION = '1.12';
 
 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=63233&op=diff
==============================================================================
--- branches/upstream/libmath-random-mt-perl/current/mt.h (original)
+++ branches/upstream/libmath-random-mt-perl/current/mt.h Sun Oct  3 18:18:01 2010
@@ -3,7 +3,7 @@
 
 #if defined(_MSC_VER) && (_MSC_VER <= 1300)
 typedef unsigned __int32 uint32_t;
-#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__)
+#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(__APPLE__)
 #include <stdint.h>
 #elif defined(__osf__)
 #include <inttypes.h>




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