mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 12:11:48 -04:00
Follow up upstream rename from blacklist to blocklist. - Old names and rc scripts are still valid, but emitting an ugly warning - Old firewall rules and anchor names should work, but emitting an ugly warning - Old MK_BLACKLIST* knobs are wired to the new ones Although care has been taken not to break current configurations, this is a large patch containing mostly duplicated code. If issues arise, it will be swiftly reverted. Reviewed by: ivy (pkgbase) Approved by: emaste (mentor) MFC after: 2 days Relnotes: yes (cherry picked from commit 7238317403b95a8e35cf0bc7cd66fbd78ecbe521)
16 lines
267 B
Makefile
16 lines
267 B
Makefile
.include <src.opts.mk>
|
|
|
|
PROG= fingerd
|
|
LIBADD= util
|
|
MAN= fingerd.8
|
|
|
|
WARNS?= 2
|
|
WFORMAT=0
|
|
|
|
.if ${MK_BLOCKLIST_SUPPORT} != "no"
|
|
CFLAGS+= -DUSE_BLOCKLIST -I${SRCTOP}/contrib/blocklist/include
|
|
LIBADD+= blocklist
|
|
LDFLAGS+=-L${LIBBLOCKLISTDIR}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|