8da8c1a402
bufferevent_openssl_filter_new(). vagrant fixes, some build fixes, increased timeout for some tests (to reduce number of failures due to timing issues), date in RFC1123 format and running tests in parallel.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.51 2017/02/15 17:34:37 adam Exp $
|
|
|
|
.include "../../devel/libevent/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/-stable//}
|
|
COMMENT= Asynchronous event notification library
|
|
|
|
CONFLICTS+= libev<3.9nb1
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE+= libevent_core.pc.in
|
|
PKGCONFIG_OVERRIDE+= libevent_extra.pc.in
|
|
PKGCONFIG_OVERRIDE+= libevent_openssl.pc.in
|
|
PKGCONFIG_OVERRIDE+= libevent_pthreads.pc.in
|
|
PKGCONFIG_OVERRIDE+= libevent.pc.in
|
|
TEST_TARGET= verify
|
|
|
|
LIBS.SunOS+= -lnsl -lresolv
|
|
CPPFLAGS.SunOS+= -D__EXTENSIONS__
|
|
|
|
# XXX helps build, but needs more testing
|
|
#CFLAGS.Interix+= -Dsockaddr_storage=sockaddr_in -DNI_MAXSERV=32
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Explicitly disable epoll on illumos, provided for Linux compat only.
|
|
CONFIGURE_ENV.SunOS+= ac_cv_func_epoll_ctl=no
|
|
|
|
.if !empty(MACHINE_PLATFORM:MHPUX-11.11-*)
|
|
CONFIGURE_ENV+= ac_cv_func_strtoll=yes
|
|
CPPFLAGS+= -Dstrtoll=__strtoll
|
|
.endif
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|