aboutsummaryrefslogtreecommitdiff
path: root/lib/libkse/Makefile
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2007-05-13 14:12:40 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2007-05-13 14:12:40 +0000
commit00fb440c1a145b56b6c75fd405d80071aef2aab1 (patch)
treecedba41bbd60d21fa5e0f68f5e71c480784553bb /lib/libkse/Makefile
parent9af491e24b3eb2879550950c538cf42f3e80451d (diff)
downloadsrc-00fb440c1a145b56b6c75fd405d80071aef2aab1.tar.gz
src-00fb440c1a145b56b6c75fd405d80071aef2aab1.zip
Enable symbol versioning by default. Use WITHOUT_SYMVER to disable it.
Warning, after symbol versioning is enabled, going back is not easy (use WITHOUT_SYMVER at your own risk). Change the default thread library to libthr. There most likely still needs to be a version bump for at least the thread libraries. If necessary, this will happen later.
Notes
Notes: svn path=/head/; revision=169524
Diffstat (limited to 'lib/libkse/Makefile')
-rw-r--r--lib/libkse/Makefile27
1 files changed, 16 insertions, 11 deletions
diff --git a/lib/libkse/Makefile b/lib/libkse/Makefile
index e043e6dd2c78..dee03dba1ba8 100644
--- a/lib/libkse/Makefile
+++ b/lib/libkse/Makefile
@@ -7,12 +7,14 @@
# 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.
-.if ${MACHINE_ARCH} == "sparc64"
-LIB=kse
-.else
-LIB=pthread
+
+.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread")
SHLIBDIR?= /lib
.endif
+
+.include <bsd.own.mk>
+
+LIB=kse
SHLIB_MAJOR= 2
CFLAGS+=-DPTHREAD_KERNEL
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
@@ -37,13 +39,6 @@ CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
VERSION_MAP=${.CURDIR}/pthread.map
-.if defined(SYMVER_ENABLED)
-# Remove this if library version is bumped and LIBPTHREAD_1_0
-# compatability hacks are removed (see thread/thr_private.h).
-LDFLAGS+=-Wl,-zmuldefs
-CFLAGS+=-DSYMBOL_VERSIONING
-.endif
-
PRECIOUSLIB=
.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
@@ -51,4 +46,14 @@ PRECIOUSLIB=
.include "${.CURDIR}/sys/Makefile.inc"
.include "${.CURDIR}/thread/Makefile.inc"
+.if ${DEFAULT_THREAD_LIB} == "libpthread"
+SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
+.if !defined(NO_PIC)
+SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
+.endif
+.if ${MK_PROFILE} != "no"
+SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
+.endif
+.endif
+
.include <bsd.lib.mk>