36 lines
994 B
Makefile
36 lines
994 B
Makefile
# $NetBSD: Makefile,v 1.55 2020/01/18 21:48:06 jperkin Exp $
|
|
|
|
PKGREVISION= 1
|
|
.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__
|
|
CPPFLAGS.QNX+= -D__EXT_POSIX2
|
|
|
|
.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"
|