mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
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:
parent
baadb27d98
commit
82e9039964
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue