diff options
author | abs <abs> | 2003-06-11 20:50:50 +0000 |
---|---|---|
committer | abs <abs> | 2003-06-11 20:50:50 +0000 |
commit | e5cadc38859cd255f30e86d5cc27e2106ab13f6c (patch) | |
tree | 6a86cf46283ab7df1fa150aa748fadd6e63fae25 /emulators | |
parent | 080996dedbcccf555003d1ae5beb2a8d32977a83 (diff) | |
download | pkgsrc-e5cadc38859cd255f30e86d5cc27e2106ab13f6c.tar.gz |
Update for the fact that 'arm' ports have been called NetBSD-*-arm for a while
now and not NetBSD-*-arm32. Changes include one or more of:
- Change MACHINE_ARCH == arm32 to also match arm
- Where ONLY_FOR_PLATFORM includes NetBSD-*-arm32, add NetBSD-*-arm
- Where BROKEN or worked around for arm gcc bugs, set USE_GCC3
The last may shake out a few more broken packages the next bulk build.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/compat13/Makefile | 8 | ||||
-rw-r--r-- | emulators/stella/Makefile | 8 |
2 files changed, 7 insertions, 9 deletions
diff --git a/emulators/compat13/Makefile b/emulators/compat13/Makefile index 956a19ee132..98b5decd3c3 100644 --- a/emulators/compat13/Makefile +++ b/emulators/compat13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2003/06/02 01:20:00 jschauma Exp $ +# $NetBSD: Makefile,v 1.14 2003/06/11 20:50:53 abs Exp $ # DISTNAME= compat13-${MACHINE_ARCH}${PKGMINOR} @@ -10,9 +10,9 @@ MAINTAINER= tech-pkg@netbsd.org HOMEPAGE= http://www.netbsd.org/Releases/formal-1.3/index.html COMMENT= Shared libraries for NetBSD 1.3 (and earlier) compatibility -ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \ - NetBSD-*-m68k NetBSD-*-mipsel NetBSD-*-ns32k \ - NetBSD-*-sparc +ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm NetBSD-*-arm32 \ + NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-mipsel \ + NetBSD-*-ns32k NetBSD-*-sparc NOT_FOR_PLATFORM= NetBSD-1.3*-* NO_MTREE= # defined diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile index 6d2afe0226d..9f3d0102d23 100644 --- a/emulators/stella/Makefile +++ b/emulators/stella/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2003/06/02 01:19:55 jschauma Exp $ +# $NetBSD: Makefile,v 1.9 2003/06/11 20:50:53 abs Exp $ DISTNAME= stella-1.1-src PKGNAME= stella-1.1 @@ -15,10 +15,8 @@ USE_X11= yes MAKEFILE= makefile ALL_TARGET= unix-x -.if (${MACHINE_ARCH} == arm32 || ${MACHINE_ARCH} == arm) -.if (${CXXFLAGS:M-O2} == "-O2") -CXXFLAGS:= ${CXXFLAGS:S/-O2/-O0/} -.endif +.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" +. include "../../mk/gcc.buildlink2.mk" .endif MAKE_ENV= CXXFLAGS="${CXXFLAGS} -fno-rtti" |