svn commit: r339777 - head/lang/modula3

John Marino marino at FreeBSD.org
Wed Jan 15 13:41:27 UTC 2014


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


More information about the svn-ports-all mailing list