summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-02-22 17:44:37 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-02-22 17:44:37 +0000
commit99979c859f77e5405027c37f6f415a921d8a9ec6 (patch)
treebba7ed9f3580b669cd0045ceb3b406d61f9c23fe /net-mgmt
parentUnbreak by updating to 2.3.9 (diff)
Correct logic when building on 5.x.
Submitted by: Oliver Lehmann <lehmann@ans-netz.de> Pointy hat to: me
Notes
Notes: svn path=/head/; revision=76182
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/net-snmp4/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/net-snmp4/Makefile b/net-mgmt/net-snmp4/Makefile
index 9a8381f5d15c..6db343483dd2 100644
--- a/net-mgmt/net-snmp4/Makefile
+++ b/net-mgmt/net-snmp4/Makefile
@@ -71,7 +71,8 @@ CONFIGURE_ARGS+= --enable-ipv6
.if defined(WITHOUT_SSL)
CONFIGURE_ARGS+= --without-openssl
.else
-.if defined(WITH_PORTSSL) || ${OSVERSION} >= 500100 || ${OSVERSION} >= 470103
+.if defined(WITH_PORTSSL) || ${OSVERSION} >= 500100 || \
+ (${OSREL} == 4 && ${OSVERSION} >= 470103)
.if ${OSVERSION} >= 500100
LIB_DEPENDS+= crypto.4:${PORTSDIR}/security/openssl
.else