Add i386 to the list of architectures that libc_r is broken on. This

effectively removes pppctl from the build for now.  It only compiles on
alpha now (now ironic).
This commit is contained in:
Peter Wemm 2002-09-17 07:32:36 +00:00
parent 1822cdcafe
commit 8da4b35652
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103462
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ _csu=csu/${MACHINE_ARCH}
_csu=csu
.endif
.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64 && ${MACHINE_ARCH} != sparc64
.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != ia64 && ${MACHINE_ARCH} != sparc64 && ${MACHINE_ARCH} != i386
_libc_r= libc_r
.endif

View File

@ -131,7 +131,7 @@ SUBDIR+=ipftest \
iptest
.endif
.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64"
.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "i386"
SUBDIR+=pppctl
.endif