svn commit: r389871 - head/emulators/pearpc

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Jun 16 23:00:03 UTC 2015


Author: amdmi3
Date: Tue Jun 16 23:00:02 2015
New Revision: 389871
URL: https://svnweb.freebsd.org/changeset/ports/389871

Log:
  - Mark BROKEN on < 10.x amd64:
  
  ppc_mmu.cc:828:69: error: 'MAP_32BIT' was not declared in this scope
  
  MFH:		2015Q2

Modified:
  head/emulators/pearpc/Makefile

Modified: head/emulators/pearpc/Makefile
==============================================================================
--- head/emulators/pearpc/Makefile	Tue Jun 16 22:59:00 2015	(r389870)
+++ head/emulators/pearpc/Makefile	Tue Jun 16 23:00:02 2015	(r389871)
@@ -16,7 +16,7 @@ USES=		tar:bzip2
 USE_XORG=	x11
 GNU_CONFIGURE=	yes
 
-BROKEN_ia64=	Internal compiler error on ia64
+BROKEN_ia64=	internal compiler error on ia64
 
 PORTEXAMPLES=	ppccfg.example
 PLIST_FILES=	bin/ppc man/man1/ppc.1.gz %%DATADIR%%/video.x
@@ -38,6 +38,10 @@ USE_GCC=	yes
 CONFIGURE_ARGS+=	--enable-cpu=generic
 .endif
 
+.if ${ARCH} == "amd64" && ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
+BROKEN=		does not build on FreeBSD < 10.x amd64
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e \
 		's|-O3|| ; \


More information about the svn-ports-head mailing list