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
This commit is contained in:
Mike Makonnen 2003-07-20 01:34:40 +00:00
parent e1a90ae12f
commit e9043a12cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117797

View File

@ -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