Add some logic so that pppctl isn't built if the correct threading library

is not present.

Noticed by:	ru
This commit is contained in:
Daniel Eischen 2004-01-31 17:12:05 +00:00
parent baadb27d98
commit 82e9039964

View file

@ -215,7 +215,11 @@ _ipsend= ipsend
_iptest= iptest
.endif
.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != "powerpc"
.if ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "sparc64"
.if !defined(NOLIBC_R)
_pppctl= pppctl
.endif
.elif !defined(NOLIBPTHREAD) && ${MACHINE_ARCH} != "powerpc"
_pppctl= pppctl
.endif