539a27e105
For OpenSSL 1.1.1 compatibility. In Makefile.inc1 add (to the existing similar cases) a hack to handle dependencies across the migration. Reviewed by: jhb Approved by: re (gjb) Sponsored by: The FreeBSD Foundation. Differential Revision: https://reviews.freebsd.org/D17481
35 lines
834 B
Makefile
35 lines
834 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/contrib/libevent
|
|
|
|
LIB= ntpevent
|
|
INTERNALLIB=
|
|
|
|
SRCS= buffer.c bufferevent.c bufferevent_filter.c bufferevent_openssl.c \
|
|
bufferevent_pair.c epoll.c evdns.c event.c event_tagging.c \
|
|
evmap.c evport.c evrpc.c evthread.c evthread_pthread.c evutil.c \
|
|
evutil_rand.c evutil_time.c http.c kqueue.c listener.c log.c poll.c \
|
|
select.c signal.c strlcpy.c
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
NTP_ATOMIC=x86_32
|
|
.elif ${MACHINE_ARCH} == "amd64"
|
|
NTP_ATOMIC=x86_64
|
|
.elif ${MACHINE_ARCH} == "ia64"
|
|
NTP_ATOMIC=ia64
|
|
.elif ${MACHINE_ARCH} == "powerpc64"
|
|
NTP_ATOMIC=powerpc
|
|
.elif ${MACHINE_ARCH} == "sparc64"
|
|
NTP_ATOMIC=sparc64
|
|
.else
|
|
NTP_ATOMIC=noatomic
|
|
.endif
|
|
|
|
CFLAGS+= -I${SRCTOP}/contrib/ntp/include \
|
|
-I${SRCTOP}/contrib/libevent/include \
|
|
-I${.CURDIR}/
|
|
|
|
CFLAGS+= -DHAVE_BSD_NICE -DHAVE_STDINT_H
|
|
|
|
.include <bsd.lib.mk>
|