From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/3] collectd: Update due to autoconf change Date: Tue, 09 Feb 2021 21:23:25 +0100 Message-ID: <20210209202325.3103429-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1022541724385528092==" List-Id: --===============1022541724385528092== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - collectd fails to build with autoconf-2.71 Required running of autoupdate on configure.in and addition of --with-fp-layout=3Dnothing to configure options Signed-off-by: Adolf Belka --- lfs/collectd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lfs/collectd b/lfs/collectd index 0f99c4ce7..7c9744531 100644 --- a/lfs/collectd +++ b/lfs/collectd @@ -106,6 +106,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/silence-openv= pn-errors.patch cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd-4.10.9-xfs-co= mpile-fix.patch cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd-4.10-libiptc-= build-fixes.patch + cd $(DIR_APP) && autoupdate -v configure.in cd $(DIR_APP) && autoreconf -vfi cd $(DIR_APP)/libltdl && autoreconf -vfi cd $(DIR_APP) && ./configure --prefix=3D/usr --localstatedir=3D/var \ @@ -116,7 +117,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --enable-{interface,iptables,irq,load,logfile,memory,multimeter} \ --enable-{network,nfs,ntpd,ping,processes,rrdtool,sensors,swap,syslog} \ --enable-{tcpconns,unixsock,users,wireless} \ - --with-librrd=3D/usr/share/rrdtool-1.2.30 + --with-librrd=3D/usr/share/rrdtool-1.2.30 \ + --with-fp-layout=3Dnothing cd $(DIR_APP) && make install #collectd-4 does not support parallel build cp -vf $(DIR_SRC)/config/collectd/collectd.* /etc/ mv /etc/collectd.vpn /var/ipfire/ovpn/collectd.vpn --=20 2.30.0 --===============1022541724385528092==--