fddba32c93
2.10.1: (stable) * signal_impl::clear(): Don't clear the slot list during signal emission, to prevent a segfault. And add a test for this. (Kjell Ahlstedt) Bug #784550 (Andrejs Hanins) * slot_base::set_parent(): Create a dummy slot_rep if necessary (Kjell Ahlstedt) Bug #167714 (Gerald Britton) * Avoid compiler warnings from function pointer conversions (Kjell Ahlstedt) Issue #1 (sharkcz) (Kjell Ahlstedt) Issue #8 (db0451) Build: * Make --disable-benchmark work. (Christophe Lermytte) Bug #774732 * Replace the Visual Studio project files with MSVC NMake project files Add MSVC_NMake/README.txt for Visual Studio builds (Chun-wei Fan) Pull request #11 Documentation: * signal_base: Warn against deletion during emission (Kjell Ahlstedt) Bug #167714 (Gerald Britton) * Update links in README, configure.ac, libsigcplusplus.doap (Kjell Ahlstedt)
35 lines
937 B
Makefile
35 lines
937 B
Makefile
# $NetBSD: Makefile,v 1.54 2018/12/01 17:10:54 wiz Exp $
|
|
|
|
DISTNAME= libsigc++-2.10.1
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libsigc++/${PKGVERSION_NOREV:R}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://libsigc.sourceforge.net/
|
|
COMMENT= Type-safe callback system for C++ programs
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++11
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gm4 gmake perl:build
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE= sigc++.pc.in
|
|
|
|
CONFLICTS+= libsigc++2-[0-9]*
|
|
GCC_REQD+= 4.8
|
|
|
|
# use something that can extract long filenames in GNU format on NetBSD 1.6.x
|
|
EXTRACT_USING= bsdtar
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.endif
|
|
|
|
BUILDLINK_API_DEPENDS.mm-common+= mm-common>=0.9.10
|
|
.include "../../devel/mm-common/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|