From owner-svn-ports-all@FreeBSD.ORG Thu Oct 4 12:34:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0A581065672; Thu, 4 Oct 2012 12:34:51 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BB48D8FC0A; Thu, 4 Oct 2012 12:34:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q94CYpIv054286; Thu, 4 Oct 2012 12:34:51 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q94CYpGH054282; Thu, 4 Oct 2012 12:34:51 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201210041234.q94CYpGH054282@svn.freebsd.org> From: Renato Botelho Date: Thu, 4 Oct 2012 12:34:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305256 - in head/misc: compat7x compat8x compat9x X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2012 12:34:51 -0000 Author: garga Date: Thu Oct 4 12:34:50 2012 New Revision: 305256 URL: http://svn.freebsd.org/changeset/ports/305256 Log: Lower OSVERSION checking for compat[789]x. This was requested by bapt@ and i agree with his arguments. There are no reasons to deny a compatNx package being built on a FreeBSD-N version. Modified: head/misc/compat7x/Makefile head/misc/compat8x/Makefile head/misc/compat9x/Makefile Modified: head/misc/compat7x/Makefile ============================================================================== --- head/misc/compat7x/Makefile Thu Oct 4 12:14:35 2012 (r305255) +++ head/misc/compat7x/Makefile Thu Oct 4 12:34:50 2012 (r305256) @@ -27,7 +27,7 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 800105 +.if ${OSVERSION} < 800000 IGNORE= is for FreeBSD 8.x and newer .endif Modified: head/misc/compat8x/Makefile ============================================================================== --- head/misc/compat8x/Makefile Thu Oct 4 12:14:35 2012 (r305255) +++ head/misc/compat8x/Makefile Thu Oct 4 12:34:50 2012 (r305256) @@ -26,7 +26,7 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 900042 +.if ${OSVERSION} < 900000 IGNORE= is for FreeBSD 9.x and newer .endif Modified: head/misc/compat9x/Makefile ============================================================================== --- head/misc/compat9x/Makefile Thu Oct 4 12:14:35 2012 (r305255) +++ head/misc/compat9x/Makefile Thu Oct 4 12:34:50 2012 (r305256) @@ -26,7 +26,7 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 1000009 +.if ${OSVERSION} < 1000000 IGNORE= is for FreeBSD 10.x and newer .endif