summaryrefslogtreecommitdiffstats
path: root/lib/libc/Makefile
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-03-09 06:16:38 +0000
committerjb <jb@FreeBSD.org>1998-03-09 06:16:38 +0000
commit19acd1aa26ec9b9ad899f1960284e6cc097e222b (patch)
tree754f6c583e63b611e746fd3864ad39187683675b /lib/libc/Makefile
parent2d7cccd9cf1345ff24a2ce466174e387bb9860e0 (diff)
downloadFreeBSD-src-19acd1aa26ec9b9ad899f1960284e6cc097e222b.zip
FreeBSD-src-19acd1aa26ec9b9ad899f1960284e6cc097e222b.tar.gz
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.
Diffstat (limited to 'lib/libc/Makefile')
-rw-r--r--lib/libc/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile
index 2d2636f..49027aa 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,13 +9,18 @@
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.
#
.include "${.CURDIR}/Makefile.inc"
OpenPOWER on IntegriCloud