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