Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jan 2014 13:41:26 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r339777 - head/lang/modula3
Message-ID:  <201401151341.s0FDfQ1M053094@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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