9535e41048
* 19cf3ae Fix: call_rcu list corruption on teardown * Ensure that read-side functions meet 10-line LGPL criterion * tls-compat.h: document sigaltstack(2) limitation * urcu: add notice to URCU_TLS() for it is not strictly async-signal-safe * Document sigaltstack(2) limitation * Documentation: update LICENSE file Userspace RCU 0.7.4 * rculfhash API documentation: document destroy RCU read-lock constraint * Fix: rculfhash should be offline while waiting for resize to complete * Add missing entry to gitignore * urcu: move busy-wait code and name it ___cds_wfq_node_sync_next() * urcu: fix compat_futex_noasync() * urcu: add hint to DEFINE_URCU_TLS() for compound types * Fix: CAA_BUILD_BUG_ON should refer to CAA_BUILD_BUG_ON_ZERO * Add MIPS support * Compatibility: remove bash-ismsm from test scripts * Fix inappropriate lib behavior: don't call exit() * Fix: re-enable compatibility with autoconf < 2.64 * Fix c99 compatibility: use __asm__ and __volatile__ in public headers * Fix c99 compatibility: use __typeof__ instead of typeof in public headers * warning fix: tests urcutorture for NetBSD 5
29 lines
746 B
Makefile
29 lines
746 B
Makefile
# $NetBSD: Makefile,v 1.3 2012/11/13 23:21:33 pettai Exp $
|
|
#
|
|
|
|
DISTNAME= userspace-rcu-0.7.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://lttng.org/files/urcu/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pettai@NetBSD.org
|
|
HOMEPAGE= http://lttng.org/urcu
|
|
COMMENT= Userspace RCU (Read Copy Update)
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
# liburcu requires TLS support, thus,
|
|
# only NetBSD-6 or later is supported
|
|
NOT_FOR_PLATFORM= NetBSD-[0-5]*-*
|
|
|
|
PKGCONFIG_OVERRIDE+= liburcu-bp.pc.in
|
|
PKGCONFIG_OVERRIDE+= liburcu-cds.pc.in
|
|
PKGCONFIG_OVERRIDE+= liburcu-mb.pc.in
|
|
PKGCONFIG_OVERRIDE+= liburcu-qsbr.pc.in
|
|
PKGCONFIG_OVERRIDE+= liburcu-signal.pc.in
|
|
PKGCONFIG_OVERRIDE+= liburcu.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|