svn commit: r558994 - head/editors/imhex

MANTANI Nobutaka nobutaka at FreeBSD.org
Wed Dec 23 14:33:57 UTC 2020


Author: nobutaka
Date: Wed Dec 23 14:33:56 2020
New Revision: 558994
URL: https://svnweb.freebsd.org/changeset/ports/558994

Log:
  Set NOT_FOR_ARCHS=i386 because __uint128_t and __int128_t are not supported.

Modified:
  head/editors/imhex/Makefile

Modified: head/editors/imhex/Makefile
==============================================================================
--- head/editors/imhex/Makefile	Wed Dec 23 13:58:21 2020	(r558993)
+++ head/editors/imhex/Makefile	Wed Dec 23 14:33:56 2020	(r558994)
@@ -10,6 +10,9 @@ COMMENT=	Hex editor for reverse engineers and programm
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+NOT_FOR_ARCHS=	i386
+NOT_FOR_ARCHS_REASON=	__uint128_t and __int128_t are not supported
+
 BUILD_DEPENDS=	c++10:lang/gcc10 \
 		glm>0:math/glm \
 		nlohmann-json>0:devel/nlohmann-json


More information about the svn-ports-head mailing list