5e6e15afa4
== [7.6.4] 2018-03-27 == * Add RISC-V support * Convert atomic_ops_malloc.c and tests to valid C++ code * Eliminate 'function is never used' cppcheck warning for load_before_cas * Eliminate 'using argument that points at uninitialized var' cppcheck error * Fix 'AO_pt_lock undefined' error if cross-compiling manually (MinGW) * Fix public headers inclusion from clients C++ code * Remove gcc/nios2.h file (include gcc/generic.h directly for nios2) * Support MIPS rel6
22 lines
602 B
Makefile
22 lines
602 B
Makefile
# $NetBSD: Makefile,v 1.16 2018/04/17 05:30:30 wiz Exp $
|
|
|
|
DISTNAME= libatomic_ops-7.6.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=ivmai/}
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/ivmai/libatomic_ops
|
|
COMMENT= Multi-platform library of atomic operations by Hans Boehm
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LANGUAGES+= c
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE= pkgconfig/atomic_ops.pc.in
|
|
TEST_TARGET= check
|
|
|
|
INSTALL_MAKE_FLAGS= pkgdatadir=${PREFIX}/share/doc/libatomic_ops
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|