diff options
author | tron <tron> | 2003-09-23 19:05:05 +0000 |
---|---|---|
committer | tron <tron> | 2003-09-23 19:05:05 +0000 |
commit | f716b467a7cf469e5aa1df06615bad415c1a2683 (patch) | |
tree | 267f968e92be61a9755c4b74116eaf3023cfe13f /emulators | |
parent | ff50cfe8c4b4b21c1f8cbcf6d75fd4be3cf767f3 (diff) | |
download | pkgsrc-f716b467a7cf469e5aa1df06615bad415c1a2683.tar.gz |
Work arround build problem with GCC 3.3.1 by disabling the broken assembler
source optimizer.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/uae/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/emulators/uae/Makefile b/emulators/uae/Makefile index 5f2c5c81be0..9be670f2604 100644 --- a/emulators/uae/Makefile +++ b/emulators/uae/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2003/07/17 21:36:19 grant Exp $ +# $NetBSD: Makefile,v 1.25 2003/09/23 19:05:05 tron Exp $ DISTNAME= uae-0.8.22 PKGNAME= ${DISTNAME} @@ -18,6 +18,14 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-dga --enable-vidmode --disable-ui +.include "../../mk/bsd.prefs.mk" + +post-configure: +.if ${OPSYS} == NetBSD && defined(HAVE_GCC3) && ${HAVE_GCC3} == yes + ${TOUCH} ${WRKSRC}/src/tools/cpuopti.o + ${CP} ${CAT} ${WRKSRC}/src/tools/cpuopti +.endif + do-install: cd ${WRKSRC} && ${INSTALL_PROGRAM} readdisk uae ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/uae |