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:
mtm 2003-07-20 01:34:40 +00:00
parent 4d5d6addf8
commit 9cfef4758d

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