mirror of
https://abf.rosa.ru/djam/mono.git
synced 2025-02-23 05:42:56 +00:00
Automatic import for version 2.10.2
This commit is contained in:
commit
3135cac6e5
6 changed files with 2189 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
sources:
|
||||
"mono-2.10.2.tar.bz2": 7b673255c6b17c5a41c15059e5f068d6a970d2ea
|
19
mono-2.6-selfexe.patch
Normal file
19
mono-2.6-selfexe.patch
Normal file
|
@ -0,0 +1,19 @@
|
|||
diff -p -up mono-2.6/mono/metadata/assembly.c.selfexe mono-2.6/mono/metadata/assembly.c
|
||||
--- mono-2.6/mono/metadata/assembly.c.selfexe 2009-09-25 16:58:10.000000000 +0200
|
||||
+++ mono-2.6/mono/metadata/assembly.c 2009-10-01 22:38:25.000000000 +0200
|
||||
@@ -568,6 +568,7 @@ mono_set_rootdir (void)
|
||||
#elif defined(DISABLE_MONO_AUTODETECTION)
|
||||
fallback ();
|
||||
#else
|
||||
+#if 0
|
||||
char buf [4096];
|
||||
int s;
|
||||
char *str;
|
||||
@@ -590,6 +591,7 @@ mono_set_rootdir (void)
|
||||
set_dirs (buf);
|
||||
return;
|
||||
}
|
||||
+#endif
|
||||
fallback ();
|
||||
#endif
|
||||
}
|
20
mono-dllmap.patch
Normal file
20
mono-dllmap.patch
Normal file
|
@ -0,0 +1,20 @@
|
|||
diff -p -up mono-2.2/data/config.in.dllmap mono-2.2/data/config.in
|
||||
--- mono-2.2/data/config.in.dllmap 2008-09-02 17:42:56.000000000 +0200
|
||||
+++ mono-2.2/data/config.in 2009-01-14 09:56:39.000000000 +0100
|
||||
@@ -5,12 +5,14 @@
|
||||
<dllmap dll="intl" name="bind_textdomain_codeset" target="@LIBC@" os="solaris"/>
|
||||
<dllmap dll="libintl" name="bind_textdomain_codeset" target="@LIBC@" os="solaris"/>
|
||||
<dllmap dll="libintl" target="@INTL@" os="!windows"/>
|
||||
- <dllmap dll="i:libxslt.dll" target="libxslt@libsuffix@" os="!windows"/>
|
||||
- <dllmap dll="i:odbc32.dll" target="libodbc@libsuffix@" os="!windows"/>
|
||||
+ <dllmap dll="i:libxslt.dll" target="libxslt@libsuffix@.1" os="!windows"/>
|
||||
+ <dllmap dll="i:odbc32.dll" target="libodbc@libsuffix@.1" os="!windows"/>
|
||||
<dllmap dll="i:odbc32.dll" target="libiodbc.dylib" os="osx"/>
|
||||
<dllmap dll="oci" target="libclntsh@libsuffix@" os="!windows"/>
|
||||
<dllmap dll="db2cli" target="libdb2_36@libsuffix@" os="!windows"/>
|
||||
<dllmap dll="MonoPosixHelper" target="libMonoPosixHelper@libsuffix@" os="!windows" />
|
||||
+ <dllmap dll="gdiplus.dll" target="libgdiplus.so.0"/>
|
||||
+ <dllmap dll="gluezilla" target="libgluezilla.so.0"/>
|
||||
<dllmap dll="i:msvcrt" target="@LIBC@" os="!windows"/>
|
||||
<dllmap dll="i:msvcrt.dll" target="@LIBC@" os="!windows"/>
|
||||
<dllmap dll="sqlite" target="@SQLITE@" os="!windows"/>
|
24
mono-wapi_glop.patch
Normal file
24
mono-wapi_glop.patch
Normal file
|
@ -0,0 +1,24 @@
|
|||
Fix ARG_MAX compilation error on libc-2.8, refer to:
|
||||
|
||||
http://bugs.gentoo.org/show_bug.cgi?id=225409
|
||||
|
||||
For more information.
|
||||
|
||||
Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
|
||||
|
||||
--- ./mono/io-layer/wapi_glob.c.orig 2008-06-13 09:27:08.361391740 +0200
|
||||
+++ ./mono/io-layer/wapi_glob.c 2008-06-13 09:27:36.338060353 +0200
|
||||
@@ -52,6 +52,13 @@
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
+#if defined(_SC_ARG_MAX)
|
||||
+# if defined(ARG_MAX)
|
||||
+# undef ARG_MAX
|
||||
+# endif
|
||||
+# define ARG_MAX sysconf (_SC_ARG_MAX)
|
||||
+#endif"
|
||||
+
|
||||
#include "wapi_glob.h"
|
||||
|
||||
#define EOS '\0'
|
BIN
mono.snk
Normal file
BIN
mono.snk
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue