From owner-svn-ports-head@FreeBSD.ORG Sun Feb 9 23:42:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0361551; Sun, 9 Feb 2014 23:42:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9889F1476; Sun, 9 Feb 2014 23:42:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s19NgPPR097212; Sun, 9 Feb 2014 23:42:25 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s19NgPIW097211; Sun, 9 Feb 2014 23:42:25 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201402092342.s19NgPIW097211@svn.freebsd.org> From: Martin Matuska Date: Sun, 9 Feb 2014 23:42:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343561 - head/net-im/jabberd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Feb 2014 23:42:25 -0000 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 -.if (${OPSYS} != FreeBSD || ${OSVERSION} < 10000000) +.if (${OPSYS} != FreeBSD || ${OSVERSION} < 1000000) WITH_OPENSSL_PORT= yes .endif