[SCM] Debian packaging of libmath-random-mt-perl branch, master, updated. debian/1.14-1
Salvatore Bonaccorso
carnil at debian.org
Sun May 27 09:05:02 UTC 2012
The following commit has been merged in the master branch:
commit 4cdf80c697a82c33c09c1450f41acb2a3fd0eec5
Author: Salvatore Bonaccorso <carnil at debian.org>
Date: Sun May 27 10:53:21 2012 +0200
Refresh fix-FTBFS-on-hurd.patch patch
diff --git a/debian/patches/fix-FTBFS-on-hurd.patch b/debian/patches/fix-FTBFS-on-hurd.patch
index 1b17b34..ad1c1c3 100644
--- a/debian/patches/fix-FTBFS-on-hurd.patch
+++ b/debian/patches/fix-FTBFS-on-hurd.patch
@@ -1,4 +1,4 @@
-Description: Fix FTBFS on hurd-i386.
+Description: Fix FTBFS on hurd-i386
stdint.h is not included in mt.h, so the uint32_t typedef is missing.
Check for __GNU__ to the preprocessor conditions for including stdint.h
Origin: vendor
@@ -7,16 +7,16 @@ Bug-Debian: http://bugs.debian.org/656499
Forwarded: yes
Author: Pino Toscano <pino at debian.org>
Reviewed-by: Salvatore Bonaccorso <carnil at debian.org>
-Last-Update: 2012-01-19
+Last-Update: 2012-05-27
--- a/mt.h
+++ b/mt.h
@@ -3,7 +3,7 @@
- #if defined(_MSC_VER) && (_MSC_VER <= 1300)
+ #if defined(_MSC_VER) && (_MSC_VER < 1600) // for MS Visual Studio prior to 2010
typedef unsigned __int32 uint32_t;
--#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(__APPLE__)
-+#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(__APPLE__) || defined(__GNU__)
+-#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(_MSC_VER) || defined(__APPLE__)
++#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(_MSC_VER) || defined(__APPLE__) || defined(__GNU__)
#include <stdint.h>
#elif defined(__osf__)
#include <inttypes.h>
--
Debian packaging of libmath-random-mt-perl
More information about the Pkg-perl-cvs-commits
mailing list