1# $FreeBSD: stable/11/lib/libevent/Makefile 313538 2017-02-10 07:32:40Z ngie $
2
3PACKAGE=lib${LIB}
4.PATH:	${SRCTOP}/contrib/pf/libevent
5
6.include <src.opts.mk>
7
8LIB=		event
9SHLIB_MAJOR=	1
10PRIVATELIB=
11
12SRCS=	buffer.c evbuffer.c event.c kqueue.c log.c poll.c select.c signal.c
13HDRS=	event.h
14
15CFLAGS+= -I${.CURDIR} \
16	-DHAVE_CLOCK_GETTIME \
17	-DHAVE_FCNTL_H \
18	-DHAVE_POLL \
19	-DHAVE_SELECT \
20	-DHAVE_SETFD \
21	-DHAVE_STDARG_H \
22	-DHAVE_SYS_IOCTL_H \
23	-DHAVE_SYS_TIME_H \
24	-DHAVE_UNISTD_H \
25	-DHAVE_VASPRINTF \
26	-DHAVE_WORKING_KQUEUE \
27	-DVERSION='"1.3b"'
28
29WARNS?=	2
30
31.include <bsd.lib.mk>
32