1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

For now, build and install this as libkse instead of libpthread.

This will avoid any accidental use of an experimental library.

Suggested by:	rwatson
Approved by:	re (jhb)
This commit is contained in:
Daniel Eischen 2002-12-08 22:43:31 +00:00
parent 0068037936
commit 84001cde8f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107687
4 changed files with 6 additions and 6 deletions

View File

@ -7,8 +7,8 @@
# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
# (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the
# system call stubs.
LIB=pthread
SHLIB_MAJOR= 5
LIB=kse
SHLIB_MAJOR= 1
CFLAGS+=-DPTHREAD_KERNEL -D_THREAD_SAFE
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
-I${.CURDIR}/../../include

View File

@ -26,7 +26,7 @@ CFLAGS := -Wall -pipe -g3
LDFLAGS_A := -static
LDFLAGS_P := -pg
LDFLAGS_S :=
LIBS := -lpthread
LIBS := -lkse
# Flags passed to verify. "-v" or "-u" may be useful.
VFLAGS :=

View File

@ -7,8 +7,8 @@
# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
# (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the
# system call stubs.
LIB=pthread
SHLIB_MAJOR= 5
LIB=kse
SHLIB_MAJOR= 1
CFLAGS+=-DPTHREAD_KERNEL -D_THREAD_SAFE
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
-I${.CURDIR}/../../include

View File

@ -26,7 +26,7 @@ CFLAGS := -Wall -pipe -g3
LDFLAGS_A := -static
LDFLAGS_P := -pg
LDFLAGS_S :=
LIBS := -lpthread
LIBS := -lkse
# Flags passed to verify. "-v" or "-u" may be useful.
VFLAGS :=