mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-17 06:23:00 +02:00
For details see: https://www.knot-dns.cz/2021-05-12-version-306.html "Features: mod-probe: new module for simple traffic logging (Python API not yet included) Improvements: keymgr: new mode for listing zones with at least one key stored keymgr: the pregenerate command accepts optional timestamp-from parameter kzonecheck: accept '-' as substitution for standard input #727 knotd: print an error when unable to change owner of a logging file knotd: new warning log if no interface is configured knotd: new signing policy check for NSEC3 iterations higher than 20 knotd: don't allow backup to/restore from the DB storage directory Various code (mostly zone backup/restore), tests, and documentation improvements Bugfixes: knotd: secondary fails to load zone file if HTTPS or SVCB record is present #725 knotd: (KSK roll-over) new KSK is not signing DNSKEY long enough before DS submission knotd: (KSK roll-over) old KSK uselessly published after roll-over finished knotd: malformed address in TCP-related logs when listening on a UNIX socket knotd: server responds FORMERR instead of BADTIME if TSIG signed time is zero #730 modules: incorrect local and remote addresses in the XDP mode modules: failed to read configuration from a section without identifiers mod-synthrecord: queries on synthesized empty-non-terminals not answered with NODATA keymgr: confusing error if del-all-old command fails" For 3.0.5 (skipped): https://www.knot-dns.cz/2021-03-25-version-305.html Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
91 lines
3.3 KiB
Plaintext
91 lines
3.3 KiB
Plaintext
###############################################################################
|
|
# #
|
|
# IPFire.org - A linux based firewall #
|
|
# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
# This program is distributed in the hope that it will be useful, #
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
# GNU General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
# #
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# Definitions
|
|
###############################################################################
|
|
|
|
include Config
|
|
|
|
VER = 3.0.6
|
|
|
|
THISAPP = knot-$(VER)
|
|
DL_FILE = $(THISAPP).tar.xz
|
|
DL_FROM = $(URL_IPFIRE)
|
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
|
|
|
###############################################################################
|
|
# Top-level Rules
|
|
###############################################################################
|
|
|
|
objects = $(DL_FILE)
|
|
|
|
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
|
|
|
$(DL_FILE)_MD5 = 0d8aaa8e5214623c12123c67b5f2c460
|
|
|
|
install : $(TARGET)
|
|
|
|
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
|
|
|
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
|
|
|
md5 : $(subst %,%_MD5,$(objects))
|
|
|
|
dist:
|
|
@$(PAK)
|
|
|
|
###############################################################################
|
|
# Downloading, checking, md5sum
|
|
###############################################################################
|
|
|
|
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
|
@$(CHECK)
|
|
|
|
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
|
@$(LOAD)
|
|
|
|
$(subst %,%_MD5,$(objects)) :
|
|
@$(MD5)
|
|
|
|
###############################################################################
|
|
# Installation Details
|
|
###############################################################################
|
|
|
|
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|
@$(PREBUILD)
|
|
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
|
|
cd $(DIR_APP) && ./configure \
|
|
--prefix=/usr \
|
|
--enable-static=no \
|
|
--disable-fastparser \
|
|
--disable-daemon \
|
|
--disable-modules \
|
|
--enable-maxminddb=no \
|
|
--disable-documentation
|
|
|
|
cd $(DIR_APP)/src && make $(MAKETUNING) kdig
|
|
cd $(DIR_APP)/src/.libs && cp -av kdig /usr/bin
|
|
cd $(DIR_APP)/src/.libs && cp -av lib* /usr/lib
|
|
|
|
@rm -rf $(DIR_APP)
|
|
@$(POSTBUILD)
|