From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 17 May 2021 23:02:52 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1likO4-0006M2-BZ for lore@lore.pengutronix.de; Mon, 17 May 2021 23:02:52 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1likO4-0001oY-4H; Mon, 17 May 2021 23:02:52 +0200 Received: from ptx.hi.pengutronix.de ([2001:67c:670:100:1d::c0]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1likNx-0001oQ-49 for ptxdist@pengutronix.de; Mon, 17 May 2021 23:02:45 +0200 Received: from rhi by ptx.hi.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1likNw-0007u0-Ph for ptxdist@pengutronix.de; Mon, 17 May 2021 23:02:44 +0200 Date: Mon, 17 May 2021 23:02:44 +0200 From: Roland Hieber To: ptxdist@pengutronix.de Message-ID: <20210517210244.ibowowrvjed4bj3o@pengutronix.de> References: <20210517205908.5785-1-rhi@pengutronix.de> <20210517205908.5785-2-rhi@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210517205908.5785-2-rhi@pengutronix.de> User-Agent: NeoMutt/20180716 Subject: Re: [ptxdist] [PATCH 2/2] dhcp: version bump 4.1.2 -> 4.4.2 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false On Mon, May 17, 2021 at 10:59:08PM +0200, Roland Hieber wrote: > diff --git a/rules/dhcp.make b/rules/dhcp.make > index 5452f4676adc..5cdc7be214ca 100644 > --- a/rules/dhcp.make > +++ b/rules/dhcp.make > @@ -3,6 +3,7 @@ > # Copyright (C) 2003 by Benedikt Spranger > # 2009 by Wolfram Sang, Pengutronix > # 2010 by Marc Kleine-Budde > +# 2021 by Roland Hieber, Pengutronix > # > # For further information about the PTXdist project and license conditions > # see the README file. > @@ -16,17 +17,21 @@ PACKAGES-$(PTXCONF_DHCP) += dhcp > # > # Paths and names > # > -DHCP_VERSION := 4.1.2 > -DHCP_MD5 := 23bc6016297aa831dc9f321403e30ddc > +DHCP_VERSION := 4.4.2 > +DHCP_MD5 := 2afdaf8498dc1edaf3012efdd589b3e1 > DHCP := dhcp-$(DHCP_VERSION) > DHCP_SUFFIX := tar.gz > DHCP_URL := \ > + https://ftp.isc.org/isc/dhcp/$(DHCP_VERSION)/$(DHCP).$(DHCP_SUFFIX) \ > https://ftp.isc.org/isc/dhcp/$(DHCP).$(DHCP_SUFFIX) \ > https://ftp.isc.org/isc/dhcp/dhcp-4.1-history/$(DHCP).$(DHCP_SUFFIX) > DHCP_SOURCE := $(SRCDIR)/$(DHCP).$(DHCP_SUFFIX) > DHCP_DIR := $(BUILDDIR)/$(DHCP) > -DHCP_LICENSE := ISC > - > +DHCP_LICENSE := MPL-2.0 AND BSD-3-Clause AND ISC > +DHCP_LICENSE_FILES := \ > + file://LICENSE;md5=b9c6e660b3d9260de9a342d2fb77540a \ > + file://server/ldap.c;startline=6;endline=35;md5=8e5f9d2cd6b641d599871fd2430708c4 \ > + file://server/ldap_casa.c;startline=35;endline=48;md5=d2ea64a00aeacb447c6634d984486afe Hmm, the last two files are not compiled in currently because LDAP is disabled, but they carry the BSD and ISC license notices, so I opted to include them in the LICENSE_FILES so they don't get lost later in case someone wants to enable LDAP. - Roland > > # ---------------------------------------------------------------------------- > # Prepare > @@ -35,13 +40,36 @@ DHCP_LICENSE := ISC > # > # autoconf > # > -DHCP_AUTOCONF := \ > +DHCP_CONF_TOOL := autoconf > +DHCP_CONF_OPT := \ > $(CROSS_AUTOCONF_USR) \ > - --$(call ptx/endis, PTXCONF_GLOBAL_IPV6)-dhcpv6 > - > -# overwrite CFLAGS to remove -Werror > -DHCP_MAKE_OPT := \ > - CFLAGS="-g -O2 -Wall -fno-strict-aliasing" > + --disable-debug \ > + --enable-failover \ > + --disable-execute \ > + --enable-tracing \ > + --enable-delayed-ack \ > + --$(call ptx/endis, PTXCONF_GLOBAL_IPV6)-dhcpv6 \ > + --disable-dhcpv4o6 \ > + --disable-relay-port \ > + --enable-paranoia \ > + --enable-early-chroot \ > + --disable-ipv4-pktinfo \ > + --enable-use-sockets \ > + --disable-log-pid \ > + --disable-binary-leases \ > + --disable-kqueue \ > + --disable-epoll \ > + --disable-devpoll \ > + --disable-libtool \ > + --disable-bind-install \ > + --without-atf \ > + --with-randomdev=/dev/random \ > + --with-libbind=$(SYSROOT)/usr \ > + --without-bind-extra-config \ > + --without-ldap \ > + --without-ldapcrypto \ > + --without-ldap-gssapi \ > + --without-ldapcasa > > # ---------------------------------------------------------------------------- > # Target-Install > -- > 2.29.2 > > -- Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de | Steuerwalder Str. 21 | https://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de