mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
60314dbf81
* gnu/packages/dotnet.scm (mono-2.11.4-external-repo-specs, mono-2.11.4): New variables. (add-external-repos): New procedure. * gnu/packages/patches/mono-2.11.4-fixes.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I0736a501d590309550574941b04db8337662dc30
36 lines
1 KiB
Diff
36 lines
1 KiB
Diff
diff --git a/configure.in b/configure.in
|
|
index 38cc6dc2925..4c608eb150f 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -470,7 +470,7 @@ AC_CHECK_HEADERS(wchar.h)
|
|
AC_CHECK_HEADERS(ieeefp.h)
|
|
AC_MSG_CHECKING(for isinf)
|
|
AC_TRY_LINK([#include <math.h>], [
|
|
- int f = isinf (1);
|
|
+ int f = isinf (1.0);
|
|
], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_ISINF, 1, [isinf available])
|
|
diff --git a/mono/io-layer/processes.c b/mono/io-layer/processes.c
|
|
index 586b54715db..d27857aa092 100644
|
|
--- a/mono/io-layer/processes.c
|
|
+++ b/mono/io-layer/processes.c
|
|
@@ -18,6 +18,7 @@
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
+#include <sys/sysmacros.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <sys/wait.h>
|
|
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
|
|
index 6957a287d38..2d071230a84 100644
|
|
--- a/runtime/Makefile.am
|
|
+++ b/runtime/Makefile.am
|
|
@@ -1,6 +1,3 @@
|
|
-# hack to prevent 'check' from depending on 'all'
|
|
-AUTOMAKE_OPTIONS = cygnus
|
|
-
|
|
tmpinst = _tmpinst
|
|
|
|
noinst_SCRIPTS = mono-wrapper monodis-wrapper
|