svn commit: r343561 - head/net-im/jabberd

Martin Matuska mm at FreeBSD.org
Sun Feb 9 23:42:25 UTC 2014


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
 


More information about the svn-ports-all mailing list