Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Feb 2018 08:58:54 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r462085 - branches/2018Q1/net/quagga/files
Message-ID:  <201802170858.w1H8wsSW086810@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sat Feb 17 08:58:54 2018
New Revision: 462085
URL: https://svnweb.freebsd.org/changeset/ports/462085

Log:
  MFH: r462055
  
  net/quagga: fix build if SNMP is not selected
  
  - configure script tries to detect net-snmp even if not requested,
    but fails, if net-snmp is not installed.
  
  Reported by:	antoine, garga
  Approved by:	portmgr (antoine)

Added:
  branches/2018Q1/net/quagga/files/patch-configure
     - copied unchanged from r462055, head/net/quagga/files/patch-configure
Modified:
Directory Properties:
  branches/2018Q1/   (props changed)

Copied: branches/2018Q1/net/quagga/files/patch-configure (from r462055, head/net/quagga/files/patch-configure)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q1/net/quagga/files/patch-configure	Sat Feb 17 08:58:54 2018	(r462085, copy of r462055, head/net/quagga/files/patch-configure)
@@ -0,0 +1,12 @@
+--- configure.orig	2017-10-03 14:59:10 UTC
++++ configure
+@@ -22070,7 +22070,7 @@ fi
+ fi
+ 
+ 
+ 
+-if test "${enable_snmp}" != ""; then
++if test "x${enable_snmp}" != "xno"; then
+    if test -n "$ac_tool_prefix"; then
+   # Extract the first word of "${ac_tool_prefix}net-snmp-config", so it can be a program name with args.
+ set dummy ${ac_tool_prefix}net-snmp-config; ac_word=$2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802170858.w1H8wsSW086810>