## Daniel Morante ([email protected]): > I have a port that builds fine on a 9.3 amd64, but on 9.3 i386 it fails > on this line: > > inline int64 GetMaxMoney() { return nBestHeight <= HARDFORK_HEIGHT_1 ? > 50000000000 * COIN : 25000000000 * COIN; } > > With the following error: > > "integer constant is too large for 'long' type"
I believe the fix is to make sure those constants are interpreted as "long long", e.g. by post-fixing LL. Regards, Christoph -- Spare Space _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[email protected]"
