freebsd-dev/lib/libthread_db/Makefile
Daniel Eischen 00fb440c1a 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.
2007-05-13 14:12:40 +00:00

20 lines
337 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
LIB= thread_db
SHLIB_MAJOR= 2
SRCS= thread_db.c
SRCS+= libpthread_db.c libpthread_md.c
SRCS+= libthr_db.c
INCS= thread_db.h
WARNS?= 1
CFLAGS+=-I. -I${.CURDIR}
SYM_MAPS+=${.CURDIR}/Symbol.map
SYMBOL_MAPS=${SYM_MAPS}
VERSION_DEF=${.CURDIR}/../libc/Versions.def
.include <bsd.lib.mk>