From fdee84c99698e999b1cbdbf64283b7b6d28948cd Mon Sep 17 00:00:00 2001 From: John Birrell Date: Mon, 9 Mar 1998 06:16:38 +0000 Subject: [PATCH] Add an include path to private linc/libc_r/libpthread header files. Define the HIDDEN_SYSCALLS macro as empty because libc doesn't have renamed syscalls. This avoids an undefined macro error when libc/sys/Makefile.inc goes to look though it. HIDDEN_SYSCALLS is used by the equivalent makefile to this one in lib/libc_r to list those syscalls that it needs to rename so that libc_r can provide replacement functions. --- lib/libc/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 2d2636f05eb..49027aad649 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.2 (Berkeley) 2/3/94 -# $Id: Makefile,v 1.19 1997/05/23 08:23:53 asami Exp $ +# $Id: Makefile,v 1.20 1998/02/12 01:44:53 nate Exp $ # # All library objects contain rcsid strings by default; they may be # excluded as a space-saving measure. To produce a library that does @@ -9,12 +9,17 @@ LIB=c SHLIB_MAJOR= 3 SHLIB_MINOR= 1 -CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS +CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include AINC= -I${.CURDIR}/${MACHINE} CLEANFILES+=tags INSTALL_PIC_ARCHIVE= yes PRECIOUSLIB= yes +# +# Don't bother hiding any syscalls (like libc_r does). +# +HIDDEN_SYSCALLS= + # # Include make rules that are shared with libc_r. #