update to 4.1.3 (bug fixes)
This commit is contained in:
parent
9d5abbf936
commit
5873f51b97
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.11 2004/02/22 22:21:01 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.12 2004/06/10 16:26:29 naddy Exp $
|
||||
|
||||
COMMENT= "library for arbitrary precision arithmetic"
|
||||
|
||||
DISTNAME= gmp-4.1.2
|
||||
DISTNAME= gmp-4.1.3
|
||||
CATEGORIES= devel math
|
||||
|
||||
HOMEPAGE= http://www.swox.com/gmp/
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (gmp-4.1.2.tar.gz) = 01c7fbd6abbb8824a22161f6c6bbdaf0
|
||||
RMD160 (gmp-4.1.2.tar.gz) = 4c7248c029a9cf6ae80c4223bb7efdaad81c3b60
|
||||
SHA1 (gmp-4.1.2.tar.gz) = 68a6ee6488e9c660f201be70bc55b8e2c40b16b1
|
||||
MD5 (gmp-4.1.3.tar.gz) = bdbb9136fa22a0ccf028d0f87aae1dd2
|
||||
RMD160 (gmp-4.1.3.tar.gz) = c659eaa77cd0135eb92940456c761651fa94396b
|
||||
SHA1 (gmp-4.1.3.tar.gz) = 8ddf78393f8e8155757f2cdb4883bb28826cdd59
|
||||
|
@ -1,15 +0,0 @@
|
||||
$OpenBSD: patch-longlong_h,v 1.1 2004/02/26 22:50:54 pvalchev Exp $
|
||||
--- longlong.h.orig 2002-12-17 14:57:20.000000000 -0700
|
||||
+++ longlong.h 2004-02-26 07:10:29.000000000 -0700
|
||||
@@ -715,8 +715,10 @@ extern UWtype __MPN(udiv_qrnnd) _PROTO (
|
||||
} while (0)
|
||||
#define count_trailing_zeros(count, x) \
|
||||
do { \
|
||||
+ UDItype __cbtmp; \
|
||||
ASSERT ((x) != 0); \
|
||||
- __asm__ ("bsfq %1,%0" : "=r" (count) : "rm" ((UDItype)(x))); \
|
||||
+ __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \
|
||||
+ (count) = __cbtmp; \
|
||||
} while (0)
|
||||
#endif /* x86_64 */
|
||||
|
@ -1,3 +1,3 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.5 2003/03/29 00:30:59 naddy Exp $
|
||||
lib/libgmp.so.6.2
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.6 2004/06/10 16:26:29 naddy Exp $
|
||||
lib/libgmp.so.6.3
|
||||
DYNLIBDIR(%B)
|
||||
|
Loading…
Reference in New Issue
Block a user