aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorMike Makonnen <mtm@FreeBSD.org>2003-07-20 01:34:40 +0000
committerMike Makonnen <mtm@FreeBSD.org>2003-07-20 01:34:40 +0000
commite9043a12cc6cd708a9695d845410b6cf9748df74 (patch)
tree133aad3c3fb0ddb378d17f3f2d26712f92513e36 /lib/Makefile
parente1a90ae12fe0b2b1ff8c12898124e370a5aaeb8b (diff)
downloadsrc-e9043a12cc6cd708a9695d845410b6cf9748df74.tar.gz
src-e9043a12cc6cd708a9695d845410b6cf9748df74.zip
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
Notes
Notes: svn path=/head/; revision=117797
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 1f6ca1bacf67..b57bec001418 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