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:
authorMiguel de Icaza <miguel@gnome.org>2002-08-24 02:47:09 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-08-24 02:47:09 +0400
commit6f8509ece5a25ebd45e09b6646939dae919360a6 (patch)
treedda0312c1fa552fb6f9bf0f2c7ada3fa9c03cd06
parentbdb0cea332726c4e6fe1b20493fb6c05d9222e1f (diff)
For now, get _REENTRANT defined, we should use the Sleepycat mechanism later
svn path=/trunk/mono/; revision=6979
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 8a9879e75ba..599bc35fdd3 100644
--- a/configure.in
+++ b/configure.in
@@ -373,7 +373,7 @@ if test x$platform_win32 = xno; then
])
])
CPPFLAGS=$orig_CPPFLAGS
- CPPFLAGS="$CPPFLAGS $pthread_CFLAGS"
+ CPPFLAGS="$CPPFLAGS -D_REENTRANT $pthread_CFLAGS"
], [
AC_MSG_ERROR([libpthread is required on non-win32 hosts])
])
@@ -542,6 +542,9 @@ AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
AM_CONDITIONAL(ARM, test x$TARGET = xARM)
+LIBC="libc.so.6"
+AC_SUBST(LIBC)
+
AC_SUBST(arch_target)
AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)