mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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.
This commit is contained in:
parent
49ee5e93ce
commit
fdee84c996
1 changed files with 7 additions and 2 deletions
|
|
@ -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.
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue