From 8da4b35652b8f60c590db828e1f0fb39a44711c1 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 17 Sep 2002 07:32:36 +0000 Subject: [PATCH] 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). --- lib/Makefile | 2 +- usr.sbin/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 922b66cc99a..ab8dc550ca5 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -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 diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 7e26e25fbc8..b4e629a5d39 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -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