svn commit: r462085 - branches/2018Q1/net/quagga/files
Kurt Jaeger
pi at FreeBSD.org
Sat Feb 17 08:58:55 UTC 2018
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
More information about the svn-ports-branches
mailing list