From owner-svn-ports-head@FreeBSD.ORG Wed Jan 15 13:41:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0179B3D0; Wed, 15 Jan 2014 13:41:27 +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 E298514C4; Wed, 15 Jan 2014 13:41:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0FDfQ9f053095; Wed, 15 Jan 2014 13:41:26 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0FDfQ1M053094; Wed, 15 Jan 2014 13:41:26 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401151341.s0FDfQ1M053094@svn.freebsd.org> From: John Marino Date: Wed, 15 Jan 2014 13:41:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339777 - head/lang/modula3 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: Wed, 15 Jan 2014 13:41:27 -0000 Author: marino Date: Wed Jan 15 13:41:26 2014 New Revision: 339777 URL: http://svnweb.freebsd.org/changeset/ports/339777 QAT: https://qat.redports.org/buildarchive/r339777/ Log: lang/modula3: Not for FreeBSD 8.x The Modula-3 bootstrap compiler was built on FreeBSD 9. It will not run on FreeBSD 8 due to missing symbols, e.g. _ThreadRuneLocale. As with i386, I don't feel it is worth my time to create a separate bootstrap for FreeBSD 8.x AMD64, so let's just IGNORE this to save the user a 100Mb download. Modified: head/lang/modula3/Makefile Modified: head/lang/modula3/Makefile ============================================================================== --- head/lang/modula3/Makefile Wed Jan 15 13:04:18 2014 (r339776) +++ head/lang/modula3/Makefile Wed Jan 15 13:41:26 2014 (r339777) @@ -53,6 +53,9 @@ DISTFILES= ${SRCDISTFILE} ${DST1} ${DST2 . if ${OPSYS} == FreeBSD BOOTDIST= ${DST1} MARCH= AMD64 +. if !exists(/usr/include/xlocale/_ctype.h) +IGNORE= the bootstrap compiler only runs on FreeBSD 9.0 or later +. endif . endif . if ${OPSYS} == DragonFly