summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2003-07-20 01:34:40 +0000
committermtm <mtm@FreeBSD.org>2003-07-20 01:34:40 +0000
commit9cfef4758da1e61017f6dd00d4929ed09a2df666 (patch)
tree133aad3c3fb0ddb378d17f3f2d26712f92513e36
parent4d5d6addf8e6c8dad46eafc29bee54b2549dcbbe (diff)
downloadFreeBSD-src-9cfef4758da1e61017f6dd00d4929ed09a2df666.zip
FreeBSD-src-9cfef4758da1e61017f6dd00d4929ed09a2df666.tar.gz
Now that we have the stubs for alpha and we can build it
on that platform, invert the test for the platforms on which libthr is built. Amd64 and powerpc are the only platforms excluded. Compile tested on: amd64, alpha
-rw-r--r--lib/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 1f6ca1b..b57bec0 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -66,18 +66,12 @@ _libvgl= libvgl
.if !defined(NOLIBPTHREAD)
_libpthread= libpthread
.endif
-.if !defined(NOLIBTHR)
-_libthr= libthr
-.endif
.endif
.if ${MACHINE_ARCH} == "ia64"
.if !defined(NOLIBPTHREAD)
_libpthread= libpthread
.endif
-.if !defined(NOLIBTHR)
-_libthr= libthr
-.endif
.endif
.if ${MACHINE_ARCH} == "alpha"
@@ -85,6 +79,12 @@ _libio= libio
_compat= compat
.endif
+.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc"
+.if !defined(NOLIBTHR)
+_libthr= libthr
+.endif
+.endif
+
.if ${MACHINE_ARCH} != "powerpc"
_libdisk= libdisk
.endif
OpenPOWER on IntegriCloud