Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Feb 2014 23:42:25 +0000 (UTC)
From:      Martin Matuska <mm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r343561 - head/net-im/jabberd
Message-ID:  <201402092342.s19NgPIW097211@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mm
Date: Sun Feb  9 23:42:25 2014
New Revision: 343561
URL: http://svnweb.freebsd.org/changeset/ports/343561
QAT: https://qat.redports.org/buildarchive/r343561/

Log:
  Fix invalid conditional

Modified:
  head/net-im/jabberd/Makefile

Modified: head/net-im/jabberd/Makefile
==============================================================================
--- head/net-im/jabberd/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
+++ head/net-im/jabberd/Makefile	Sun Feb  9 23:42:25 2014	(r343561)
@@ -3,6 +3,7 @@
 
 PORTNAME=	jabberd
 DISTVERSION=	2.3.1
+PORTREVISION=	1
 CATEGORIES=	net-im
 MASTER_SITES=	https://github.com/jabberd2/jabberd2/releases/download/${PORTNAME}-${DISTVERSION}/ \
 		LOCAL/matthew/${PORTNAME}
@@ -110,7 +111,7 @@ EXPERIMENTAL_DESC=	Enable experimental f
 
 .include <bsd.port.options.mk>
 
-.if (${OPSYS} != FreeBSD || ${OSVERSION} < 10000000)
+.if (${OPSYS} != FreeBSD || ${OSVERSION} < 1000000)
 WITH_OPENSSL_PORT=	yes
 .endif
 



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