From cb6e7ccbea23d53c17273cb2e37f3e81f97d15cc Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sat, 3 May 1997 02:51:59 +0000 Subject: [PATCH] Change default build to include libc_r, but allow disadvantaged souls to turn off the build. --- Makefile | 3 ++- lib/Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6afb108a640b..9e837e3e0243 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.121 1997/04/09 18:59:36 jdp Exp $ +# $Id: Makefile,v 1.122 1997/04/30 16:02:03 bde Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -19,6 +19,7 @@ # -DNOGAMES do not go into games subdir # -DNOSHARE do not go into share subdir # -DNOINFO do not make or install info files +# -DNOLIBC_R do not build libc_r. # # The intended user-driven targets are: diff --git a/lib/Makefile b/lib/Makefile index 8fae45709fc2..cdfb30d0d266 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -14,7 +14,7 @@ SUBDIR+=libc libcompat libcom_err libcurses libdisk libedit \ libncurses libopie libpcap libresolv librpcsvc \ libscsi libskey libss libtermcap libutil libxpg4 liby libz -.if defined(WANT_LIBC_R) +.if !defined(NOLIBC_R) SUBDIR+= libc_r .endif