Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in4
-rw-r--r--data/config.in1
2 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index a2729586c69..2c3cc5978d4 100644
--- a/configure.in
+++ b/configure.in
@@ -1076,6 +1076,7 @@ ACCESS_UNALIGNED="yes"
JIT_SUPPORTED=no
LIBC="libc.so.6"
+INTL="libc.so.6"
jit_wanted=false
case "$host" in
@@ -1100,6 +1101,7 @@ case "$host" in
JIT_SUPPORTED=yes
ACCESS_UNALIGNED="no"
LIBC="libc.so"
+ INTL="libintl.so"
jit_wanted=true
;;
alpha*-*-linux* | alpha*-*-osf*)
@@ -1176,6 +1178,7 @@ case "$host" in
powerpc-*-darwin*)
libsuffix=".dylib"
LIBC="libc.dylib"
+ INTL="libintl.dylib"
;;
*-*-*netbsd*)
LIBC="libc.so.12"
@@ -1236,6 +1239,7 @@ AM_CONDITIONAL(HPPA, test x$TARGET = xHPPA)
AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
AC_SUBST(LIBC)
+AC_SUBST(INTL)
AC_SUBST(arch_target)
AC_SUBST(CFLAGS)
diff --git a/data/config.in b/data/config.in
index 59862ac4722..c14657e7ad1 100644
--- a/data/config.in
+++ b/data/config.in
@@ -1,6 +1,7 @@
<configuration>
<dllmap dll="cygwin1.dll" target="@LIBC@" />
<dllmap dll="libc" target="@LIBC@" />
+ <dllmap dll="libintl" target="@INTL@" />
<dllmap dll="libxslt.dll" target="libxslt@libsuffix@" />
<dllmap dll="libmySQL.dll" target="libmysqlclient@libsuffix@" />
<dllmap dll="odbc32.dll" target="libodbc@libsuffix@" />