c5ea81f7a6
r316063 installed pf's embedded libevent as a private lib, with headers in /usr/include/private/event. Unfortunately we also have a copy of libevent v2 included in ntp, which needed to be updated for compatibility with OpenSSL 1.1. As unadorned 'libevent' generally refers to libevent v2, be explicit that this one is libevent v1. Reviewed by: vangyzen (earlier) Differential Revision: https://reviews.freebsd.org/D17275
21 lines
383 B
Makefile
21 lines
383 B
Makefile
# $OpenBSD: Makefile,v 1.8 2015/09/09 15:33:18 deraadt Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= ypldap
|
|
SRCS= parse.y ypldap.c log.c \
|
|
ldapclient.c entries.c yp.c \
|
|
aldap.c ber.c \
|
|
ypldap_dns.c
|
|
|
|
MAN= ypldap.8 ypldap.conf.5
|
|
|
|
LIBADD= openbsd event1 util rpcsvc
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
CFLAGS+=-I${SRCTOP}/contrib/pf/libevent
|
|
CFLAGS+=-I${SRCTOP}/lib/libopenbsd
|
|
|
|
WARNS= 2
|
|
|
|
.include <bsd.prog.mk>
|