From 7d5de3a8a354847ef00b71b034557a6cd1b2f496 Mon Sep 17 00:00:00 2001 From: deischen Date: Thu, 17 May 2007 04:54:35 +0000 Subject: Allow DEFAULT_THREAD_LIB to be set from /etc/src.conf. Submitted by: ru --- lib/libc_r/Makefile | 8 ++++---- lib/libkse/Makefile | 8 ++++---- lib/libpthread/Makefile | 8 ++++---- lib/libthr/Makefile | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) (limited to 'lib') diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index f489f9f..1a5eb3b 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libc_r") -SHLIBDIR?= /lib -.endif - .include +.if ${DEFAULT_THREAD_LIB} == "libc_r" +SHLIBDIR= /lib +.endif + LIB=c_r SHLIB_MAJOR= 6 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libkse/Makefile b/lib/libkse/Makefile index dee03db..a698115 100644 --- a/lib/libkse/Makefile +++ b/lib/libkse/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread") -SHLIBDIR?= /lib -.endif - .include +.if ${DEFAULT_THREAD_LIB} == "libpthread" +SHLIBDIR= /lib +.endif + LIB=kse SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libpthread/Makefile b/lib/libpthread/Makefile index dee03db..a698115 100644 --- a/lib/libpthread/Makefile +++ b/lib/libpthread/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread") -SHLIBDIR?= /lib -.endif - .include +.if ${DEFAULT_THREAD_LIB} == "libpthread" +SHLIBDIR= /lib +.endif + LIB=kse SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libthr/Makefile b/lib/libthr/Makefile index d0a3dc8..ca77af9 100644 --- a/lib/libthr/Makefile +++ b/lib/libthr/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if !defined(DEFAULT_THREAD_LIB) || (${DEFAULT_THREAD_LIB} == "libthr") -SHLIBDIR?= /lib -.endif - .include +.if ${DEFAULT_THREAD_LIB} == "libthr" +SHLIBDIR= /lib +.endif + LIB=thr SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL -- cgit v1.1