svn commit: r461952 - in head/net/quagga: . files

Renato Botelho garga.bsd at gmail.com
Fri Feb 16 17:55:18 UTC 2018


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 at 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


More information about the svn-ports-head mailing list