View | Details | Raw Unified | Return to bug 98214 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-10 / +3 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	tomsfastmath
8
PORTNAME=	tomsfastmath
9
PORTVERSION=	0.08
9
PORTVERSION=	0.09
10
CATEGORIES=	math
10
CATEGORIES=	math
11
MASTER_SITES=	http://libtomcrypt.com/tfm/files/
11
MASTER_SITES=	http://libtomcrypt.com/tfm/files/
12
DISTNAME=	tfm-${PORTVERSION}
12
DISTNAME=	tfm-${PORTVERSION}
Lines 22-34 Link Here
22
22
23
PLIST_FILES=	include/tfm.h lib/libtfm.a
23
PLIST_FILES=	include/tfm.h lib/libtfm.a
24
24
25
.include <bsd.port.pre.mk>
25
NOT_FOR_ARCHS=	sparc64
26
26
27
.if ${ARCH} == "sparc64"
27
.include <bsd.port.mk>
28
BROKEN=		Does not build on sparc64
29
.endif
30
31
post-patch:
32
	@${REINPLACE_CMD} -e 's|
||' ${WRKSRC}/fp_montgomery_reduce.c
33
34
.include <bsd.port.post.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (tfm-0.08.tar.bz2) = 681dc4452fb613e263619597bc537bca
1
MD5 (tfm-0.09.tar.bz2) = cde07c65d08cadc3626f1476c75e1fb7
2
SHA256 (tfm-0.08.tar.bz2) = c0a929b41d50256022588ff22b43b3f8426699f2e32c8cc98103210d6d54f93b
2
SHA256 (tfm-0.09.tar.bz2) = 6ab39467a5be3911ec988539c9845e9c26da444fa59dc893110a0d52307fa9d9
3
SIZE (tfm-0.08.tar.bz2) = 220282
3
SIZE (tfm-0.09.tar.bz2) = 233815
(-)files/patch-makefile (-6 / +6 lines)
Lines 1-15 Link Here
1
--- makefile.orig	Mon Aug  1 12:34:18 2005
1
--- makefile.orig	Wed Apr 12 13:16:32 2006
2
+++ makefile	Wed Aug 31 15:30:39 2005
2
+++ makefile	Wed Apr 12 13:16:48 2006
3
@@ -7,7 +7,7 @@
3
@@ -11,7 +11,7 @@
4
 
4
 
5
 ifndef IGNORE_SPEED
5
 ifndef IGNORE_SPEED
6
 
6
 
7
-CFLAGS += -O3 -funroll-all-loops
7
-CFLAGS += -O3 -funroll-loops
8
+CFLAGS += -funroll-all-loops
8
+CFLAGS += -funroll-loops
9
 
9
 
10
 #profiling
10
 #profiling
11
 #PROF=-pg -g
11
 #PROF=-pg -g
12
@@ -49,11 +49,11 @@
12
@@ -53,11 +53,11 @@
13
 HEADERS=tfm.h
13
 HEADERS=tfm.h
14
 
14
 
15
 ifndef LIBPATH
15
 ifndef LIBPATH

Return to bug 98214