]> git.pld-linux.org Git - packages/mono.git/blob - mono-sonames.patch
- proper libc sonames on {alpha,sparc}-linux, don't rely on {libxslt,mysql,unixODBC...
[packages/mono.git] / mono-sonames.patch
1 --- mono-1.0.6/configure.in.orig        2005-05-01 14:45:01.000000000 +0200
2 +++ mono-1.0.6/configure.in     2005-05-01 14:53:22.000000000 +0200
3 @@ -1204,8 +1204,12 @@
4                 arch_target=sparc;
5                 JIT_SUPPORTED=yes
6                 ACCESS_UNALIGNED="no"
7 -               LIBC="libc.so"
8 -               INTL="libintl.so"
9 +               case $host_os in
10 +                 linux*) ;;
11 +                 *)
12 +                       LIBC="libc.so"
13 +                       INTL="libintl.so"
14 +               esac
15                 jit_wanted=true
16                 ;;
17         alpha*-*-linux* | alpha*-*-osf*)
18 @@ -1213,6 +1217,11 @@
19                 ACCESS_UNALIGNED="no"
20                 JIT_SUPPORTED=no
21                 arch_target=alpha;
22 +               case $host_os in
23 +                 linux*)
24 +                       LIBC="libc.so.6.1"
25 +                       INTL="libc.so.6.1"
26 +               esac
27                ;;
28  #      ia64-*-linux* | ia64-*-hpux*)
29  #              TARGET=IA64;
30 --- mono-1.0.6/data/config.in.orig      2004-11-14 01:28:09.000000000 +0100
31 +++ mono-1.0.6/data/config.in   2005-05-01 16:14:16.000000000 +0200
32 @@ -2,9 +2,9 @@
33         <dllmap dll="cygwin1.dll" target="@LIBC@" />
34         <dllmap dll="libc" target="@LIBC@" />
35         <dllmap dll="libintl" target="@INTL@" />
36 -       <dllmap dll="libxslt.dll" target="libxslt@libsuffix@" />
37 -       <dllmap dll="libmySQL.dll" target="libmysqlclient@libsuffix@" />
38 -       <dllmap dll="odbc32.dll" target="libodbc@libsuffix@" />
39 +       <dllmap dll="libxslt.dll" target="libxslt.so.1" />
40 +       <dllmap dll="libmySQL.dll" target="libmysqlclient.so.14" />
41 +       <dllmap dll="odbc32.dll" target="libodbc.so.1" />
42         <dllmap dll="oci" target="clntsh" />
43         <dllmap dll="db2cli" target="libdb2_36@libsuffix@"/>
44  </configuration>
This page took 0.072878 seconds and 4 git commands to generate.