From b0901c51428b63606e2588773bb853aa78e22ad2 Mon Sep 17 00:00:00 2001 From: marcus Date: Sat, 22 Feb 2003 17:44:37 +0000 Subject: Correct logic when building on 5.x. Submitted by: Oliver Lehmann Pointy hat to: me --- net/net-snmp4/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'net') diff --git a/net/net-snmp4/Makefile b/net/net-snmp4/Makefile index 9a8381f5d15c..6db343483dd2 100644 --- a/net/net-snmp4/Makefile +++ b/net/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 -- cgit