openbsd-ports/lang/gambit/patches/patch-configure
jasper 3d1f96a2c4 skip the test for get_fpc_csr() on OpenBSD; we do have the function,
but gambit expects union fpc_csr to be present too, which we lack.
2012-08-29 18:46:24 +00:00

15 lines
351 B
Plaintext

$OpenBSD: patch-configure,v 1.1 2012/08/29 18:46:24 jasper Exp $
--- configure.orig Wed May 23 11:18:43 2012
+++ configure Wed Aug 29 12:25:57 2012
@@ -21131,6 +21131,10 @@ choke me
int
main ()
{
+#if defined(__OpenBSD__)
+#error OpenBSD/mips64(el) does have get_fpc_csr(), but lacks union fpc_csr.
+#endif
+
return $ac_func ();
;
return 0;