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:
authorMark Crichton <crichton@mono-cvs.ximian.com>2002-09-20 21:10:02 +0400
committerMark Crichton <crichton@mono-cvs.ximian.com>2002-09-20 21:10:02 +0400
commit62f353dcb1d3bf2352adb7ef3e712de79f862ecc (patch)
treefb588255cf214f25a5981d57ea2979accb71d377 /configure.in
parent9a47cec76540ef077f368c82a9f233740ac13445 (diff)
More Solaris/BSD fixes. This now allows shared handles to work on BSD
and BSD like systems. Please test this code. The only thing left is to fix POSIX shared threads on Solaris... svn path=/trunk/mono/; revision=7650
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 01d1fda17ab..59782cce607 100644
--- a/configure.in
+++ b/configure.in
@@ -19,6 +19,7 @@ case "$host" in
platform_win32=no
CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE"
LDFLAGS="$LDFLAGS -pthread"
+ AC_DEFINE(NEED_LINK_UNLINK)
libdl=
;;
*-*-linux*)
@@ -29,6 +30,7 @@ case "$host" in
*-*-solaris*)
platform_win32=no
CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT"
+ AC_DEFINE(NEED_LINK_UNLINK)
;;
*)
AC_MSG_WARN([*** Please add $host to configure.in checks!])