[libmath-prime-util-perl] 50/54: Don't use Win32 intrins on WinCE

Partha P. Mukherjee ppm-guest at moszumanska.debian.org
Thu May 21 18:52:11 UTC 2015


This is an automated email from the git hooks/post-receive script.

ppm-guest pushed a commit to annotated tag v0.38
in repository libmath-prime-util-perl.

commit 481ac3bf45d05ee4e9579372a8d7635d214b9f57
Author: Dana Jacobsen <dana at acm.org>
Date:   Fri Feb 28 08:45:10 2014 -0800

    Don't use Win32 intrins on WinCE
---
 util.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.h b/util.h
index 31d8d34..978e192 100644
--- a/util.h
+++ b/util.h
@@ -143,7 +143,7 @@ static int is_perfect_square(UV n)
   * The performance of these functions are not super critical.
   * What is:  popcnt, mulmod, and muladd.
   */
-#elif defined (_MSC_VER) && _MSC_VER >= 1400 && !defined(__clang__)
+#elif defined (_MSC_VER) && _MSC_VER >= 1400 && !defined(__clang__) && !defined(_WIN32_WCE)
  #include <intrin.h>
  #ifdef FUNC_ctz
   static int ctz(UV n) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmath-prime-util-perl.git



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