4028504b48
This avoids e.g. utilities or ssh depending on the full blocklist package just because they link against libblocklist. This change moves files between packages so, until we have a proper policy on how to handle this in release/stable branches, it should not be MFC'd. MFC after: never Reviewed by: bapt Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53605
33 lines
818 B
Makefile
33 lines
818 B
Makefile
BLOCKLIST_DIR=${SRCTOP}/contrib/blocklist
|
|
|
|
.PATH: ${BLOCKLIST_DIR}/lib ${BLOCKLIST_DIR}/include ${BLOCKLIST_DIR}/port
|
|
|
|
PACKAGE= blocklist
|
|
LIB_PACKAGE=
|
|
|
|
LIB= blacklist
|
|
SHLIB_MAJOR= 0
|
|
|
|
LIBADD+= pthread
|
|
|
|
CFLAGS.clang+=-Wno-thread-safety-analysis
|
|
|
|
CFLAGS+=-I${BLOCKLIST_DIR}/include -I${BLOCKLIST_DIR}/port \
|
|
-D_REENTRANT -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H \
|
|
-DHAVE_CLOCK_GETTIME -DHAVE_FGETLN -DHAVE_GETPROGNAME \
|
|
-DHAVE_STRLCAT -DHAVE_STRLCPY -DHAVE_STRUCT_SOCKADDR_SA_LEN \
|
|
-DHAVE_SYS_CDEFS_H
|
|
|
|
SRCS= old_bl.c blacklist.c vsyslog_r.c
|
|
INCS= blacklist.h
|
|
MAN= libblacklist.3
|
|
|
|
MLINKS= libblacklist.3 blacklist_open.3 \
|
|
libblacklist.3 blacklist_close.3 \
|
|
libblacklist.3 blacklist.3 \
|
|
libblacklist.3 blacklist_r.3 \
|
|
libblacklist.3 blacklist_sa.3 \
|
|
libblacklist.3 blacklist_sa_r.3
|
|
|
|
.include <bsd.lib.mk>
|