freebsd-ports/lang/smlnj/files/patch-config___arch-n-opsys
Steve Wills 7af7a8c3e3 lang/smlnj: Update to 110.84, fix build on 12/amd64
PR:		234532
Submitted by:	Johannes 5 <joemann@beefree.free.de> (maintainer)
2018-12-31 18:32:59 +00:00

11 lines
289 B
Text

--- config/_arch-n-opsys.orig 2018-06-22 14:49:01 UTC
+++ config/_arch-n-opsys
@@ -91,6 +91,8 @@ case `uname -s` in
HEAP_OPSYS=bsd
case `uname -m` in
*86) ARCH=x86;;
+ # Fall back to x86 compatibility mode.
+ amd64) ARCH=x86;;
*) exit 1;;
esac
;;