aboutsummaryrefslogtreecommitdiffstats
path: root/emulators
diff options
context:
space:
mode:
authorlesi <lesi@FreeBSD.org>2005-07-16 02:50:09 +0800
committerlesi <lesi@FreeBSD.org>2005-07-16 02:50:09 +0800
commita39e82efcaebb007d16de860d50bc3b7edf23564 (patch)
tree9ab091aad7fd47b357cbd1050e2c7c175ac7bac1 /emulators
parent63d79894a816531c30f3356f74755a33fcf1b829 (diff)
downloadfreebsd-ports-gnome-a39e82efcaebb007d16de860d50bc3b7edf23564.tar.gz
freebsd-ports-gnome-a39e82efcaebb007d16de860d50bc3b7edf23564.tar.zst
freebsd-ports-gnome-a39e82efcaebb007d16de860d50bc3b7edf23564.zip
Fix configure on sparc64 and alpha 5.x and unmark BROKEN on alpha.
PR: ports/83516 Submitted by: maintainer
Diffstat (limited to 'emulators')
-rw-r--r--emulators/generator/Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/emulators/generator/Makefile b/emulators/generator/Makefile
index 24a50c90bf39..e08a97958506 100644
--- a/emulators/generator/Makefile
+++ b/emulators/generator/Makefile
@@ -39,8 +39,18 @@ post-install:
.include <bsd.port.pre.mk>
-.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102
-BROKEN= "Does not configure on alpha 5.x"
+.if ${ARCH} != "amd64" && ${ARCH} != "i386"
+USE_REINPLACE= yes
+
+post-patch:
+# These architectures do not support "-minline-all-stringops"
+ @${REINPLACE_CMD} -e 's|-minline-all-stringops||g' \
+ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
+.if ${ARCH} == "alpha"
+# "-ffast-math" does not work on alpha
+ @${REINPLACE_CMD} -e 's|-ffast-math||g' \
+ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
+.endif
.endif
# Generator needs GCC 2.95.x or GCC >= 3.4.2 to work properly.