- tweaked code in configure script to remove -Werror* to be non-greedy - updated semaphoreset/sharedmemory destructors to remove the semaphoreset/sharedmemory segment last - added url class that uses libcurl (read-only for now) - added support for urls to xmlsax (and thus xmldom and codetree) - added http support to the url class for platforms that lack an appropriate libcurl - charstring 1-argument trim methods trim all whitespace now, not just spaces - added charstring::isNullOrEmpty() - added read-until-terminator methods with maxbytes option - applied George Carrette's listener class patch to not close invalid-epoll filedescriptors
30 lines
847 B
Makefile
30 lines
847 B
Makefile
# $NetBSD: Makefile,v 1.33 2015/11/10 10:04:40 fhajny Exp $
|
|
#
|
|
|
|
DISTNAME= rudiments-0.54
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rudiments/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://rudiments.sourceforge.net/
|
|
COMMENT= C++ class library for client/server/daemon applications
|
|
LICENSE= gnu-lgpl-v2
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= YES
|
|
USE_PKGLOCALEDIR= YES
|
|
PTHREAD_AUTO_VARS= YES
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
_WRAP_EXTRA_ARGS.CXX+= -Wno-error=unused-private-field
|
|
CWRAPPERS_APPEND.cxx+= -Wno-error=unused-private-field
|
|
.endif
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|