Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Feb 2018 15:55:13 -0200
From:      Renato Botelho <garga.bsd@gmail.com>
To:        Antoine Brodin <antoine@freebsd.org>, Kurt Jaeger <pi@freebsd.org>
Cc:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r461952 - in head/net/quagga: . files
Message-ID:  <bb80b304-7be3-7e0b-5bbf-e8198c6c01a5@gmail.com>
In-Reply-To: <4f64f3f5-18f1-815b-03a7-f1d509691bb4@gmail.com>
References:  <201802152217.w1FMHaMU034710@repo.freebsd.org> <CAALwa8nh77movfGnDVrHpnhtA6nDjHkBGJpoasSeCsJyhmt=ng@mail.gmail.com> <4f64f3f5-18f1-815b-03a7-f1d509691bb4@gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On 16/02/18 15:34, Renato Botelho wrote:
> On 16/02/18 04:59, Antoine Brodin wrote:
>> On Thu, Feb 15, 2018 at 11:17 PM, Kurt Jaeger <pi@freebsd.org> wrote:
>>> Author: pi
>>> Date: Thu Feb 15 22:17:36 2018
>>> New Revision: 461952
>>> URL: https://svnweb.freebsd.org/changeset/ports/461952
>>>
>>> Log:
>>>   net/quagga: update 1.2.2 -> 1.2.3
>>
>> This fails to configure:
>> checking for net-snmp-config... no
>> configure: error: --enable-snmp given but unable to find net-snmp-config
> 
> Same here. Even with SNMP option disabled and passing --disable-snmp to
> configure args it fails.
> 

I narrowed down the problem, on configure script the follow test is made:

if test "${enable_snmp}" != ""; then

But when --enable-snmp=VALUE is not used, ${enable_snmp} variable is set
to "no". The test must be changed to:

if test "${enable_snmp}" != "no"; then

After this change the build was fixed to me
-- 
Renato Botelho



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bb80b304-7be3-7e0b-5bbf-e8198c6c01a5>