NSIS compile failed on FreeBSD 7.2

Mark Linimon linimon at lonesome.com
Fri Nov 20 23:21:20 UTC 2009


On Fri, Nov 20, 2009 at 11:46:13AM -0800, Jeremy Chadwick wrote:
> If that's indeed the case, then the port Makefile needs to be modified
> to reject building on any architectures other than i386.  This should
> suffice:
> 
> ONLY_FOR_ARCHS=	i386

There's a (fine?) distinction between the usage of IGNORE (which
*_FOR_ARCHS drives) and BROKEN.  The former is more of a statement
of "it will never work"; the latter is more of a statement of "it
doesn't work right now."

So, in my own patches for e.g. sparc64, I use

.if ${ARCH} == "sparc64"
BROKEN=         Does not compile on sparc64
.endif

unless the port bails out of config with "arch not supported", or it's
clearly i386-hardware-related, or something like that.

I recognize that this may be a matter of personal taste.

mcl


More information about the freebsd-stable mailing list