diff options
author | pav <pav@FreeBSD.org> | 2008-04-04 23:22:17 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-04-04 23:22:17 +0800 |
commit | f665c7203eb2ed8706dd8b57ef70497d186930dc (patch) | |
tree | 8f26f2ef00156385dfc5905047080457d6211a04 | |
parent | c6f6006721719f7f09857d6322db1ff912545e0a (diff) | |
download | freebsd-ports-gnome-f665c7203eb2ed8706dd8b57ef70497d186930dc.tar.gz freebsd-ports-gnome-f665c7203eb2ed8706dd8b57ef70497d186930dc.tar.zst freebsd-ports-gnome-f665c7203eb2ed8706dd8b57ef70497d186930dc.zip |
- Re-enable ASM on i386
PR: ports/122444
Submitted by: Ralf van der Enden <tremere@cainites.net>
-rw-r--r-- | math/miracl/Makefile | 8 | ||||
-rw-r--r-- | math/miracl/files/patch-mirdef.lnx | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/math/miracl/Makefile b/math/miracl/Makefile index 4adf0bbef96e..8e68b6b52e99 100644 --- a/math/miracl/Makefile +++ b/math/miracl/Makefile @@ -7,6 +7,7 @@ PORTNAME= miracl PORTVERSION= 5.3.2 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ftp://ftp.computing.dcu.ie/pub/crypto/ \ ${MASTER_SITE_LOCAL} @@ -38,11 +39,18 @@ IGNORE= Builds on x86 and amd64 only post-patch: # C{C,XX} safeness # CFLAGS safeness +.if ${ARCH} == "i386" + @${REINPLACE_CMD} -E \ + -e 's|gcc|${CC}|' \ + -e 's|g\+\+|${CXX}|' \ + -e 's|-O2|${CFLAGS}|' \ +.else @${REINPLACE_CMD} -E \ -e 's|gcc|${CC}|' \ -e 's|g\+\+|${CXX}|' \ -e 's|-O2|${CFLAGS} -fPIC|' \ ${WRKSRC}/${BUILDCMD} +.endif do-build: @cd ${WRKSRC} && ${SH} ./${BUILDCMD} diff --git a/math/miracl/files/patch-mirdef.lnx b/math/miracl/files/patch-mirdef.lnx deleted file mode 100644 index ce1d464e683c..000000000000 --- a/math/miracl/files/patch-mirdef.lnx +++ /dev/null @@ -1,9 +0,0 @@ -diff -Nru mirdef.lnx mirdef.lnx ---- mirdef.lnx 2006-07-12 13:57:00.000000000 +0200 -+++ mirdef.lnx 2008-04-03 23:24:04.000000000 +0200 -@@ -27,4 +27,4 @@ - - #define MAXBASE ((mr_small)1<<(MIRACL-1)) - -- -+#define MR_NOASM |