summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-04-08 20:36:39 +0000
committerobrien <obrien@FreeBSD.org>2002-04-08 20:36:39 +0000
commitacb8992dc365ee9f45e997e701eeb6dc8e35d0e8 (patch)
treec1db2795a03a2c89bc1dad2771a9737ba8f87c1b
parent3d5625e8b9085f2c22b7acb92362acaad573abda (diff)
downloadFreeBSD-src-acb8992dc365ee9f45e997e701eeb6dc8e35d0e8.zip
FreeBSD-src-acb8992dc365ee9f45e997e701eeb6dc8e35d0e8.tar.gz
Some things don't compile on ia64 and sparc64 yet.
-rw-r--r--gnu/lib/Makefile9
-rw-r--r--usr.bin/Makefile7
2 files changed, 13 insertions, 3 deletions
diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile
index cfd5060..b0221f9 100644
--- a/gnu/lib/Makefile
+++ b/gnu/lib/Makefile
@@ -1,6 +1,13 @@
# $FreeBSD$
-SUBDIR= csu libdialog libgcc libregex libreadline
+.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64"
+SUBDIR+= csu libgcc
+NO_CXX= yes
+NO_OBJC=yes
+NO_FORTRAN=yes
+.endif
+
+SUBDIR+= libdialog libregex libreadline
.if ${OBJFORMAT} == aout
.if !defined(NOLIBC_R)
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
index 021e65b..04baf18 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -53,7 +53,6 @@ SUBDIR= apply \
fsync \
ftp \
gencat \
- getconf \
getopt \
gprof \
head \
@@ -232,9 +231,13 @@ SUBDIR+=ar \
SUBDIR+=uac
.endif
-.if ${MACHINE_ARCH} != "ia64"
+# Things which don't compile on new platforms yet:
+.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "ia64"
SUBDIR+=xlint
.endif
+.if ${MACHINE_ARCH} != "sparc64"
+SUBDIR+=getconf
+.endif
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
SUBDIR+=chkey newkey
OpenPOWER on IntegriCloud