3 AM_CONFIG_HEADER(config.h)
4 AM_INIT_AUTOMAKE(mono,1.1.2.99)
17 if test -d $srcdir/libgc ; then
24 # These are the flags that need to be stored in the mono.pc file for
25 # compiling code that will embed Mono
29 AC_SUBST(libmono_cflags)
30 AC_SUBST(libmono_ldflags)
32 dnl if linker handles the version script
35 # Set to yes if Unix sockets cannot be created in an anonymous namespace
38 # Thread configuration inspired by sleepycat's db
39 AC_MSG_CHECKING([host platform characteristics])
42 *-*-mingw*|*-*-cygwin*)
44 AC_DEFINE(PLATFORM_WIN32,1,[Platform is Win32])
45 CC="gcc -mno-cygwin -g"
47 # So libgc configure gets -mno-cygwin
49 # latest libgc already defines GC_WIN32_THREADS
50 # CPPFLAGS="$CPPFLAGS -DGC_WIN32_THREADS -DWIN32_THREADS"
51 CPPFLAGS="$CPPFLAGS -DWIN32_THREADS"
61 CPPFLAGS="$CPPFLAGS -D_REENTRANT"
62 libmono_cflags="-D_REENTRANT"
63 LDFLAGS="$LDFLAGS -pthread"
64 libmono_ldflags="-pthread"
69 # these flags will work for all versions of -STABLE
73 if test "x$PTHREAD_CFLAGS" = "x"; then
74 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_FREEBSD_THREADS"
75 libmono_cflags="-D_THREAD_SAFE"
77 CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
78 libmono_cflags="$PTHREAD_CFLAGS"
80 if test "x$PTHREAD_LIBS" = "x"; then
81 LDFLAGS="$LDFLAGS -pthread"
82 libmono_ldflags="-pthread"
84 LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
85 libmono_ldflags="$PTHREAD_LIBS"
88 AC_DEFINE(PTHREAD_POINTER_ID)
90 libgc_threads=pthreads
91 # TLS isn't implemented at all on -STABLE
95 # older versions of -CURRENT will break with these flags but testing
96 # indicates these older versions won't run Mono anyway
100 if test "x$PTHREAD_CFLAGS" = "x"; then
101 CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
104 CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
105 libmono_cflags="$PTHREAD_CFLAGS"
107 if test "x$PTHREAD_LIBS" = "x"; then
108 LDFLAGS="$LDFLAGS -lpthread"
109 libmono_ldflags="-lpthread"
111 LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
112 libmono_ldflags="$PTHREAD_LIBS"
115 AC_DEFINE(PTHREAD_POINTER_ID)
117 libgc_threads=pthreads
118 # TLS is only partially implemented on -CURRENT (compiler support
119 # but NOT library support)
126 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_FREEBSD_THREADS"
127 libmono_cflags="-D_THREAD_SAFE"
128 LDFLAGS="$LDFLAGS -pthread"
129 libmono_ldflags="-pthread"
131 AC_DEFINE(PTHREAD_POINTER_ID)
133 libgc_threads=pthreads
137 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT"
138 libmono_cflags="-D_REENTRANT"
139 libmono_ldflags="-lpthread"
141 libgc_threads=pthreads
145 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
146 CFLAGS="$CFLAGS +ESdbgasm"
147 LDFLAGS="$LDFLAGS -z"
148 libmono_cflags="-D_REENTRANT"
149 libmono_ldflags="-lpthread"
150 libgc_threads=pthreads
155 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT"
157 libmono_cflags="-D_REENTRANT"
158 libgc_threads=pthreads
162 CPPFLAGS="$CPPFLAGS -no-cpp-precomp -D_THREAD_SAFE -DGC_MACOSX_THREADS"
163 libmono_cflags="-D_THREAD_SAFE"
164 LDFLAGS="$LDFLAGS -pthread"
165 libmono_ldflags="-pthread"
167 AC_DEFINE(PTHREAD_POINTER_ID)
168 AC_DEFINE(USE_MACH_SEMA)
169 no_version_script=yes
171 libgc_threads=pthreads
174 AC_MSG_WARN([*** Please add $host to configure.in checks!])
181 if test x$need_link_unlink = xyes; then
182 AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
185 AM_CONDITIONAL(PLATFORM_WIN32, test x$platform_win32 = xyes)
187 AC_CHECK_TOOL(CC, gcc, gcc)
191 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
193 # Set ASFLAGS if not already set.
194 : ${CCASFLAGS='$(CFLAGS)'}
198 AC_CHECK_PROG(BISON, bison,yes,no)
199 if test "x$BISON" = "xno";
201 AC_MSG_ERROR([You need to install bison])
204 dnl may require a specific autoconf version
205 dnl AC_PROG_CC_FOR_BUILD
206 dnl CC_FOR_BUILD not automatically detected
209 if test "x$cross_compiling" = "xyes"; then
213 AC_SUBST(CC_FOR_BUILD)
215 AC_SUBST(BUILD_EXEEXT)
222 # Test whenever ld supports -version-script
225 if test "x$lt_cv_prog_gnu_ld" = "xno"; then
226 no_version_script=yes
229 AM_CONDITIONAL(NO_VERSION_SCRIPT, test x$no_version_script = xyes)
231 AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h semaphore.h sys/un.h)
233 AC_CHECK_HEADER(zlib.h, [have_zlib=yes], [have_zlib=no])
235 AM_CONDITIONAL(HAVE_ZLIB, test x$have_zlib = xyes)
237 # for mono/metadata/debug-symfile.c
238 AC_CHECK_HEADERS(elf.h)
241 AC_CHECK_HEADERS(wchar.h)
243 # not 64 bit clean in cross-compile
244 AC_CHECK_SIZEOF(void *, 4)
247 if test x"$GCC" = xyes; then
248 WARN='-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
249 # The runtime code does not respect ANSI C strict aliasing rules
250 CFLAGS="$CFLAGS -fno-strict-aliasing"
252 # The Sun Forte compiler complains about inline functions that access static variables
253 # so disable all inlining.
256 CFLAGS="$CFLAGS -Dinline="
260 CFLAGS="$CFLAGS -g $WARN"
262 # Where's the 'mcs' source tree?
263 if test -d $srcdir/mcs; then
269 mcs_topdir='$(top_srcdir)/'$mcsdir
270 mcs_topdir_from_srcdir='$(top_builddir)/'$mcsdir
272 AC_SUBST([mcs_topdir])
273 AC_SUBST([mcs_topdir_from_srcdir])
275 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
276 if test "x$PKG_CONFIG" = "xno"; then
277 AC_MSG_ERROR([You need to install pkg-config])
280 dnl for use on the build system
281 dnl pkg-config is stupid
282 BUILD_GLIB_CFLAGS=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0`
283 BUILD_GLIB_LIBS=`$PKG_CONFIG --libs glib-2.0 gthread-2.0`
284 AC_SUBST(BUILD_GLIB_CFLAGS)
285 AC_SUBST(BUILD_GLIB_LIBS)
288 AC_ARG_WITH(crosspkgdir, [ --with-crosspkgdir=/path/to/pkg-config/dir],
289 if test x$with_crosspkgdir = "x"; then
290 if test -s $PKG_CONFIG_PATH; then
291 PKG_PATH=$PKG_CONFIG_PATH
294 PKG_PATH=$with_crosspkgdir
295 PKG_CONFIG_PATH=$PKG_PATH
296 export PKG_CONFIG_PATH
300 ## Versions of dependencies
301 GLIB_REQUIRED_VERSION=1.3.11
303 PKG_CHECK_MODULES(BASE_DEPENDENCIES, glib-2.0 >= $GLIB_REQUIRED_VERSION)
305 GLIB_CFLAGS=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0`
306 GLIB_LIBS=`$PKG_CONFIG --libs glib-2.0 gthread-2.0`
307 GMODULE_CFLAGS=`$PKG_CONFIG --cflags gmodule-2.0`
308 GMODULE_LIBS=`$PKG_CONFIG --libs gmodule-2.0`
310 AC_SUBST(GLIB_CFLAGS)
312 AC_SUBST(GMODULE_CFLAGS)
313 AC_SUBST(GMODULE_LIBS)
315 if test x$platform_win32 = xyes; then
316 AC_MSG_CHECKING(for cygwin glib2-dev package)
317 if [ cygcheck --f /usr/lib/libglib-2.0.dll.a | grep -q glib2-devel ]; then
319 AC_MSG_ERROR([Mono cannot be built with the cygwin glib2-devel package installed, because that package doesn't work with -mno-cygwin. Please uninstall it then re-run configure.])
321 AC_MSG_RESULT(not found, ok)
324 AC_MSG_CHECKING(for broken gwin32.h)
325 glib_include=`$PKG_CONFIG --cflags-only-I glib-2.0 | sed -e 's/ -I.*//g' | sed -e 's/-I//g'`
326 if test -f $glib_include/glib/gwin32.h; then
327 if [ grep ftruncate $glib_include/glib/gwin32.h | grep -q define ]; then
328 AC_MSG_RESULT(failed)
330 AC_MSG_ERROR([Your version of gwin32.h is broken and will cause compilation errors when building mono. Please fix it by deleting the line: '$hashmark define ftruncate...' from '$glib_include/glib/gwin32.h' then re-run configure.])
336 AC_ARG_WITH(gc, [ --with-gc=boehm,included,none],[gc=$with_gc],[gc=$gc_default])
338 # Enable support for fast thread-local storage
339 # Some systems have broken support, so we allow to disable it.
340 AC_ARG_WITH(tls, [ --with-tls=__thread,pthread select Thread Local Storage implementation],[],[with_tls=__thread])
342 # Kept for compatibility
343 AC_ARG_WITH(nptl, [ --with-nptl=yes,no deprecated, use --with-tls instead],[],[with_nptl=default])
345 if test "x$with_nptl" != "xdefault"; then
346 if test "x$with_nptl" = "xyes"; then
347 AC_MSG_WARN([--with-nptl=yes is deprecated, use --with-tls=__thread option instead.])
350 if test "x$with_nptl" = "xno"; then
351 AC_MSG_WARN([--with-nptl=no is deprecated, use --with-tls=pthread option instead.])
356 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
357 # This does not work on some platforms (bug #55253)
358 AC_ARG_WITH(sigaltstack, [ --with-sigaltstack=yes,no enable/disable support for sigaltstack],[],[with_sigaltstack=no])
360 AC_ARG_WITH(static_mono, [ --with-static_mono=yes,no link mono statically to libmono (faster)],[],[with_static_mono=yes])
361 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
363 # assembly bundle support, see metadata/make-bundle.pl for more info
364 AC_ARG_WITH(bundle, [ --with-bundle=bundle_template],[
365 BUNDLE_FILE=$with_bundle
366 AC_SUBST(BUNDLE_FILE)
367 AC_DEFINE(WITH_BUNDLE)
369 AM_CONDITIONAL(WITH_BUNDLE, test x$with_bundle != xno)
377 AC_CHECK_HEADERS(gc.h gc/gc.h, gc_headers=yes)
378 AC_CHECK_LIB(gc, GC_malloc, found_boehm="yes",,$libdl)
380 if test "x$found_boehm" != "xyes"; then
381 AC_MSG_ERROR("GC requested but libgc not found! Install libgc or run configure with --with-gc=none.")
383 if test "x$gc_headers" != "xyes"; then
384 AC_MSG_ERROR("GC requested but header files not found! You may need to install them by hand.")
387 AC_DEFINE(HAVE_BOEHM_GC)
388 AC_SUBST(HAVE_BOEHM_GC)
389 LIBGC_LIBS="-lgc $libdl"
390 LIBGC_STATIC_LIBS="$LIBGC_LIBS"
392 # AC_CHECK_FUNCS does not work for some reason...
393 AC_CHECK_LIB(gc, GC_gcj_malloc, found_gcj_malloc="yes",,$libdl)
394 if test "x$found_gcj_malloc" = "xyes"; then
395 AC_DEFINE(HAVE_GC_GCJ_MALLOC)
397 AC_CHECK_LIB(gc, GC_enable, found_gc_enable="yes",,$libdl)
398 if test "x$found_gc_enable" = "xyes"; then
399 AC_DEFINE(HAVE_GC_ENABLE)
404 AC_CONFIG_SUBDIRS(libgc)
411 LIBGC_CFLAGS='-I$(top_srcdir)/libgc/include'
412 LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
413 LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
415 AC_DEFINE(HAVE_BOEHM_GC)
416 AC_SUBST(HAVE_BOEHM_GC)
419 AC_DEFINE(USE_INCLUDED_LIBGC)
421 # The included libgc contains GCJ support
422 AC_DEFINE(HAVE_GC_GCJ_MALLOC)
423 AC_DEFINE(HAVE_GC_ENABLE)
427 AC_MSG_WARN("Compiling mono without GC.")
430 AC_MSG_ERROR([Invalid argument to --with-gc.])
435 # tell libgc/configure about what we want
436 ac_configure_args="$ac_configure_args --disable-embed-check --with-libgc-threads=$libgc_threads"
438 AM_CONDITIONAL(INCLUDED_LIBGC, test x$use_included_gc = xyes)
439 AC_SUBST(LIBGC_CFLAGS)
441 AC_SUBST(LIBGC_STATIC_LIBS)
445 dnl End of libgc checks
448 if test x$platform_win32 = xno; then
450 dnl ******************************************************************
451 dnl *** Checks for the IKVM JNI interface library ***
452 dnl ******************************************************************
453 AC_ARG_WITH(ikvm-jni, [ --with-ikvm-jni=yes,no build the IKVM JNI interface library],[with_ikvm_jni=$withval],[with_ikvm_jni=yes])
454 AC_ARG_WITH(jdk, [ --with-jdk=DIRECTORY Use JDK from DIRECTORY],[with_jdk_dir=$withval],[with_jdk_dir=])
457 if test x$with_ikvm_jni = xyes; then
458 AC_MSG_CHECKING([JDK headers])
460 if test x$with_jdk_dir = x; then
461 # Try JAVA_HOME variable
462 if test x$JAVA_HOME != x; then
463 with_jdk_dir=$JAVA_HOME
468 if test -d $with_jdk_dir/include; then
469 jdk_headers_found=yes
471 if test -d $with_jdk_dir/include/linux; then
474 if test -d $with_jdk_dir/include/solaris; then
477 if test -f $with_jdk_dir/include/jni_md.h; then
478 # GNU Classpath sources
489 if test x$jdk_headers_found = xyes; then
490 AC_MSG_RESULT($with_jdk_dir/include $with_jdk_dir/include/$jdk_platform)
492 AC_MSG_RESULT(not found)
495 if test x$jdk_headers_found = xyes; then
496 ikvm_jni_dir=ikvm-jni
497 IKVM_JNI_CFLAGS="-I$with_jdk_dir/include -I$with_jdk_dir/include/$jdk_platform"
501 AC_SUBST(ikvm_jni_dir)
502 AC_SUBST(IKVM_JNI_CFLAGS)
504 AC_CHECK_FUNCS(getgrgid_r)
505 AC_CHECK_FUNCS(getgrnam_r)
506 AC_CHECK_FUNCS(getpwnam_r)
507 AC_CHECK_FUNCS(getpwuid_r)
508 AC_CHECK_FUNCS(getresuid)
509 AC_CHECK_FUNCS(setresuid)
510 AC_CHECK_FUNCS(kqueue)
512 dnl ******************************************************************
513 dnl *** Check for large file support ***
514 dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
515 dnl ******************************************************************
517 # Check that off_t can represent 2**63 - 1 correctly, working around
518 # potential compiler bugs. Defines LARGE_FILE_SUPPORT, adds $1 to
519 # CPPFLAGS and sets $large_offt to yes if the test succeeds
521 AC_DEFUN(LARGE_FILES, [
522 large_CPPFLAGS=$CPPFLAGS
523 CPPFLAGS="$CPPFLAGS $1"
525 #include <sys/types.h>
527 #define BIG_OFF_T (((off_t)1<<62)-1+((off_t)1<<62))
530 int big_off_t=((BIG_OFF_T%2147483629==721) &&
531 (BIG_OFF_T%2147483647==1));
540 AC_DEFINE(HAVE_LARGE_FILE_SUPPORT)
541 large_CPPFLAGS="$large_CPPFLAGS $1"
546 CPPFLAGS=$large_CPPFLAGS
549 AC_MSG_CHECKING(if off_t is 64 bits wide)
551 if test $large_offt = no; then
552 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
553 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
555 if test $large_offt = no; then
556 AC_MSG_WARN([No 64 bit file size support available])
559 dnl *****************************
560 dnl *** Checks for libsocket ***
561 dnl *****************************
562 AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
564 dnl *******************************
565 dnl *** Checks for MSG_NOSIGNAL ***
566 dnl *******************************
567 AC_MSG_CHECKING(for MSG_NOSIGNAL)
568 AC_TRY_COMPILE([#include <sys/socket.h>], [
569 int f = MSG_NOSIGNAL;
573 AC_DEFINE(HAVE_MSG_NOSIGNAL)
575 # We'll have to use signals
579 dnl *****************************
580 dnl *** Checks for SOL_IP ***
581 dnl *****************************
582 AC_MSG_CHECKING(for SOL_IP)
583 AC_TRY_COMPILE([#include <netdb.h>], [
588 AC_DEFINE(HAVE_SOL_IP)
590 # We'll have to use getprotobyname
594 dnl *****************************
595 dnl *** Checks for SOL_IPV6 ***
596 dnl *****************************
597 AC_MSG_CHECKING(for SOL_IPV6)
598 AC_TRY_COMPILE([#include <netdb.h>], [
599 int level = SOL_IPV6;
603 AC_DEFINE(HAVE_SOL_IPV6)
605 # We'll have to use getprotobyname
609 dnl *****************************
610 dnl *** Checks for SOL_TCP ***
611 dnl *****************************
612 AC_MSG_CHECKING(for SOL_TCP)
613 AC_TRY_COMPILE([#include <netdb.h>], [
618 AC_DEFINE(HAVE_SOL_TCP)
620 # We'll have to use getprotobyname
624 dnl *****************************
625 dnl *** Checks for IP_PKTINFO ***
626 dnl *****************************
627 AC_MSG_CHECKING(for IP_PKTINFO)
628 AC_TRY_COMPILE([#include <netdb.h>], [
629 int level = IP_PKTINFO;
633 AC_DEFINE(HAVE_IP_PKTINFO)
638 dnl *********************************
639 dnl *** Check for struct ip_mreqn ***
640 dnl *********************************
641 AC_MSG_CHECKING(for struct ip_mreqn)
642 AC_TRY_COMPILE([#include <netinet/in.h>], [
643 struct ip_mreqn mreq;
644 mreq.imr_address.s_addr = 0;
648 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
650 # We'll just have to try and use struct ip_mreq
652 AC_MSG_CHECKING(for struct ip_mreq)
653 AC_TRY_COMPILE([#include <netinet/in.h>], [
655 mreq.imr_interface.s_addr = 0;
659 AC_DEFINE(HAVE_STRUCT_IP_MREQ)
661 # No multicast support
666 dnl **********************************
667 dnl *** Check for gethostbyname2_r ***
668 dnl **********************************
669 AC_MSG_CHECKING(for gethostbyname2_r)
670 AC_TRY_LINK([#include <netdb.h>], [
671 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
675 AC_DEFINE(HAVE_GETHOSTBYNAME2_R)
680 dnl *****************************
681 dnl *** Checks for libnsl ***
682 dnl *****************************
683 AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl")
685 AC_CHECK_FUNCS(inet_pton inet_aton)
687 dnl ***********************************************
688 dnl *** Checks for size of sockaddr_un.sun_path ***
689 dnl ***********************************************
690 # AC_CHECK_SIZEOF can't cope with struct members :-(
691 AC_MSG_CHECKING(size of sockaddr_un.sun_path)
692 AC_CACHE_VAL(cv_mono_sizeof_sunpath,
694 #include <sys/types.h>
699 struct sockaddr_un sock_un;
700 FILE *f=fopen("conftestval", "w");
702 fprintf(f, "%d\n", sizeof(sock_un.sun_path));
705 ], cv_mono_sizeof_sunpath=`cat conftestval`,
706 cv_mono_sizeof_sunpath=0,
707 cv_mono_sizeof_sunpath=0)])dnl
708 AC_MSG_RESULT($cv_mono_sizeof_sunpath)
709 AC_DEFINE_UNQUOTED(MONO_SIZEOF_SUNPATH, $cv_mono_sizeof_sunpath)
711 dnl *************************************
712 dnl *** Checks for zero length arrays ***
713 dnl *************************************
714 AC_MSG_CHECKING(whether $CC supports zero length arrays)
722 AC_DEFINE_UNQUOTED(MONO_ZERO_ARRAY_LENGTH, 0)
725 AC_DEFINE_UNQUOTED(MONO_ZERO_ARRAY_LENGTH, 1)
728 dnl *****************************
729 dnl *** Checks for libxnet ***
730 dnl *****************************
733 AC_MSG_CHECKING(for Solaris XPG4 support)
734 if test -f /usr/lib/libxnet.so; then
735 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
736 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
737 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
744 if test "$GCC" = "yes"; then
745 CFLAGS="$CFLAGS -Wno-char-subscripts"
750 dnl *****************************
751 dnl *** Checks for libpthread ***
752 dnl *****************************
753 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
754 # and libpthread does not exist
758 AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
761 AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
764 AC_CHECK_HEADERS(pthread.h)
765 AC_CHECK_FUNCS(pthread_mutex_timedlock)
766 AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np)
767 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
768 AC_TRY_COMPILE([ #include <pthread.h>], [
769 pthread_mutexattr_t attr;
770 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
775 AC_MSG_WARN(Using mono_mutex_t for recursive mutexes)
776 AC_DEFINE(USE_MONO_MUTEX)
778 AC_CHECK_FUNCS(pthread_attr_setstacksize)
780 dnl ***********************************
781 dnl *** Checks for working __thread ***
782 dnl ***********************************
783 AC_MSG_CHECKING(for working __thread)
784 if test "x$with_tls" != "x__thread"; then
785 AC_MSG_RESULT(disabled)
791 static int res1, res2;
793 void thread_main (void *arg)
808 pthread_create (&t1, NULL, thread_main, 1);
809 pthread_create (&t2, NULL, thread_main, 2);
811 pthread_join (t1, NULL);
812 pthread_join (t2, NULL);
814 return !(res1 + res2 == 2);
824 dnl **************************************
825 dnl *** Checks for working sigaltstack ***
826 dnl **************************************
827 AC_MSG_CHECKING(for working sigaltstack)
828 if test "x$with_sigaltstack" != "xyes"; then
829 AC_MSG_RESULT(disabled)
837 #include <sys/wait.h>
840 sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
858 struct sigaltstack sas;
862 sa.sa_sigaction = sigsegv_signal_handler;
863 sigemptyset (&sa.sa_mask);
864 sa.sa_flags = SA_SIGINFO | SA_STACK;
865 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
870 sas.ss_sp = malloc (SIGSTKSZ);
871 sas.ss_size = SIGSTKSZ;
872 sas.ss_flags = SS_ONSTACK;
873 if (sigaltstack (&sas, NULL) == -1) {
878 pthread_attr_init (&attr);
879 if (pthread_create(&id, &attr, loop, &attr) != 0) {
904 for (i = 0; i < 3; ++i) {
906 waitpid (son, &status, WNOHANG);
907 if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
917 AC_DEFINE(HAVE_WORKING_SIGALTSTACK)
924 dnl ********************************
925 dnl *** Checks for semaphore lib ***
926 dnl ********************************
927 # 'Real Time' functions on Solaris
928 # posix4 on Solaris 2.6
929 # pthread (first!) on Linux
930 AC_SEARCH_LIBS(sem_init, pthread rt posix4)
932 dnl ********************************
933 dnl *** Checks for timezone stuff **
934 dnl ********************************
935 AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
941 ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
942 if test $ac_cv_struct_tm_gmtoff = yes; then
943 AC_DEFINE(HAVE_TM_GMTOFF)
945 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
950 ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
951 if test $ac_cv_var_timezone = yes; then
952 AC_DEFINE(HAVE_TIMEZONE)
954 AC_ERROR(unable to find a way to determine timezone)
958 dnl *********************************
959 dnl *** Checks for math functions ***
960 dnl *********************************
962 AC_CHECK_FUNCS(finite, , AC_MSG_CHECKING(for finite in math.h)
963 AC_TRY_LINK([#include <math.h>],
965 AC_DEFINE(HAVE_FINITE) AC_MSG_RESULT(yes),
967 AC_CHECK_FUNCS(isfinite, , AC_MSG_CHECKING(for isfinite in math.h)
968 AC_TRY_LINK([#include <math.h>],
970 AC_DEFINE(HAVE_ISFINITE) AC_MSG_RESULT(yes),
973 dnl ****************************************************************
974 dnl *** Checks for working poll() (macosx defines it but doesn't ***
975 dnl *** have it in the library (duh)) ***
976 dnl ****************************************************************
979 dnl *************************
980 dnl *** Check for signbit ***
981 dnl *************************
982 AC_MSG_CHECKING(for signbit)
983 AC_TRY_LINK([#include <math.h>], [
984 int s = signbit(1.0);
987 AC_DEFINE(HAVE_SIGNBIT)
992 dnl *********************
993 dnl *** Check for AIO ***
994 dnl *********************
995 AC_MSG_CHECKING([for SIGEV_THREAD definition])
996 dnl Some systems (FreeBSD at least) may have aio_read
997 dnl but don't support/define SIGEV_THREAD.
999 #include <sys/signal.h>
1001 int x = SIGEV_THREAD;
1003 ac_cv_c_sigev_thread=yes
1009 if test "$ac_cv_c_sigev_thread" = "yes" ; then
1010 AC_CHECK_HEADERS(aio.h sys/aio.h)
1011 AC_CHECK_LIB(rt, aio_read, [ LIBS="$LIBS -lrt" ],)
1012 SIGVAL_PTR="undefined"
1013 if test "$ac_cv_header_aio_h" = "yes" -o "$ac_cv_header_sys_aio_h" = "yes" ; then
1014 AC_CHECK_MEMBER(union sigval.sigval_ptr,SIGVAL_PTR="sigval_ptr",, [
1015 #include <sys/signal.h>
1017 AC_CHECK_MEMBER(union sigval.sival_ptr,SIGVAL_PTR="sival_ptr",, [
1018 #include <sys/signal.h>
1020 if test "$SIGVAL_PTR" = "undefined" ; then
1021 AC_MSG_ERROR([Unable to detect field name in 'union sigval'])
1024 AC_DEFINE_UNQUOTED(SIGVAL_PTR,$SIGVAL_PTR,[Pointer field name in 'union sigval'])
1027 dnl **********************************
1028 dnl *** Checks for MonoPosixHelper ***
1029 dnl **********************************
1030 AC_CHECK_FUNCS(posix_fadvise)
1031 AC_CHECK_FUNCS(posix_madvise)
1032 AC_CHECK_FUNCS(posix_fallocate)
1033 AC_CHECK_FUNCS(fgetgrent)
1034 AC_CHECK_FUNCS(fgetpwent)
1035 AC_CHECK_FUNCS(fgetpwent)
1036 AC_CHECK_HEADERS(sys/sendfile.h)
1037 AC_CHECK_FUNCS(sendfile)
1038 AC_CHECK_FUNCS(sethostid)
1039 AC_CHECK_FUNCS(stime)
1040 AC_CHECK_FUNCS(strerror_r)
1041 AC_CHECK_FUNCS(ttyname_r)
1042 AC_CHECK_SIZEOF(size_t)
1044 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,,
1045 [#include <sys/types.h>
1046 #include <dirent.h>])
1048 jdk_headers_found=no
1049 AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
1050 AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
1051 AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
1053 dnl *********************************
1054 dnl *** Check for struct ip_mreqn ***
1055 dnl *********************************
1056 AC_MSG_CHECKING(for struct ip_mreqn)
1057 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1058 struct ip_mreqn mreq;
1059 mreq.imr_address.s_addr = 0;
1061 # Yes, we have it...
1063 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
1065 # We'll just have to try and use struct ip_mreq
1067 AC_MSG_CHECKING(for struct ip_mreq)
1068 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1069 struct ip_mreq mreq;
1070 mreq.imr_interface.s_addr = 0;
1072 # Yes, we have it...
1074 AC_DEFINE(HAVE_STRUCT_IP_MREQ)
1076 # No multicast support
1083 AC_MSG_CHECKING(for socklen_t)
1085 #include <sys/types.h>
1086 #include <sys/socket.h>
1090 ac_cv_c_socklen_t=yes
1091 AC_DEFINE(HAVE_SOCKLEN_T)
1097 AC_MSG_CHECKING(for array element initalizer support)
1098 AC_TRY_COMPILE([#include <sys/socket.h>], [
1099 const int array[] = {[1] = 2,};
1101 # Yes, we have it...
1103 AC_DEFINE(HAVE_ARRAY_ELEM_INIT,1,[Supports C99 array initialization])
1105 # We'll have to use signals
1109 AC_CHECK_FUNCS(trunc, , AC_MSG_CHECKING(for trunc in math.h)
1110 # Simply calling trunc (0.0) is no good since gcc will optimize the call away
1111 AC_TRY_LINK([#include <math.h>],
1112 [ static void *p = &trunc; ],
1114 AC_DEFINE(HAVE_TRUNC)
1120 if test "x$ac_cv_truncl" != "xyes"; then
1121 AC_CHECK_LIB(sunmath, aintl, [ AC_DEFINE(HAVE_AINTL) LIBS="$LIBS -lsunmath"])
1124 dnl ****************************
1125 dnl *** Look for /dev/random ***
1126 dnl ****************************
1128 AC_MSG_CHECKING([if usage of random device is requested])
1129 AC_ARG_ENABLE(dev-random,
1130 [ --disable-dev-random disable the use of the random device],
1131 try_dev_random=$enableval, try_dev_random=yes)
1132 AC_MSG_RESULT($try_dev_random)
1136 NAME_DEV_RANDOM="/dev/srandom"
1139 dnl Win32 does not have /dev/random, they have their own method...
1141 *-*-mingw*|*-*-cygwin*)
1142 ac_cv_have_dev_random=no
1145 dnl Everywhere else, it's /dev/random
1148 NAME_DEV_RANDOM="/dev/random"
1152 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM")
1154 dnl Now check if the device actually exists
1156 if test "x$try_dev_random" = "xyes"; then
1157 AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
1158 [if test -r "$NAME_DEV_RANDOM" ; then
1159 ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
1160 if test "x$ac_cv_have_dev_random" = "xyes"; then
1161 AC_DEFINE(HAVE_CRYPT_RNG)
1164 AC_MSG_CHECKING(for random device)
1165 ac_cv_have_dev_random=no
1166 AC_MSG_RESULT(has been disabled)
1169 if test "x$platform_win32" = "xyes"; then
1170 AC_DEFINE(HAVE_CRYPT_RNG)
1173 if test "x$ac_cv_have_dev_random" = "xno" \
1174 && test "x$platform_win32" = "xno"; then
1177 *** A system-provided entropy source was not found on this system.
1178 *** Because of this, the System.Security.Cryptography random number generator
1179 *** will throw a NotImplemented exception.
1181 *** If you are seeing this message, and you know your system DOES have an
1182 *** entropy collection in place, please contact <crichton@gimp.org> and
1183 *** provide information about the system and how to access the random device.
1185 *** Otherwise you can install either egd or prngd and set the environment
1186 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
1190 AC_MSG_CHECKING([if inter-process shared handles are requested])
1191 AC_ARG_ENABLE(shared-handles, [ --disable-shared-handles disable inter-process shared handles], try_shared_handles=$enableval, try_shared_handles=yes)
1192 AC_MSG_RESULT($try_shared_handles)
1193 if test "x$try_shared_handles" != "xyes"; then
1194 AC_DEFINE(DISABLE_SHARED_HANDLES)
1195 AC_SUBST(DISABLE_SHARED_HANDLES)
1206 AC_ARG_WITH(icu, [ --with-icu=yes/no],
1207 if test x$with_icu = xno; then
1209 AC_MSG_RESULT(Will not probe for ICU)
1214 AC_PATH_PROG(ICU_CONFIG, icu-config, no)
1215 if test "x$ICU_CONFIG" = "xno" -o ! -x "$ICU_CONFIG"; then
1216 AC_MSG_WARN([Only invariant locale available; install ICU for I18N support])
1217 enable_icu="no, if you want full i18n support download it from: http://oss.software.ibm.com/icu/index.html"
1219 enable_icu="yes. Version: `$ICU_CONFIG --version`"
1221 ICU_CFLAGS=`$ICU_CONFIG --cppflags`
1222 ICU_LIBS=`$ICU_CONFIG --ldflags`
1225 AC_SUBST(ICU_CFLAGS)
1229 ACCESS_UNALIGNED="yes"
1237 # mips-sgi-irix5.* | mips-sgi-irix6.*)
1239 # ACCESS_UNALIGNED="no"
1247 x86_64-*-* | amd64-*-*)
1254 if test "x$ac_cv_sizeof_void_p" = "x8"; then
1261 ACCESS_UNALIGNED="no"
1266 alpha*-*-linux* | alpha*-*-osf*)
1268 ACCESS_UNALIGNED="no"
1272 # ia64-*-linux* | ia64-*-hpux*)
1276 # ACCESS_UNALIGNED="no";
1277 # case "$host_os" in
1278 # linux*) LIBC="libc.so.6.1";;
1279 # hpux*) LIBC="libc.so.1";;
1285 hppa2.0w-hp-hpux11.00 | hppa64-hp-hpux11.00)
1289 ACCESS_UNALIGNED="no"
1294 ACCESS_UNALIGNED="no"
1296 macppc-*-openbsd* | powerpc-*-linux* | powerpc-*-openbsd* | \
1297 powerpc-*-sysv* | powerpc-*-darwin*)
1303 arm-*-linux-* | armv4l-*-linux-*)
1306 ACCESS_UNALIGNED="no"
1311 ACCESS_UNALIGNED="no"
1317 ACCESS_UNALIGNED="no"
1322 AC_ARG_WITH(jit, [ --with-jit=yes,no If you want to build scripts that default to the JIT],[
1323 if test x$withval = xyes; then
1331 if test x$JIT_SUPPORTED = xyes; then
1332 if $jit_wanted; then
1334 jit_status="Building and using the JIT"
1336 jit_status="Building the JIT, defaulting to the interpreter"
1339 jit_status="interpreter"
1342 AM_CONDITIONAL(USE_JIT, test x$USEJIT = xtrue)
1350 INTL="libintl.dylib"
1367 if test "x$TARGET" != "xAMD64"; then
1368 # valgrind headers don't compile under x86-64
1369 AC_CHECK_HEADERS(valgrind/memcheck.h)
1372 if test "x$TARGET" = "xAMD64" -o "x$TARGET" = "xX86"; then
1373 if test "x$with_tls" = "x__thread"; then
1375 # On some linux distributions, TLS works in executables, but linking
1376 # against a shared library containing TLS fails with:
1377 # undefined reference to `__tls_get_addr'
1379 rm -f conftest.c conftest.so conftest
1380 echo "static __thread int foo; void main () { foo = 5; }" > conftest.c
1381 gcc -fPIC --shared -o conftest.so conftest.c > /dev/null 2>&1
1382 gcc -o conftest conftest.so > /dev/null 2>&1
1383 if test ! -f conftest; then
1384 AC_MSG_WARN([Disabling usage of __thread.]);
1387 rm -f conftest.c conftest.so conftest
1391 if test "x$with_tls" = "x__thread"; then
1392 AC_DEFINE(HAVE_KW_THREAD)
1393 # Pass the information to libgc
1394 CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
1398 if test ${TARGET} = ARM; then
1399 dnl ******************************************
1400 dnl *** Check to see what FPU is available ***
1401 dnl ******************************************
1402 AC_MSG_CHECKING(which FPU to use)
1404 AC_TRY_COMPILE([], [
1405 __asm__ ("ldfd f0, [r0]");
1407 AC_TRY_COMPILE([], [
1408 __asm__ ("fldd d0, [r0]");
1409 ], fpu=VFP, fpu=NONE)
1413 CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu"
1417 if test ${TARGET} = unknown; then
1418 CPPFLAGS="$CPPFLAGS -DNO_PORT"
1419 AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
1422 if test ${ACCESS_UNALIGNED} = no; then
1423 CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
1427 AC_ARG_WITH(preview, [ --with-preview=yes,no If you want to install the 2.0 FX preview],[
1428 if test x$with_preview = xyes; then
1433 AM_CONDITIONAL(INSTALL_2_0, test x$PREVIEW = xyes)
1435 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
1436 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
1437 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
1438 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
1439 AM_CONDITIONAL(X86, test x$TARGET = xX86)
1440 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
1441 AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA)
1442 AM_CONDITIONAL(IA64, test x$TARGET = xIA64)
1443 AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
1444 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
1445 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
1446 AM_CONDITIONAL(S390, test x$TARGET = xS390)
1447 AM_CONDITIONAL(S390x, test x$TARGET = xS390x)
1448 AM_CONDITIONAL(HPPA, test x$TARGET = xHPPA)
1450 AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
1451 AM_CONDITIONAL(INCLUDED_LIBGC, test x$gc = xincluded)
1456 AC_SUBST(arch_target)
1467 mono/metadata/Makefile
1472 mono/os/win32/Makefile
1473 mono/os/unix/Makefile
1474 mono/arch/x86/Makefile
1475 mono/arch/amd64/Makefile
1476 mono/arch/hppa/Makefile
1477 mono/arch/ppc/Makefile
1478 mono/arch/sparc/Makefile
1479 mono/arch/s390/Makefile
1480 mono/arch/s390x/Makefile
1481 mono/arch/arm/Makefile
1482 mono/arch/alpha/Makefile
1483 mono/interpreter/Makefile
1485 mono/tests/tests-config
1486 mono/benchmark/Makefile
1487 mono/monoburg/Makefile
1488 mono/monograph/Makefile
1489 mono/io-layer/Makefile
1490 mono/handles/Makefile
1492 mono/profiler/Makefile
1495 runtime/net_1_1/Makefile
1496 runtime/net_2_0/Makefile
1502 data/net_1_1/Makefile
1503 data/net_2_0/Makefile
1509 tools/locale-builder/Makefile
1513 mcs source: $mcs_topdir
1517 SIGALTSTACK: $with_sigaltstack
1520 JNI support: $jdk_headers_found