Speed up the sigaltstack configure test.
[mono.git] / configure.in
1 # Process this file with autoconf to produce a configure script.
2 #AC_PREREQ([2.62])
3
4 AC_INIT(mono, [3.0.1],
5         [http://bugzilla.xamarin.com/enter_bug.cgi?classification=Mono])
6
7 AC_CONFIG_SRCDIR([README])
8 AC_CONFIG_MACRO_DIR([m4])
9 AC_CANONICAL_SYSTEM
10 AC_CANONICAL_HOST
11
12 # Gross hack to enable 'make dist' on automake 1.9+tar 1.14.
13 # The extra brackets are to foil regex-based scans.
14 m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
15
16 AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar no-dist-gzip foreign])
17 AM_CONFIG_HEADER([config.h])
18 AM_MAINTAINER_MODE
19
20 API_VER=2.0
21 AC_SUBST(API_VER)
22
23 AC_PROG_LN_S
24
25 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
26
27 # In case of cygwin, override LN_S, irrespective of what it determines.
28 # The build uses cygwin, but the actual runtime doesn't.
29 case $host_os in
30 *cygwin* ) LN_S='cp -p';;
31 esac
32
33 dnl
34 dnl libgc checks
35 dnl
36
37 gc_headers=no
38 gc=included
39 gc_msg="included Boehm"
40 use_included_gc=no
41 libgc_configure_args=
42
43 if test -d $srcdir/libgc ; then
44   gc_default=included
45 else
46   gc_default=boehm
47 fi
48
49 # These variables are the CPPFLAGS/CFLAGS passed to libgc's configure
50 # libgc should inherit the original CFLAGS/CPPFLAGS passed to configure, i.e. -O0
51 CPPFLAGS_FOR_LIBGC=$CPPFLAGS
52 CFLAGS_FOR_LIBGC=$CFLAGS
53 CPPFLAGS_FOR_EGLIB=$CPPFLAGS
54 CFLAGS_FOR_EGLIB=$CFLAGS
55
56 #
57 # These are the flags that need to be stored in the mono.pc file for 
58 # compiling code that will embed Mono
59 #
60 libmono_cflags=""
61 libmono_ldflags=""
62 AC_SUBST(libmono_cflags)
63 AC_SUBST(libmono_ldflags)
64
65 # Variable to have relocatable .pc files (lib, or lib64)
66 reloc_libdir=`basename ${libdir}`
67 AC_SUBST(reloc_libdir)
68
69 dnl if linker handles the version script
70 no_version_script=no
71
72 # Set to yes if Unix sockets cannot be created in an anonymous namespace
73 need_link_unlink=no
74
75 # Thread configuration inspired by sleepycat's db
76 AC_MSG_CHECKING([host platform characteristics])
77 libgc_threads=no
78 has_dtrace=no
79 parallel_mark=yes
80 ikvm_native=yes
81
82 case "$host" in
83         powerpc*-*-linux*)
84                 # https://bugzilla.novell.com/show_bug.cgi?id=504411
85                 disable_munmap=yes
86         ;;
87 esac
88
89 host_win32=no
90 target_win32=no
91 platform_android=no
92 platform_darwin=no
93 case "$host" in
94         *-mingw*|*-*-cygwin*)
95                 AC_DEFINE(HOST_WIN32,1,[Host Platform is Win32])
96                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
97                 AC_DEFINE(PLATFORM_NO_SYMLINKS,1,[This platform does not support symlinks])
98                 host_win32=yes
99                 mono_cv_clang=no
100                 if test "x$cross_compiling" = "xno"; then
101                         target_win32=yes
102                         if test "x$host" == "x$build" -a "x$host" == "x$target"; then
103                                 AC_DEFINE(TARGET_WIN32,1,[Target OS is Win32])
104                         fi
105                         #
106                         # gcc-3/g++-3 are from the gcc-core/gcc-g++ cygwin packages.
107                         # Other gcc packages will not work:
108                         # - the gcc-4 packages no longer support -mno-cygwin
109                         # - the mingw-gcc packages produce executables which depends on a libgcc<...>
110                         # dll, which means we would have to distribute that file too.
111                         #
112                         if test "x$CC" != "x"; then
113                                 AC_ERROR(Don't set CC. mono can only be compiled with gcc-3 from the 'gcc-core' package)
114                         fi
115                         CC="gcc-3.exe -mno-cygwin -g"
116                         CXX="g++-3.exe -mno-cygwin -g"
117                         # So libgc configure gets -mno-cygwin
118                         export CC
119                         export CXX
120                         CFLAGS_FOR_EGLIB="$CFLAGS_FOR_EGLIB -mno-cygwin"
121                 else
122                         target_win32=yes
123                         AC_DEFINE(TARGET_WIN32,1,[Target OS is Win32/MinGW])
124                         AC_DEFINE(MINGW_CROSS_COMPILE,1,[Cross-compiling using MinGW])
125                 fi
126                 HOST_CC="gcc"
127                 # Windows 2000 is required that includes Internet Explorer 5.01
128                 CPPFLAGS="$CPPFLAGS -DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -D_WIN32_IE=0x0501 -D_UNICODE -DUNICODE -DWIN32_THREADS -DFD_SETSIZE=1024"
129                 LDFLAGS="$LDFLAGS -lmswsock -lws2_32 -lole32 -loleaut32 -lpsapi -lversion -ladvapi32 -lwinmm -lkernel32"
130                 libmono_cflags="-mno-cygwin -mms-bitfields -mwindows"
131                 libmono_ldflags="-mno-cygwin -mms-bitfields -mwindows"
132                 libdl=
133                 libgc_threads=win32
134                 gc_default=included
135                 with_sigaltstack=no
136                 LN_S=cp
137                 # This forces libgc to use the DllMain based thread registration code on win32
138                 libgc_configure_args="$libgc_configure_args --enable-win32-dllmain=yes"
139                 ;;
140         *-*-*netbsd*)
141                 host_win32=no
142                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DGC_NETBSD_THREADS -D_GNU_SOURCE"
143                 libmono_cflags="-D_REENTRANT"
144                 LDFLAGS="$LDFLAGS -pthread"
145                 CPPFLAGS="$CPPFLAGS -DPLATFORM_BSD"
146                 libmono_ldflags="-pthread"
147                 need_link_unlink=yes
148                 libdl="-ldl"
149                 libgc_threads=pthreads
150                 with_sigaltstack=no
151                 use_sigposix=yes
152                 ;;
153         *-*-*freebsd*)
154                 host_win32=no
155                 if test "x$PTHREAD_CFLAGS" = "x"; then
156                         CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
157                         libmono_cflags=
158                 else
159                         CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
160                         libmono_cflags="$PTHREAD_CFLAGS"
161                 fi
162                 if test "x$PTHREAD_LIBS" = "x"; then
163                         LDFLAGS="$LDFLAGS -pthread"
164                         libmono_ldflags="-pthread"
165                 else
166                         LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
167                         libmono_ldflags="$PTHREAD_LIBS"
168                 fi
169                 CPPFLAGS="$CPPFLAGS -DPLATFORM_BSD"
170                 need_link_unlink=yes
171                 AC_DEFINE(PTHREAD_POINTER_ID, 1, [pthread is a pointer])
172                 libdl=
173                 libgc_threads=pthreads
174                 # This doesn't seem to work as of 7.0 on amd64
175                 with_sigaltstack=no
176 # TLS is only partially implemented on -CURRENT (compiler support
177 # but NOT library support)
178 #
179                 with_tls=pthread
180                 use_sigposix=yes
181                 ;;
182         *-*-*openbsd*)
183                 host_win32=no
184                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_OPENBSD_THREADS -DPLATFORM_BSD -D_REENTRANT -DUSE_MMAP"
185                 if test "x$disable_munmap" != "xyes"; then
186                 CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
187                 fi
188                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
189                 LDFLAGS="$LDFLAGS -pthread"
190                 need_link_unlink=yes
191                 AC_DEFINE(PTHREAD_POINTER_ID)
192                 libdl=
193                 gc_default=boehm
194                 libgc_threads=pthreads
195                 with_sigaltstack=no
196                 use_sigposix=yes
197                 ;;
198         *-*-linux-android*)
199                 host_win32=no
200                 platform_android=yes
201                 AC_DEFINE(PLATFORM_ANDROID,1,[Targeting the Android platform])
202                 AC_DEFINE(TARGET_ANDROID,1,[Targeting the Android platform])
203
204                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
205                 if test "x$disable_munmap" != "xyes"; then
206                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
207                 fi
208                 libmono_cflags="-D_REENTRANT"
209                 libdl="-ldl"
210                 libgc_threads=pthreads
211                 use_sigposix=yes
212
213                 with_tls=pthread
214                 with_sigaltstack=no
215                 with_static_mono=no
216
217                 # Android doesn't support boehm, as it's missing <link.h>
218                 support_boehm=no
219                 with_gc=sgen
220
221                 # isinf(3) requires -lm; see isinf check below
222                 LDFLAGS="$LDFLAGS -lm"
223
224                 # Bionic's <pthread.h> sets PTHREAD_STACK_MIN=2*PAGE_SIZE; doesn't define
225                 # PAGE_SIZE; breaks mono/io-layer/collection.c
226                 # Bionic doesn't provide S_IWRITE; breaks io-layer/io.c
227                 CFLAGS="$CFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
228                 CXXFLAGS="$CXXFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
229
230                 # to bypass the underscore linker check, can't work when cross-compiling
231                 mono_cv_uscore=yes
232                 mono_cv_clang=no
233                 ;;
234         *-*-linux*)
235                 host_win32=no
236                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
237                 if test "x$disable_munmap" != "xyes"; then
238                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
239                 fi
240                 libmono_cflags="-D_REENTRANT"
241                 libdl="-ldl"
242                 libgc_threads=pthreads
243                 use_sigposix=yes
244                 ;;
245         *-*-nacl*)
246                 host_win32=no
247                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
248                 if test "x$disable_munmap" != "xyes"; then
249                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
250                 fi
251                 libmono_cflags="-D_REENTRANT"
252                 libdl=
253                 libgc_threads=pthreads
254                 gc_default=boehm
255                 use_sigposix=yes
256                 ikvm_native=no
257                 AC_DEFINE(DISABLE_SOCKETS,1,[Disable sockets support])
258                 AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support])
259                 ;;
260         *-*-hpux*)
261                 host_win32=no
262                 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
263                 # +ESdbgasm only valid on bundled cc on RISC
264                 # silently ignored for ia64
265                 if test $GCC != "yes"; then
266                         CFLAGS="$CFLAGS +ESdbgasm"
267                         # Arrange for run-time dereferencing of null
268                         # pointers to produce a SIGSEGV signal.
269                         LDFLAGS="$LDFLAGS -z"
270                 fi
271                 CFLAGS="$CFLAGS +ESdbgasm"
272                 LDFLAGS="$LDFLAGS -z"
273                 libmono_cflags="-D_REENTRANT"
274                 libmono_ldflags="-lpthread"
275                 libgc_threads=pthreads
276                 need_link_unlink=yes
277                 use_sigposix=yes
278                 ;;
279         *-*-solaris*)
280                 host_win32=no
281                 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_MMAP -DUSE_MUNMAP -DPLATFORM_SOLARIS"
282                 need_link_unlink=yes
283                 libmono_cflags="-D_REENTRANT"
284                 libgc_threads=pthreads
285                 # This doesn't seem to work on solaris/x86, but the configure test runs
286                 with_tls=pthread
287                 has_dtrace=yes
288                 use_sigposix=yes
289                 enable_solaris_tar_check=yes
290                 ;;
291         *-*-darwin*)
292                 parallel_mark="Disabled_Currently_Hangs_On_MacOSX"
293                 host_win32=no
294                 platform_darwin=yes
295                 target_mach=yes
296                 CPPFLAGS="$CPPFLAGS -no-cpp-precomp -D_THREAD_SAFE -DGC_MACOSX_THREADS -DPLATFORM_MACOSX -DUSE_MMAP -DUSE_MUNMAP"
297                 CPPFLAGS="$CPPFLAGS -DGetCurrentProcess=MonoGetCurrentProcess -DGetCurrentThread=MonoGetCurrentThread -DCreateEvent=MonoCreateEvent"
298                 libmono_cflags="-D_THREAD_SAFE"
299                 LDFLAGS="$LDFLAGS -pthread"
300                 libmono_ldflags="-pthread"
301                 need_link_unlink=yes
302                 AC_DEFINE(PTHREAD_POINTER_ID)
303                 AC_DEFINE(USE_MACH_SEMA, 1, [...])
304                 no_version_script=yes
305                 libdl=
306                 libgc_threads=pthreads
307                 has_dtrace=yes
308                 if test "x$cross_compiling" = "xyes"; then
309                         has_broken_apple_cpp=yes
310                 fi
311                 dnl Snow Leopard is horribly broken -- it reports itself as i386-apple-darwin*, but
312                 dnl its gcc defaults to 64-bit mode.  They have also deprecated the usage of ucontext
313                 dnl we need to set some flags to build our 32-bit binaries on 10.6 properly
314                 case "$host" in
315                         dnl Snow Leopard and newer config.guess reports as this
316                         i*86-*-darwin*)
317                                 BROKEN_DARWIN_FLAGS="-arch i386 -D_XOPEN_SOURCE -mmacosx-version-min=10.5"
318                                 CPPFLAGS="$CPPFLAGS $BROKEN_DARWIN_FLAGS"
319                                 CFLAGS="$CFLAGS $BROKEN_DARWIN_FLAGS"
320                                 CXXFLAGS="$CXXFLAGS $BROKEN_DARWIN_FLAGS"
321                                 CCASFLAGS="$CCASFLAGS $BROKEN_DARWIN_FLAGS"
322                                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC $BROKEN_DARWIN_FLAGS"
323                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC $BROKEN_DARWIN_FLAGS"
324                                 CPPFLAGS_FOR_EGLIB="$CPPFLAGS_FOR_EGLIB $BROKEN_DARWIN_FLAGS"
325                                 CFLAGS_FOR_EGLIB="$CFLAGS_FOR_EGLIB $BROKEN_DARWIN_FLAGS"
326                                 ;;
327                 esac
328                 ;;
329         *-*-haiku*)
330                 host_win32=no
331                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_THREAD_SAFE"
332                 libmono_cflags="-D_REENTRANT -D_THREAD_SAFE"
333                 libdl=
334                 LIBS="$LIBS -lnetwork"
335                 need_link_unlink=yes
336                 AC_DEFINE(PTHREAD_POINTER_ID)
337                 libgc_threads=pthreads
338                 use_sigposix=yes
339                 ;;
340         *)
341                 AC_MSG_WARN([*** Please add $host to configure.in checks!])
342                 host_win32=no
343                 libdl="-ldl"
344                 ;;
345 esac
346 AC_MSG_RESULT(ok)
347
348 if test x$need_link_unlink = xyes; then
349    AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
350 fi
351
352 AM_CONDITIONAL(HOST_WIN32, test x$host_win32 = xyes)
353 AM_CONDITIONAL(TARGET_WIN32, test x$target_win32 = xyes)
354 AM_CONDITIONAL(PLATFORM_LINUX, echo x$target_os | grep -q linux)
355 AM_CONDITIONAL(PLATFORM_DARWIN, test x$platform_darwin = xyes)
356 AM_CONDITIONAL(PLATFORM_SIGPOSIX, test x$use_sigposix = xyes)
357 AM_CONDITIONAL(PLATFORM_ANDROID, test x$platform_android = xyes)
358
359 AC_CHECK_TOOL(CC, gcc, gcc)
360 AC_PROG_CC
361 AC_CHECK_TOOL(CXX, g++, g++)
362 AC_PROG_CXX
363 AM_PROG_AS
364 AM_PROG_CC_STDC
365 AC_PROG_INSTALL
366 AC_PROG_AWK
367 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
368 : ${CCAS='$(CC)'}
369 # Set ASFLAGS if not already set.
370 : ${CCASFLAGS='$(CFLAGS)'}
371 AC_SUBST(CCAS)
372 AC_SUBST(CCASFLAGS)
373
374 # AC_PROG_CXX helpfully sets CXX to g++ even if no c++ compiler is found so check
375 # GXX instead. See http://lists.gnu.org/archive/html/bug-autoconf/2002-04/msg00056.html
376 if test "x$CXX" = "xg++"; then
377         if test "x$GXX" != "xyes"; then
378                 # automake/libtool is so broken, it requires g++ even if the c++ sources
379                 # are inside automake conditionals
380                 AC_MSG_ERROR([You need to install g++])
381         fi
382 fi
383
384 dnl may require a specific autoconf version
385 dnl AC_PROG_CC_FOR_BUILD
386 dnl CC_FOR_BUILD not automatically detected
387 CC_FOR_BUILD=$CC
388 CFLAGS_FOR_BUILD=$CFLAGS
389 BUILD_EXEEXT=
390 if test "x$cross_compiling" = "xyes"; then
391         CC_FOR_BUILD=cc
392         CFLAGS_FOR_BUILD=
393         BUILD_EXEEXT=""
394 fi
395 AC_SUBST(CC_FOR_BUILD)
396 AC_SUBST(CFLAGS_FOR_BUILD)
397 AC_SUBST(HOST_CC)
398 AC_SUBST(BUILD_EXEEXT)
399
400 AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes])
401 AM_CONDITIONAL(USE_BATCH_FILES, [test x$host_win32 = xyes -a x$cross_compiling = xyes])
402
403 # Set STDC_HEADERS
404 AC_HEADER_STDC
405 AC_LIBTOOL_WIN32_DLL
406 # This causes monodis to not link correctly
407 #AC_DISABLE_FAST_INSTALL
408 AM_PROG_LIBTOOL
409 # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building.
410 DOLT
411
412 export_ldflags=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
413 AC_SUBST(export_ldflags)
414
415 # Test whenever ld supports -version-script
416 AC_PROG_LD
417 AC_PROG_LD_GNU
418 if test "x$lt_cv_prog_gnu_ld" = "xno"; then
419    no_version_script=yes
420 fi
421
422 AM_ICONV()
423
424 AM_CONDITIONAL(NO_VERSION_SCRIPT, test x$no_version_script = xyes)
425
426 AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h sys/utime.h semaphore.h sys/un.h linux/rtc.h sys/syscall.h sys/mkdev.h sys/uio.h sys/param.h libproc.h)
427 AC_CHECK_HEADERS(sys/param.h sys/socket.h sys/ipc.h sys/sem.h sys/utsname.h alloca.h ucontext.h pwd.h sys/select.h netinet/tcp.h netinet/in.h unistd.h sys/types.h link.h asm/sigcontext.h sys/inotify.h)
428 AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h],
429                   [], [], [#include <stddef.h>
430                   #include <sys/socket.h>
431                   #include <linux/socket.h>])
432
433 AC_CHECK_HEADERS(sys/user.h, [], [],
434 [
435 #ifdef HAVE_SYS_PARAM_H
436 # include <sys/param.h>
437 #endif
438 ])
439
440 AC_CHECK_HEADER(zlib.h, [have_zlib=yes], [have_zlib=no])
441 if test x$have_zlib = xyes; then
442    AC_TRY_COMPILE([#include <zlib.h>], [
443    #if defined(ZLIB_VERNUM) && (ZLIB_VERNUM >= 0x1230)
444    return 0;
445    #else
446    #error No good zlib found
447    #endif
448    ],[
449         AC_MSG_RESULT(Using system zlib)
450         zlib_msg="system zlib"
451         AC_DEFINE(HAVE_SYS_ZLIB,1,[Have system zlib])
452    ],[
453         AC_MSG_RESULT(Using embedded zlib)
454         have_zlib=no
455         zlib_msg="bundled zlib"
456    ])
457 fi
458
459 AM_CONDITIONAL(HAVE_ZLIB, test x$have_zlib = xyes)
460 AC_DEFINE(HAVE_ZLIB,1,[Have system zlib])
461
462 # for mono/metadata/debug-symfile.c
463 AC_CHECK_HEADERS(elf.h)
464
465 # for support
466 AC_CHECK_HEADERS(poll.h)
467 AC_CHECK_HEADERS(sys/poll.h)
468 AC_CHECK_HEADERS(sys/wait.h)
469 AC_CHECK_HEADERS(grp.h)
470 AC_CHECK_HEADERS(syslog.h)
471
472 # for mono/dis
473 AC_CHECK_HEADERS(wchar.h)
474 AC_CHECK_HEADERS(ieeefp.h)
475 AC_MSG_CHECKING(for isinf)
476 AC_TRY_LINK([#include <math.h>], [
477         int f = isinf (1);
478 ], [
479         AC_MSG_RESULT(yes)
480         AC_DEFINE(HAVE_ISINF, 1, [isinf available])
481 ], [
482         # We'll have to use signals
483         AC_MSG_RESULT(no)
484 ])
485
486 # for Linux statfs support
487 AC_CHECK_HEADERS(linux/magic.h)
488
489 # not 64 bit clean in cross-compile
490 AC_CHECK_SIZEOF(void *, 4)
491
492 WARN=''
493 if test x"$GCC" = xyes; then
494         WARN='-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wwrite-strings -Wno-switch-enum'
495                 # The runtime code does not respect ANSI C strict aliasing rules
496                 CFLAGS="$CFLAGS -fno-strict-aliasing"
497
498                 ORIG_CFLAGS=$CFLAGS
499                 CFLAGS="$CFLAGS -Wdeclaration-after-statement"
500                 AC_MSG_CHECKING(for -Wdeclaration-after-statement option to gcc)
501                 AC_TRY_COMPILE([],[
502                                 return 0;
503                 ], [
504                    AC_MSG_RESULT(yes)
505                 ], [
506                    AC_MSG_RESULT(no)
507                    CFLAGS=$ORIG_CFLAGS
508                 ])
509
510                 ORIG_CFLAGS=$CFLAGS
511                 # Check for the normal version, since gcc ignores unknown -Wno options
512                 CFLAGS="$CFLAGS -Wunused-but-set-variable"
513                 AC_MSG_CHECKING(for -Wno-unused-but-set-variable option to gcc)
514                 AC_TRY_COMPILE([],[
515                                 return 0;
516                 ], [
517                    AC_MSG_RESULT(yes)
518                    CFLAGS="$ORIG_CFLAGS -Wno-unused-but-set-variable"
519                 ], [
520                    AC_MSG_RESULT(no)
521                    CFLAGS=$ORIG_CFLAGS
522                 ])
523 else
524         # The Sun Forte compiler complains about inline functions that access static variables
525         # so disable all inlining.
526         case "$host" in
527         *-*-solaris*)
528                 CFLAGS="$CFLAGS -Dinline="
529                 ;;
530         esac
531 fi
532 CFLAGS="$CFLAGS -g $WARN"
533 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -g"
534
535 AC_CACHE_CHECK([for clang],
536         mono_cv_clang,[
537         AC_TRY_RUN([
538                 int main () {
539                         #ifdef __clang__
540                                 return 0;
541                         #else
542                                 return 1;
543                         #endif
544                 }
545         ],
546         [mono_cv_clang=yes],
547         [mono_cv_clang=no],
548         [])
549 ])
550
551 # Where's the 'mcs' source tree?
552 if test -d $srcdir/mcs; then
553   mcsdir=mcs
554 else
555   mcsdir=../mcs
556 fi
557
558 AC_ARG_WITH(mcs-path, [  --with-mcs-path=/path/to/mcs      Specify an alternate mcs source tree],
559         if test x$with_mcs_path != "x" -a -d $with_mcs_path ; then
560                 mcsdir=$with_mcs_path
561         fi
562 )
563
564 #
565 # A sanity check to catch cases where the package was unpacked
566 # with an ancient tar program (Solaris)
567 #
568 AC_ARG_ENABLE(solaris-tar-check,
569 [  --disable-solaris-tar-check    disable solaris tar check],
570    do_solaris_tar_check=no, do_solaris_tar_check=yes)
571
572 if test x"$do_solaris_tar_check" = xyes -a x"$enable_solaris_tar_check" = xyes; then
573         AC_MSG_CHECKING(integrity of package)
574         if test -f $mcsdir/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs
575         then
576                 AC_MSG_RESULT(ok)
577         else
578                 errorm="Your mono distribution is incomplete;  if unpacking from a tar file, make sure you use GNU tar;  see http://www.mono-project.com/IncompletePackage for more details"
579                 AC_MSG_ERROR([$errorm])
580         fi
581 fi
582
583 if test "x$with_mcs_path" != "x"; then
584 mcs_topdir=$(cd "$mcsdir" && pwd)
585 mcs_topdir_from_srcdir=$mcs_topdir
586 else
587 mcs_topdir=$(cd "$srcdir/$mcsdir" && pwd)
588 mcs_topdir_from_srcdir='$(top_builddir)'/$mcsdir
589 fi
590
591 # Convert mcs_topdir* paths to Windows syntax.
592 if test x$cross_compiling$host_win32 = xnoyes; then
593   mcs_topdir=$(cygpath -m $mcs_topdir)
594   case $mcs_topdir_from_srcdir in
595     /cygdrive/*)
596         mcs_topdir_from_srcdir=$(cygpath -m $mcs_topdir_from_srcdir)
597         ;;
598   esac
599 fi
600
601 AC_SUBST([mcs_topdir])
602 AC_SUBST([mcs_topdir_from_srcdir])
603
604 # Where's the 'olive' source tree?
605 if test -d $srcdir/olive; then
606   olivedir=olive
607 else
608   olivedir=../olive
609 fi
610
611 if test -d $srcdir/$olivedir; then
612 olive_topdir='$(top_srcdir)/'$olivedir
613 fi
614
615 # gettext: prepare the translation directories. 
616 # we do not configure the full gettext, as we consume it dynamically from C#
617 AM_PO_SUBDIRS
618
619 if test "x$USE_NLS" = "xyes"; then
620    AC_CHECK_PROG(HAVE_MSGFMT, msgfmt,yes,no)
621
622    if test "x$HAVE_MSGFMT" = "xno"; then
623           AC_MSG_ERROR([msgfmt not found. You need to install the 'gettext' package, or pass --enable-nls=no to configure.])
624    fi
625 fi
626
627 AC_ARG_WITH([libgdiplus], 
628         [  --with-libgdiplus=installed|sibling|<path>   Override the libgdiplus used for System.Drawing tests (defaults to installed)], 
629         [], [with_libgdiplus=installed])
630
631 case $with_libgdiplus in
632 no|installed) libgdiplus_loc= ;;
633 yes|sibling) libgdiplus_loc=`cd ../libgdiplus && pwd`/src/libgdiplus.la ;;
634 /*) libgdiplus_loc=$with_libgdiplus ;;
635 *) libgdiplus_loc=`pwd`/$with_libgdiplus ;;
636 esac
637 AC_SUBST([libgdiplus_loc])
638
639 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
640
641 pkg_config_path=
642 AC_ARG_WITH(crosspkgdir, [  --with-crosspkgdir=/path/to/pkg-config/dir      Change pkg-config dir to custom dir],
643         if test x$with_crosspkgdir = "x"; then
644                 if test -s $PKG_CONFIG_PATH; then
645                         pkg_config_path=$PKG_CONFIG_PATH
646                 fi
647         else
648                 pkg_config_path=$with_crosspkgdir
649                 PKG_CONFIG_PATH=$pkg_config_path
650                 export PKG_CONFIG_PATH
651         fi
652 )
653
654 ac_configure_args="$ac_configure_args \"CPPFLAGS_FOR_EGLIB=$EGLIB_CPPFLAGS\" \"CFLAGS_FOR_EGLIB=$CFLAGS_FOR_EGLIB\""
655 AC_CONFIG_SUBDIRS(eglib)
656
657 GLIB_CFLAGS='-I$(top_srcdir)/eglib/src -I$(top_builddir)/eglib/src'
658 GLIB_LIBS='-L$(top_builddir)/eglib/src -leglib -lm'
659 BUILD_GLIB_CFLAGS="$GLIB_CFLAGS"
660 BUILD_GLIB_LIBS="$GLIB_LIBS"
661 GMODULE_CFLAGS="$GLIB_CFLAGS"
662 GMODULE_LIBS="$GLIB_LIBS"
663   
664 AC_SUBST(GLIB_CFLAGS)
665 AC_SUBST(GLIB_LIBS)
666 AC_SUBST(GMODULE_CFLAGS)
667 AC_SUBST(GMODULE_LIBS)
668 AC_SUBST(BUILD_GLIB_CFLAGS)
669 AC_SUBST(BUILD_GLIB_LIBS)
670
671 AC_ARG_WITH(gc,   [  --with-gc=boehm,included,none  Controls the Boehm GC config, default=included],[gc=$with_gc],[gc=$gc_default])
672
673 # Enable support for fast thread-local storage
674 # Some systems have broken support, so we allow to disable it.
675 AC_ARG_WITH(tls, [  --with-tls=__thread,pthread    select Thread Local Storage implementation (defaults to __thread)],[],[with_tls=__thread])
676
677 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
678 # This does not work on some platforms (bug #55253)
679 AC_ARG_WITH(sigaltstack, [  --with-sigaltstack=yes,no      enable/disable support for sigaltstack (defaults to yes)],[],[with_sigaltstack=yes])
680
681 AC_ARG_WITH(static_mono, [  --with-static_mono=yes,no      link mono statically to libmono (faster) (defaults to yes)],[],[with_static_mono=yes])
682 AC_ARG_WITH(shared_mono, [  --with-shared_mono=yes,no      build a shared libmono library (defaults to yes)],[],[with_shared_mono=yes])
683 # Same as --with-shared_mono=no
684 AC_ARG_ENABLE(libraries, [  --disable-libraries disable the build of libmono], enable_libraries=$enableval, enable_libraries=yes)
685
686 if test "x$enable_static" = "xno"; then
687    with_static_mono=no
688 fi
689
690 if test "x$enable_shared" = "xno"; then
691    with_shared_mono=no
692 fi
693
694 if test "x$enable_libraries" = "xno"; then
695    with_shared_mono=no
696 fi
697
698 AM_CONDITIONAL(DISABLE_LIBRARIES, test x$enable_libraries = xno)
699
700 case $host in
701 *nacl* ) with_shared_mono=yes;;
702 esac
703
704 if test "x$host_win32" = "xyes"; then
705    # Boehm GC requires the runtime to be in its own dll
706    with_static_mono=no
707 fi
708
709 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
710 AM_CONDITIONAL(SHARED_MONO, test x$with_shared_mono != xno)
711 AC_ARG_ENABLE(mcs-build, [  --disable-mcs-build disable the build of the mcs directory], try_mcs_build=$enableval, enable_mcs_build=yes)
712
713 AC_ARG_WITH(xen_opt,   [  --with-xen_opt=yes,no          Enable Xen-specific behaviour (defaults to yes)],[],[with_xen_opt=yes])
714 if test "x$with_xen_opt" = "xyes" -a "x$mono_cv_clang" = "xno"; then
715         AC_DEFINE(MONO_XEN_OPT, 1, [Xen-specific behaviour])
716         ORIG_CFLAGS=$CFLAGS
717         CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
718         AC_MSG_CHECKING(for -mno-tls-direct-seg-refs option to gcc)
719         AC_TRY_COMPILE([], [
720                 return 0;
721         ], [
722            AC_MSG_RESULT(yes)
723            # Pass it to libgc as well
724            CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -mno-tls-direct-seg-refs"
725         ], [
726            AC_MSG_RESULT(no)
727            CFLAGS=$ORIG_CFLAGS
728         ])
729 fi
730
731 AC_ARG_ENABLE(small-config, [  --enable-small-config Enable tweaks to reduce requirements (and capabilities)], enable_small_config=$enableval, enable_small_config=no)
732
733 if test x$enable_small_config = xyes; then
734         AC_DEFINE(MONO_SMALL_CONFIG,1,[Reduce runtime requirements (and capabilities)])
735         CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DSMALL_CONFIG"
736 fi
737
738 AC_ARG_ENABLE(system-aot, [  --enable-system-aot  Enable the Ahead-Of-Time compilation of system assemblies during the build (on by default on some platforms)], enable_system_aot=$enableval, enable_system_aot=default)
739
740 DISABLED_FEATURES=none
741
742 AC_ARG_ENABLE(minimal, [  --enable-minimal=LIST      drop support for LIST subsystems.
743      LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug,
744      reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, simd, soft_debug, normalization, assembly_remapping, shared_perfcounters.],
745 [
746         for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
747                 eval "mono_feature_disable_$feature='yes'"
748         done
749         DISABLED_FEATURES=$enable_minimal
750         disabled="Disabled:      $enable_minimal"
751 ],[])
752
753 AC_DEFINE_UNQUOTED(DISABLED_FEATURES, "$DISABLED_FEATURES", [String of disabled features])
754
755 if test "x$mono_feature_disable_aot" = "xyes"; then
756         AC_DEFINE(DISABLE_AOT_COMPILER, 1, [Disable AOT Compiler])
757         AC_MSG_NOTICE([Disabled AOT compiler])
758 fi
759
760 if test "x$mono_feature_disable_profiler" = "xyes"; then
761         AC_DEFINE(DISABLE_PROFILER, 1, [Disable default profiler support])
762         AC_MSG_NOTICE([Disabled support for the profiler])
763 fi
764 AM_CONDITIONAL(DISABLE_PROFILER, test x$mono_feature_disable_profiler = xyes)
765
766 if test "x$mono_feature_disable_decimal" = "xyes"; then
767         AC_DEFINE(DISABLE_DECIMAL, 1, [Disable System.Decimal support])
768         AC_MSG_NOTICE([Disabled support for decimal])
769 fi
770
771 if test "x$mono_feature_disable_pinvoke" = "xyes"; then
772         AC_DEFINE(DISABLE_PINVOKE, 1, [Disable P/Invoke support])
773         AC_MSG_NOTICE([Disabled support for P/Invoke])
774 fi
775
776 if test "x$mono_feature_disable_debug" = "xyes"; then
777         AC_DEFINE(DISABLE_DEBUG, 1, [Disable runtime debugging support])
778         AC_MSG_NOTICE([Disabled support for runtime debugging])
779 fi
780
781 if test "x$mono_feature_disable_reflection_emit" = "xyes"; then
782         AC_DEFINE(DISABLE_REFLECTION_EMIT, 1, [Disable reflection emit support])
783         mono_feature_disable_reflection_emit_save=yes
784         AC_MSG_NOTICE([Disabled support for Reflection.Emit])
785 fi
786
787 if test "x$mono_feature_disable_reflection_emit_save" = "xyes"; then
788         AC_DEFINE(DISABLE_REFLECTION_EMIT_SAVE, 1, [Disable assembly saving support in reflection emit])
789         AC_MSG_NOTICE([Disabled support for Reflection.Emit.Save])
790 fi
791
792 if test "x$mono_feature_disable_large_code" = "xyes"; then
793         AC_DEFINE(DISABLE_LARGE_CODE, 1, [Disable support for huge assemblies])
794         AC_MSG_NOTICE([Disabled support for large assemblies])
795 fi
796
797 if test "x$mono_feature_disable_logging" = "xyes"; then
798         AC_DEFINE(DISABLE_LOGGING, 1, [Disable support debug logging])
799         AC_MSG_NOTICE([Disabled support for logging])
800 fi
801
802 if test "x$mono_feature_disable_com" = "xyes"; then
803         AC_DEFINE(DISABLE_COM, 1, [Disable COM support])
804         AC_MSG_NOTICE([Disabled COM support])
805 fi
806
807 if test "x$mono_feature_disable_ssa" = "xyes"; then
808         AC_DEFINE(DISABLE_SSA, 1, [Disable advanced SSA JIT optimizations])
809         AC_MSG_NOTICE([Disabled SSA JIT optimizations])
810 fi
811
812 if test "x$mono_feature_disable_generics" = "xyes"; then
813         AC_DEFINE(DISABLE_GENERICS, 1, [Disable generics support])
814         AC_MSG_NOTICE([Disabled Generics Support])
815 fi
816
817 if test "x$mono_feature_disable_shadowcopy" = "xyes"; then
818         AC_DEFINE(DISABLE_SHADOW_COPY, 1, [Disable Shadow Copy for AppDomains])
819         AC_MSG_NOTICE([Disabled Shadow copy for AppDomains])
820 fi
821
822 if test "x$mono_feature_disable_portability" = "xyes"; then
823         AC_DEFINE(DISABLE_PORTABILITY, 1, [Disables the IO portability layer])
824         AC_MSG_NOTICE([Disabled IO Portability layer])
825 fi
826
827 if test "x$mono_feature_disable_attach" = "xyes"; then
828         AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support])
829         AC_MSG_NOTICE([Disabled agent attach])
830 fi
831
832 if test "x$mono_feature_disable_full_messages" = "xyes"; then
833         AC_DEFINE(DISABLE_FULL_MESSAGES, 1, [Disables building in the full table of WAPI messages])
834         AC_MSG_NOTICE([Disabled full messages for Win32 errors, only core message strings shipped])
835 fi
836
837 if test "x$mono_feature_disable_verifier" = "xyes"; then
838         AC_DEFINE(DISABLE_VERIFIER, 1, [Disables the verifier])
839         AC_MSG_NOTICE([Disabled the metadata and IL verifiers])
840 fi
841
842 if test "x$mono_feature_disable_jit" = "xyes"; then
843         AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode will be supported by the runtime.])
844         AC_MSG_NOTICE([Disabled the JIT engine, only full AOT will be supported])
845 fi
846
847 AM_CONDITIONAL(DISABLE_JIT, test x$mono_feature_disable_jit = xyes)
848
849 if test "x$mono_feature_disable_simd" = "xyes"; then
850         AC_DEFINE(DISABLE_SIMD, 1, [Disable SIMD intrinsics related optimizations.])
851         AC_MSG_NOTICE([Disabled SIMD support])
852 fi
853
854 if test "x$mono_feature_disable_soft_debug" = "xyes"; then
855         AC_DEFINE(DISABLE_SOFT_DEBUG, 1, [Disable Soft Debugger Agent.])
856         AC_MSG_NOTICE([Disabled Soft Debugger.])
857 fi
858
859 if test "x$mono_feature_disable_normalization" = "xyes"; then
860         AC_DEFINE(DISABLE_NORMALIZATION, 1, [Disable String normalization support.])
861         AC_MSG_NOTICE([Disabled String normalization support.])
862 fi
863
864 if test "x$mono_feature_disable_assembly_remapping" = "xyes"; then
865         AC_DEFINE(DISABLE_ASSEMBLY_REMAPPING, 1, [Disable assembly remapping.])
866         AC_MSG_NOTICE([Disabled Assembly remapping.])
867 fi
868
869 if test "x$mono_feature_disable_shared_perfcounters" = "xyes"; then
870         AC_DEFINE(DISABLE_SHARED_PERFCOUNTERS, 1, [Disable shared perfcounters.])
871         AC_MSG_NOTICE([Disabled Shared perfcounters.])
872 fi
873
874 AC_ARG_ENABLE(executables, [  --disable-executables disable the build of the runtime executables], enable_executables=$enableval, enable_executables=yes)
875 AM_CONDITIONAL(DISABLE_EXECUTABLES, test x$enable_executables = xno)
876
877 AC_MSG_CHECKING(for visibility __attribute__)
878 AC_COMPILE_IFELSE([
879         AC_LANG_SOURCE([[
880                 void __attribute__ ((visibility ("hidden"))) doit (void) {}
881                 int main () { doit (); return 0; }
882         ]])
883 ], [
884    have_visibility_hidden=yes
885    AC_MSG_RESULT(yes)
886 ], [
887    have_visibility_hidden=no
888    AC_MSG_RESULT(no)
889 ])
890
891 AC_MSG_CHECKING(for deprecated __attribute__)
892 AC_TRY_COMPILE([
893      int doit (void) __attribute__ ((deprecated));
894      int doit (void) { return 0; }
895 ], [
896         return 0;
897 ], [
898    have_deprecated=yes
899    AC_MSG_RESULT(yes)
900 ], [
901    have_deprecated=no
902    AC_MSG_RESULT(no)
903 ])
904
905 AC_ARG_ENABLE(parallel-mark, [  --enable-parallel-mark     Enables GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
906 if test x$enable_parallel_mark = xyes; then
907         libgc_configure_args="$libgc_configure_args --enable-parallel-mark"
908 fi
909
910 AC_ARG_ENABLE(boehm, [  --disable-boehm            Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
911 AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
912
913 dnl
914 dnl Boehm GC configuration
915 dnl
916 LIBGC_CPPFLAGS=
917 LIBGC_LIBS=
918 LIBGC_STATIC_LIBS=
919 libgc_dir=
920 case "x$gc" in
921         xboehm|xbohem|xyes)
922                 AC_CHECK_HEADERS(gc.h gc/gc.h, gc_headers=yes)
923                 AC_CHECK_LIB(gc, GC_malloc, found_boehm="yes",,$libdl)
924
925                 if test "x$found_boehm" != "xyes"; then
926                         AC_MSG_ERROR("GC requested but libgc not found! Install libgc or run configure with --with-gc=none.")
927                 fi
928                 if test "x$gc_headers" != "xyes"; then
929                         AC_MSG_ERROR("GC requested but header files not found! You may need to install them by hand.")
930                 fi
931
932                 LIBGC_LIBS="-lgc $libdl"
933                 LIBGC_STATIC_LIBS="$LIBGC_LIBS"
934                 libmono_ldflags="$libmono_ldflags -lgc"
935                 BOEHM_DEFINES="-DHAVE_BOEHM_GC"
936
937                 # AC_CHECK_FUNCS does not work for some reason...
938                 AC_CHECK_LIB(gc, GC_gcj_malloc, found_gcj_malloc="yes",,$libdl)
939                 if test "x$found_gcj_malloc" = "xyes"; then
940                         BOEHM_DEFINES="-DHAVE_GC_GCJ_MALLOC $BOEHM_DEFINES"
941                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "System Boehm (with typed GC)", [GC description])
942                         gc_msg="System Boehm with typed GC"
943                 else
944                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "System Boehm (no typed GC)", [GC description])
945                         gc_msg="System Boehm (without typed GC)"
946                 fi
947                 AC_CHECK_LIB(gc, GC_enable, found_gc_enable="yes",,$libdl)
948                 if test "x$found_gc_enable" = "xyes"; then
949                         BOEHM_DEFINES="-DHAVE_GC_ENABLE $BOEHM_DEFINES"
950                 fi
951
952                 # check whether we need to explicitly allow
953                 # thread registering
954                 AC_CHECK_LIB(gc, GC_allow_register_threads, found_allow_register_threads="yes",,$libdl)
955                 if test "x$found_allow_register_threads" = "xyes"; then
956                         AC_DEFINE(HAVE_GC_ALLOW_REGISTER_THREADS, 1, [GC requires thread registration])
957                 fi
958
959                 ;;
960
961         xincluded)
962                 use_included_gc=yes
963                 libgc_dir=libgc
964
965                 LIBGC_CPPFLAGS='-I$(top_srcdir)/libgc/include'
966                 LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
967                 LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
968
969                 BOEHM_DEFINES="-DHAVE_BOEHM_GC -DHAVE_GC_H -DUSE_INCLUDED_LIBGC -DHAVE_GC_GCJ_MALLOC -DHAVE_GC_ENABLE"
970
971                 gc_msg="bundled Boehm GC with typed GC"
972                 if test x$enable_parallel_mark = xyes; then
973                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC and Parallel Mark)", [GC description])
974                         gc_msg="$gc_msg and parallel mark"
975                 else
976                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC)", [GC description])
977                 fi
978                 ;;
979
980         xsgen)
981                 AC_MSG_WARN("Use --with-sgen instead, --with-gc= controls Boehm configuration")
982                 ;;
983
984         xnone)
985                 AC_MSG_WARN("Compiling mono without GC.")
986                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "none", [GC description])
987                 AC_DEFINE(HAVE_NULL_GC,1,[No GC support.])
988                 ;;
989         *)
990                 AC_MSG_ERROR([Invalid argument to --with-gc.])
991                 ;;
992 esac
993
994 AC_ARG_WITH(large-heap, [  --with-large-heap=yes,no       Enable support for GC heaps larger than 3GB (defaults to no)], [large_heap=$withval], [large_heap=no])
995 if test "x$large_heap" = "xyes"; then
996    CPPFLAGS="$CPPFLAGS -DLARGE_CONFIG"
997 fi
998
999 AM_CONDITIONAL(INCLUDED_LIBGC, test x$use_included_gc = xyes)
1000 AC_SUBST(LIBGC_CPPFLAGS)
1001 AC_SUBST(LIBGC_LIBS)
1002 AC_SUBST(LIBGC_STATIC_LIBS)
1003 AC_SUBST(libgc_dir)
1004 AC_SUBST(BOEHM_DEFINES)
1005
1006 dnl
1007 dnl End of libgc checks
1008 dnl
1009
1010 dnl *************************************
1011 dnl *** Checks for zero length arrays ***
1012 dnl *************************************
1013 AC_MSG_CHECKING(whether $CC supports zero length arrays)
1014 AC_TRY_COMPILE([
1015         struct s {
1016                 int  length;
1017                 char data [0];
1018         };
1019 ], [], [
1020         AC_MSG_RESULT(yes)
1021         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 0, [Length of zero length arrays])
1022 ], [
1023         AC_MSG_RESULT(no)
1024         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 1, [Length of zero length arrays])
1025 ])
1026
1027 if test x$target_win32 = xno; then
1028
1029         dnl hires monotonic clock support
1030         AC_SEARCH_LIBS(clock_gettime, rt)
1031
1032         dnl dynamic loader support
1033         AC_CHECK_FUNC(dlopen, DL_LIB="",
1034                 AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", dl_support=no)
1035         )
1036         if test x$dl_support = xno; then
1037                 AC_MSG_WARN([No dynamic loading support available])
1038         else
1039                 LIBS="$LIBS $DL_LIB"
1040                 AC_DEFINE(HAVE_DL_LOADER,1,[dlopen-based dynamic loader available])
1041                 dnl from glib's configure.in
1042                 AC_CACHE_CHECK([for preceeding underscore in symbols],
1043                         mono_cv_uscore,[
1044                         AC_TRY_RUN([#include <dlfcn.h>
1045                         int mono_underscore_test (void) { return 42; }
1046                         int main() {
1047                           void *f1 = (void*)0, *f2 = (void*)0, *handle;
1048                           handle = dlopen ((void*)0, 0);
1049                           if (handle) {
1050                             f1 = dlsym (handle, "mono_underscore_test");
1051                             f2 = dlsym (handle, "_mono_underscore_test");
1052                           } return (!f2 || f1);
1053                         }],
1054                                 [mono_cv_uscore=yes],
1055                                 [mono_cv_uscore=no],
1056                         [])
1057                 ])
1058                 if test "x$mono_cv_uscore" = "xyes"; then
1059                         MONO_DL_NEED_USCORE=1
1060                 else
1061                         MONO_DL_NEED_USCORE=0
1062                 fi
1063                 AC_SUBST(MONO_DL_NEED_USCORE)
1064                 AC_CHECK_FUNC(dlerror)
1065         fi
1066
1067         dnl ******************************************************************
1068         dnl *** Checks for the IKVM JNI interface library                  ***
1069         dnl ******************************************************************
1070         AC_ARG_WITH(ikvm-native, [  --with-ikvm-native=yes,no      build the IKVM JNI interface library (defaults to yes)],[with_ikvm_native=$withval],[with_ikvm_native=$ikvm_native])
1071
1072         ikvm_native_dir=
1073         if test x$with_ikvm_native = xyes; then
1074                 ikvm_native_dir=ikvm-native
1075                 jdk_headers_found="IKVM Native"
1076         fi
1077
1078         AC_SUBST(ikvm_native_dir)
1079
1080         AC_CHECK_HEADERS(execinfo.h)
1081
1082         AC_CHECK_FUNCS(getgrgid_r)
1083         AC_CHECK_FUNCS(getgrnam_r)
1084         AC_CHECK_FUNCS(getpwnam_r)
1085         AC_CHECK_FUNCS(getpwuid_r)
1086         AC_CHECK_FUNCS(getresuid)
1087         AC_CHECK_FUNCS(setresuid)
1088         AC_CHECK_FUNCS(kqueue)
1089         AC_CHECK_FUNCS(backtrace_symbols)
1090         AC_CHECK_FUNCS(mkstemp)
1091         AC_CHECK_FUNCS(mmap)
1092         AC_CHECK_FUNCS(madvise)
1093         AC_CHECK_FUNCS(getrusage)
1094         AC_CHECK_FUNCS(getpriority)
1095         AC_CHECK_FUNCS(setpriority)
1096         AC_CHECK_FUNCS(dl_iterate_phdr)
1097         AC_CHECK_FUNCS(dladdr)
1098         AC_CHECK_FUNCS(sysconf)
1099
1100         AC_CHECK_FUNCS(sched_setaffinity)
1101         AC_CHECK_FUNCS(sched_getcpu)
1102
1103         dnl ****************************************************************
1104         dnl *** Check for sched_setaffinity from glibc versions before   ***
1105         dnl *** 2.3.4. The older versions of the function only take 2    ***
1106         dnl *** parameters, not 3.                                       ***
1107         dnl ***                                                          ***
1108         dnl *** Because the interface change was not made in a minor     ***
1109         dnl *** version rev, the __GLIBC__ and __GLIBC_MINOR__ macros    ***
1110         dnl *** won't always indicate the interface sched_affinity has.  ***
1111         dnl ****************************************************************
1112         AC_MSG_CHECKING(for sched_setaffinity from glibc < 2.3.4)
1113         AC_TRY_COMPILE([#include <sched.h>], [
1114             int mask = 1; 
1115             sched_setaffinity(0, &mask);
1116                         return 0;
1117         ], [
1118                 # Yes, we have it...
1119                 AC_MSG_RESULT(yes)
1120                 AC_DEFINE(GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY, 1, [Have GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY])
1121         ], [
1122                 # We have the new, three-parameter version
1123                 AC_MSG_RESULT(no)
1124         ])
1125
1126
1127         dnl ******************************************************************
1128         dnl *** Check for large file support                               ***
1129         dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
1130         dnl ******************************************************************
1131         
1132         # Check that off_t can represent 2**63 - 1 correctly, working around
1133         # potential compiler bugs.  Defines LARGE_FILE_SUPPORT, adds $1 to
1134         # CPPFLAGS and sets $large_offt to yes if the test succeeds
1135         large_offt=no
1136         AC_DEFUN([LARGE_FILES], [
1137                 large_CPPFLAGS=$CPPFLAGS
1138                 CPPFLAGS="$CPPFLAGS $1"
1139                 AC_TRY_COMPILE([
1140                         #include <sys/types.h>
1141                         #include <limits.h>
1142                 ], [
1143                         /* Lifted this compile time assert method from: http://www.jaggersoft.com/pubs/CVu11_3.html */
1144                         #define COMPILE_TIME_ASSERT(pred) \
1145                                 switch(0){case 0:case pred:;}
1146                         COMPILE_TIME_ASSERT(sizeof(off_t) * CHAR_BIT == 64);
1147                 ], [
1148                         AC_MSG_RESULT(ok)
1149                         AC_DEFINE(HAVE_LARGE_FILE_SUPPORT, 1, [Have large file support])
1150                         large_CPPFLAGS="$large_CPPFLAGS $1"
1151                         large_offt=yes
1152                 ], [
1153                         AC_MSG_RESULT(no)
1154                 ])
1155                 CPPFLAGS=$large_CPPFLAGS
1156         ])
1157
1158         AC_MSG_CHECKING(if off_t is 64 bits wide)
1159         LARGE_FILES("")
1160         if test $large_offt = no; then
1161                 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
1162                 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
1163         fi
1164         if test $large_offt = no; then
1165                 AC_MSG_WARN([No 64 bit file size support available])
1166         fi
1167         
1168         dnl *****************************
1169         dnl *** Checks for libsocket  ***
1170         dnl *****************************
1171         AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
1172
1173         dnl *******************************
1174         dnl *** Checks for MSG_NOSIGNAL ***
1175         dnl *******************************
1176         AC_MSG_CHECKING(for MSG_NOSIGNAL)
1177         AC_TRY_COMPILE([#include <sys/socket.h>], [
1178                 int f = MSG_NOSIGNAL;
1179         ], [
1180                 # Yes, we have it...
1181                 AC_MSG_RESULT(yes)
1182                 AC_DEFINE(HAVE_MSG_NOSIGNAL, 1, [Have MSG_NOSIGNAL])
1183         ], [
1184                 # We'll have to use signals
1185                 AC_MSG_RESULT(no)
1186         ])
1187
1188         dnl *****************************
1189         dnl *** Checks for SOL_IP     ***
1190         dnl *****************************
1191         AC_MSG_CHECKING(for SOL_IP)
1192         AC_TRY_COMPILE([#include <netdb.h>], [
1193                 int level = SOL_IP;
1194         ], [
1195                 # Yes, we have it...
1196                 AC_MSG_RESULT(yes)
1197                 AC_DEFINE(HAVE_SOL_IP, 1, [Have SOL_IP])
1198         ], [
1199                 # We'll have to use getprotobyname
1200                 AC_MSG_RESULT(no)
1201         ])
1202
1203         dnl *****************************
1204         dnl *** Checks for SOL_IPV6     ***
1205         dnl *****************************
1206         AC_MSG_CHECKING(for SOL_IPV6)
1207         AC_TRY_COMPILE([#include <netdb.h>], [
1208                 int level = SOL_IPV6;
1209         ], [
1210                 # Yes, we have it...
1211                 AC_MSG_RESULT(yes)
1212                 AC_DEFINE(HAVE_SOL_IPV6, 1, [Have SOL_IPV6])
1213         ], [
1214                 # We'll have to use getprotobyname
1215                 AC_MSG_RESULT(no)
1216         ])
1217
1218         dnl *****************************
1219         dnl *** Checks for SOL_TCP    ***
1220         dnl *****************************
1221         AC_MSG_CHECKING(for SOL_TCP)
1222         AC_TRY_COMPILE([#include <netdb.h>], [
1223                 int level = SOL_TCP;
1224         ], [
1225                 # Yes, we have it...
1226                 AC_MSG_RESULT(yes)
1227                 AC_DEFINE(HAVE_SOL_TCP, 1, [Have SOL_TCP])
1228         ], [
1229                 # We'll have to use getprotobyname
1230                 AC_MSG_RESULT(no)
1231         ])
1232
1233         dnl *****************************
1234         dnl *** Checks for IP_PKTINFO ***
1235         dnl *****************************
1236         AC_MSG_CHECKING(for IP_PKTINFO)
1237         AC_TRY_COMPILE([#include <netdb.h>], [
1238                 int level = IP_PKTINFO;
1239         ], [
1240                 # Yes, we have it...
1241                 AC_MSG_RESULT(yes)
1242                 AC_DEFINE(HAVE_IP_PKTINFO, 1, [Have IP_PKTINFO])
1243         ], [
1244                 AC_MSG_RESULT(no)
1245         ])
1246
1247         dnl *****************************
1248         dnl *** Checks for IPV6_PKTINFO ***
1249         dnl *****************************
1250         AC_MSG_CHECKING(for IPV6_PKTINFO)
1251         AC_TRY_COMPILE([#include <netdb.h>], [
1252                 int level = IPV6_PKTINFO;
1253         ], [
1254                 # Yes, we have it...
1255                 AC_MSG_RESULT(yes)
1256                 AC_DEFINE(HAVE_IPV6_PKTINFO, 1, [Have IPV6_PKTINFO])
1257         ], [
1258                 AC_MSG_RESULT(no)
1259         ])
1260
1261         dnl **********************************
1262         dnl *** Checks for IP_DONTFRAGMENT ***
1263         dnl **********************************
1264         AC_MSG_CHECKING(for IP_DONTFRAGMENT)
1265         AC_TRY_COMPILE([#include <netdb.h>], [
1266                 int level = IP_DONTFRAGMENT;
1267         ], [
1268                 # Yes, we have it...
1269                 AC_MSG_RESULT(yes)
1270                 AC_DEFINE(HAVE_IP_DONTFRAGMENT, 1, [Have IP_DONTFRAGMENT])
1271         ], [
1272                 AC_MSG_RESULT(no)
1273         ])
1274
1275         dnl **********************************
1276         dnl *** Checks for IP_MTU_DISCOVER ***
1277         dnl **********************************
1278         AC_MSG_CHECKING(for IP_MTU_DISCOVER)
1279         AC_TRY_COMPILE([#include <netdb.h>], [
1280                 int level = IP_MTU_DISCOVER;
1281         ], [
1282                 # Yes, we have it...
1283                 AC_MSG_RESULT(yes)
1284                 AC_DEFINE(HAVE_IP_MTU_DISCOVER, 1, [Have IP_MTU_DISCOVER])
1285         ], [
1286                 AC_MSG_RESULT(no)
1287         ])
1288
1289         dnl *********************************
1290         dnl *** Check for struct ip_mreqn ***
1291         dnl *********************************
1292         AC_MSG_CHECKING(for struct ip_mreqn)
1293         AC_TRY_COMPILE([#include <netinet/in.h>], [
1294                 struct ip_mreqn mreq;
1295                 mreq.imr_address.s_addr = 0;
1296         ], [
1297                 # Yes, we have it...
1298                 AC_MSG_RESULT(yes)
1299                 AC_DEFINE(HAVE_STRUCT_IP_MREQN, 1, [Have struct ip_mreqn])
1300         ], [
1301                 # We'll just have to try and use struct ip_mreq
1302                 AC_MSG_RESULT(no)
1303                 AC_MSG_CHECKING(for struct ip_mreq)
1304                 AC_TRY_COMPILE([#include <netinet/in.h>], [
1305                         struct ip_mreq mreq;
1306                         mreq.imr_interface.s_addr = 0;
1307                 ], [
1308                         # Yes, we have it...
1309                         AC_MSG_RESULT(yes)
1310                         AC_DEFINE(HAVE_STRUCT_IP_MREQ, 1, [Have struct ip_mreq])
1311                 ], [
1312                         # No multicast support
1313                         AC_MSG_RESULT(no)
1314                 ])
1315         ])
1316         
1317         dnl **********************************
1318         dnl *** Check for gethostbyname2_r ***
1319         dnl **********************************
1320         AC_MSG_CHECKING(for gethostbyname2_r)
1321                 AC_TRY_LINK([#include <netdb.h>], [
1322                 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
1323         ], [
1324                 # Yes, we have it...
1325                 AC_MSG_RESULT(yes)
1326                 AC_DEFINE(HAVE_GETHOSTBYNAME2_R, 1, [Have gethostbyname2_r])
1327         ], [
1328                 AC_MSG_RESULT(no)
1329         ])
1330
1331         dnl *****************************
1332         dnl *** Checks for libnsl     ***
1333         dnl *****************************
1334         AC_CHECK_FUNC(gethostbyaddr, , AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl"))
1335
1336         AC_CHECK_FUNCS(inet_pton inet_aton)
1337
1338         dnl ***********************************************
1339         dnl *** Checks for size of sockaddr_un.sun_path ***
1340         dnl ***********************************************
1341         # AC_CHECK_SIZEOF can't cope with struct members :-(
1342         AC_MSG_CHECKING(size of sockaddr_un.sun_path)
1343         AC_CACHE_VAL(mono_cv_sizeof_sunpath,
1344                 [AC_TRY_RUN([
1345                         #include <sys/types.h>
1346                         #include <stdio.h>
1347                         #include <sys/un.h>
1348
1349                         int main(void) {
1350                                 struct sockaddr_un sock_un;
1351                                 FILE *f=fopen("conftestval", "w");
1352                                 if(!f) exit(1);
1353                                 fprintf(f, "%d\n", sizeof(sock_un.sun_path));
1354                                 exit(0);
1355                         }
1356                 ], mono_cv_sizeof_sunpath=`cat conftestval`,
1357                    mono_cv_sizeof_sunpath=0,
1358                    mono_cv_sizeof_sunpath=0)])dnl
1359         AC_MSG_RESULT($mono_cv_sizeof_sunpath)
1360         AC_DEFINE_UNQUOTED(MONO_SIZEOF_SUNPATH, $mono_cv_sizeof_sunpath, [Sizeof sock_un.sun_path])
1361
1362         dnl *****************************
1363         dnl *** Checks for libxnet    ***
1364         dnl *****************************
1365         case "${host}" in
1366                 *solaris* )
1367                         AC_MSG_CHECKING(for Solaris XPG4 support)
1368                         if test -f /usr/lib/libxnet.so; then
1369                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
1370                                 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
1371                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
1372                                 LIBS="$LIBS -lxnet"
1373                                 AC_MSG_RESULT(yes)
1374                         else
1375                                 AC_MSG_RESULT(no)
1376                         fi
1377
1378                         if test "$GCC" = "yes"; then
1379                                 CFLAGS="$CFLAGS -Wno-char-subscripts"
1380                         fi
1381                 ;;
1382         esac
1383
1384         dnl *****************************
1385         dnl *** Checks for libpthread ***
1386         dnl *****************************
1387 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
1388 # and libpthread does not exist
1389 #
1390         case "${host}" in
1391                 *-*-*freebsd*)
1392                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
1393                 ;;
1394                 *-*-*openbsd*)
1395                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
1396                 ;;
1397                 *)
1398                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
1399                 ;;
1400         esac
1401         AC_CHECK_HEADERS(pthread.h)
1402         AC_CHECK_FUNCS(pthread_mutex_timedlock)
1403         AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np)
1404         AC_CHECK_FUNCS(pthread_kill)
1405         AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
1406         AC_TRY_COMPILE([ #include <pthread.h>], [
1407                 pthread_mutexattr_t attr;
1408                 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
1409         ], [
1410                 AC_MSG_RESULT(ok)
1411         ], [
1412                 AC_MSG_RESULT(no)
1413                 AC_MSG_WARN(Using mono_mutex_t for recursive mutexes)
1414                 AC_DEFINE(USE_MONO_MUTEX, 1, [Use mono_mutex_t])
1415         ])
1416         AC_CHECK_FUNCS(pthread_attr_setstacksize)
1417         AC_CHECK_FUNCS(pthread_attr_getstack pthread_attr_getstacksize)
1418         AC_CHECK_FUNCS(pthread_get_stacksize_np pthread_get_stackaddr_np)
1419
1420         dnl ***********************************
1421         dnl *** Checks for signals
1422         dnl ***********************************
1423         AC_CHECK_HEADERS(signal.h)
1424         AC_CHECK_FUNCS(sigaction)
1425
1426         dnl ***********************************
1427         dnl *** Checks for working __thread ***
1428         dnl ***********************************
1429         AC_MSG_CHECKING(for working __thread)
1430         if test "x$with_tls" != "x__thread"; then
1431                 AC_MSG_RESULT(disabled)
1432         else
1433                 AC_TRY_RUN([
1434                         #include <pthread.h>
1435                         __thread int i;
1436                         static int res1, res2;
1437
1438                         void thread_main (void *arg)
1439                         {
1440                                 i = arg;
1441                                 sleep (1);
1442                                 if (arg == 1)
1443                                         res1 = (i == arg);
1444                                 else
1445                                         res2 = (i == arg);
1446                         }
1447
1448                         int main () {
1449                                 pthread_t t1, t2;
1450
1451                                 i = 5;
1452
1453                                 pthread_create (&t1, NULL, thread_main, 1);
1454                                 pthread_create (&t2, NULL, thread_main, 2);
1455
1456                                 pthread_join (t1, NULL);
1457                                 pthread_join (t2, NULL);
1458
1459                                 return !(res1 + res2 == 2);
1460                         }
1461                 ], [
1462                                 AC_MSG_RESULT(yes)
1463                 ], [
1464                                 AC_MSG_RESULT(no)
1465                                 with_tls=pthread
1466                 ])
1467         fi
1468
1469         dnl **************************************
1470         dnl *** Checks for working sigaltstack ***
1471         dnl **************************************
1472         AC_MSG_CHECKING(for working sigaltstack)
1473         if test "x$with_sigaltstack" != "xyes"; then
1474                 AC_MSG_RESULT(disabled)
1475         else
1476                 AC_TRY_RUN([
1477                         #include <stdio.h>
1478                         #include <stdlib.h>
1479                         #include <unistd.h>
1480                         #include <signal.h>
1481                         #include <pthread.h>
1482                         #include <sys/wait.h>
1483                         #if defined(__FreeBSD__) || defined(__NetBSD__)
1484                         #define SA_STACK SA_ONSTACK
1485                         #endif
1486                         static void
1487                         sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
1488                         {
1489                                 exit (0);
1490                         }
1491
1492                         volatile char*__ptr = NULL;
1493                         static void *
1494                         loop (void *ignored)
1495                         {
1496                                 *__ptr = 0;
1497                                 return NULL;
1498                         }
1499
1500                         static void
1501                         child ()
1502                         {
1503                                 struct sigaction sa;
1504                         #ifdef __APPLE__
1505                                 stack_t sas;
1506                         #else
1507                                 struct sigaltstack sas;
1508                         #endif
1509                                 pthread_t id;
1510                                 pthread_attr_t attr;
1511
1512                                 sa.sa_sigaction = sigsegv_signal_handler;
1513                                 sigemptyset (&sa.sa_mask);
1514                                 sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
1515                                 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
1516                                         perror ("sigaction");
1517                                         return;
1518                                 }
1519
1520                                 /* x86 darwin deliver segfaults using SIGBUS */
1521                                 if (sigaction (SIGBUS, &sa, NULL) == -1) {
1522                                         perror ("sigaction");
1523                                         return;
1524                                 }
1525                                 sas.ss_sp = malloc (SIGSTKSZ);
1526                                 sas.ss_size = SIGSTKSZ;
1527                                 sas.ss_flags = 0;
1528                                 if (sigaltstack (&sas, NULL) == -1) {
1529                                         perror ("sigaltstack");
1530                                         return;
1531                                 }
1532
1533                                 pthread_attr_init (&attr);
1534                                 if (pthread_create(&id, &attr, loop, &attr) != 0) {
1535                                         printf ("pthread_create\n");
1536                                         return;
1537                                 }
1538
1539                                 sleep (100);
1540                         }
1541
1542                         int
1543                         main ()
1544                         {
1545                                 pid_t son;
1546                                 int status;
1547                                 int i;
1548
1549                                 son = fork ();
1550                                 if (son == -1) {
1551                                         return 1;
1552                                 }
1553
1554                                 if (son == 0) {
1555                                         child ();
1556                                         return 0;
1557                                 }
1558
1559                                 for (i = 0; i < 300; ++i) {
1560                                         waitpid (son, &status, WNOHANG);
1561                                         if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
1562                                                 return 0;
1563                                         usleep (10000);
1564                                 }
1565
1566                                 kill (son, SIGKILL);
1567                                 return 1;
1568                         }
1569
1570                 ], [
1571                                 AC_MSG_RESULT(yes)
1572                                 AC_DEFINE(HAVE_WORKING_SIGALTSTACK, 1, [Have a working sigaltstack])
1573                 ], [
1574                                 with_sigaltstack=no
1575                                 AC_MSG_RESULT(no)
1576                 ])
1577         fi
1578
1579         dnl ********************************
1580         dnl *** Checks for semaphore lib ***
1581         dnl ********************************
1582         # 'Real Time' functions on Solaris
1583         # posix4 on Solaris 2.6
1584         # pthread (first!) on Linux
1585         AC_SEARCH_LIBS(sem_init, pthread rt posix4) 
1586
1587         AC_SEARCH_LIBS(shm_open, pthread rt posix4) 
1588         AC_CHECK_FUNCS(shm_open)
1589
1590         dnl ********************************
1591         dnl *** Checks for timezone stuff **
1592         dnl ********************************
1593         AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
1594                 AC_TRY_COMPILE([
1595                         #include <time.h>
1596                         ], [
1597                         struct tm tm;
1598                         tm.tm_gmtoff = 1;
1599                         ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
1600         if test $ac_cv_struct_tm_gmtoff = yes; then
1601                 AC_DEFINE(HAVE_TM_GMTOFF, 1, [Have tm_gmtoff])
1602         else
1603                 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
1604                         AC_TRY_COMPILE([
1605                                 #include <time.h>
1606                         ], [
1607                                 timezone = 1;
1608                         ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
1609                 if test $ac_cv_var_timezone = yes; then
1610                         AC_DEFINE(HAVE_TIMEZONE, 1, [Have timezone variable])
1611                 else
1612                         AC_ERROR(unable to find a way to determine timezone)
1613                 fi
1614         fi
1615
1616         dnl *********************************
1617         dnl *** Checks for math functions ***
1618         dnl *********************************
1619         AC_SEARCH_LIBS(sqrtf, m)
1620         if test "x$has_broken_apple_cpp" != "xyes"; then
1621                 AC_CHECK_FUNCS(finite, , AC_MSG_CHECKING(for finite in math.h)
1622                         AC_TRY_LINK([#include <math.h>], 
1623                         [ finite(0.0); ], 
1624                         AC_DEFINE(HAVE_FINITE, 1, [Have finite in -lm]) AC_MSG_RESULT(yes),
1625                         AC_MSG_RESULT(no)))
1626         fi
1627         AC_CHECK_FUNCS(isfinite, , AC_MSG_CHECKING(for isfinite in math.h)
1628                 AC_TRY_LINK([#include <math.h>], 
1629                 [ isfinite(0.0); ], 
1630                 AC_DEFINE(HAVE_ISFINITE, 1, [Have isfinite]) AC_MSG_RESULT(yes),
1631                 AC_MSG_RESULT(no)))
1632
1633         dnl ****************************************************************
1634         dnl *** Checks for working poll() (macosx defines it but doesn't ***
1635         dnl *** have it in the library (duh))                            ***
1636         dnl ****************************************************************
1637         AC_CHECK_FUNCS(poll)
1638
1639         dnl *************************
1640         dnl *** Check for signbit ***
1641         dnl *************************
1642         AC_MSG_CHECKING(for signbit)
1643         AC_TRY_LINK([#include <math.h>], [
1644                 int s = signbit(1.0);
1645         ], [
1646                 AC_MSG_RESULT(yes)
1647                 AC_DEFINE(HAVE_SIGNBIT, 1, [Have signbit])
1648         ], [
1649                 AC_MSG_RESULT(no)
1650         ]) 
1651
1652         dnl **********************************
1653         dnl *** epoll                      ***
1654         dnl **********************************
1655         AC_CHECK_HEADERS(sys/epoll.h)
1656         haveepoll=no
1657         AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
1658         if test "x$haveepoll" = "xyes" -a "x$ac_cv_header_sys_epoll_h" = "xyes" ; then
1659                 AC_DEFINE(HAVE_EPOLL, 1, [epoll supported])
1660         fi
1661
1662         havekqueue=no
1663         AC_CHECK_FUNCS(kqueue, , AC_MSG_CHECKING(for kqueue in sys/event.h)
1664                 AC_TRY_LINK([#include <sys/event.h>], 
1665                 [ kqueue(); ],[havekqueue=yes],[]))
1666
1667         dnl **************************************
1668         dnl * Darwin has a race that prevents us from using reliably:
1669         dnl * http://lists.apple.com/archives/darwin-dev/2011/Jun/msg00016.html
1670         dnl * Since kqueue is mostly used for scaling large web servers, 
1671         dnl * and very few folks run Mono on large web servers on OSX, falling
1672         dnl * back 
1673         dnl **************************************
1674         if test x$havekqueue = xyes; then
1675                 if x$platform_darwin = xno; then
1676                         AC_DEFINE(USE_KQUEUE_FOR_THREADPOOL, 1, [Use kqueue for the threadpool])
1677                 fi
1678         fi
1679
1680         dnl ******************************
1681         dnl *** Checks for SIOCGIFCONF ***
1682         dnl ******************************
1683         AC_CHECK_HEADERS(sys/ioctl.h)
1684         AC_CHECK_HEADERS(net/if.h, [], [],
1685            [
1686            #ifdef HAVE_SYS_TYPES_H
1687            # include <sys/types.h>
1688            #endif
1689            #ifdef HAVE_SYS_SOCKET_H
1690            # include <sys/socket.h>
1691            #endif
1692            ])
1693         AC_MSG_CHECKING(for ifreq)
1694         AC_TRY_COMPILE([
1695                 #include <stdio.h>
1696                 #include <sys/ioctl.h>
1697                 #include <net/if.h>
1698                 ], [
1699                 struct ifconf ifc;
1700                 struct ifreq *ifr;
1701                 void *x;
1702                 ifc.ifc_len = 0;
1703                 ifc.ifc_buf = NULL;
1704                 x = (void *) &ifr->ifr_addr;
1705                 ],[
1706                         AC_MSG_RESULT(yes)
1707                         AC_DEFINE(HAVE_SIOCGIFCONF, 1, [Can get interface list])
1708                 ], [
1709                         AC_MSG_RESULT(no)
1710                 ])
1711         dnl **********************************
1712         dnl ***     Checks for sin_len     ***
1713         dnl **********************************
1714         AC_MSG_CHECKING(for sockaddr_in.sin_len)
1715         AC_TRY_COMPILE([
1716                 #include <netinet/in.h>
1717                 ], [
1718                 struct sockaddr_in saddr;
1719                 saddr.sin_len = sizeof (saddr);
1720                 ],[
1721                         AC_MSG_RESULT(yes)
1722                         AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [sockaddr_in has sin_len])
1723                 ], [
1724                         AC_MSG_RESULT(no)
1725                 ])      
1726         dnl **********************************
1727         dnl ***    Checks for sin6_len     ***
1728         dnl **********************************
1729         AC_MSG_CHECKING(for sockaddr_in6.sin6_len)
1730         AC_TRY_COMPILE([
1731                 #include <netinet/in.h>
1732                 ], [
1733                 struct sockaddr_in6 saddr6;
1734                 saddr6.sin6_len = sizeof (saddr6);
1735                 ],[
1736                         AC_MSG_RESULT(yes)
1737                         AC_DEFINE(HAVE_SOCKADDR_IN6_SIN_LEN, 1, [sockaddr_in6 has sin6_len])
1738                 ], [
1739                         AC_MSG_RESULT(no)
1740                 ])
1741         dnl **********************************
1742         dnl *** Check for getifaddrs       ***
1743         dnl **********************************
1744         AC_MSG_CHECKING(for getifaddrs)
1745                 AC_TRY_LINK([
1746                 #include <stdio.h>
1747                 #include <sys/types.h>
1748                 #include <sys/socket.h>
1749                 #include <ifaddrs.h>
1750         ], [
1751                 getifaddrs(NULL);
1752         ], [
1753                 # Yes, we have it...
1754                 AC_MSG_RESULT(yes)
1755                 AC_DEFINE(HAVE_GETIFADDRS, 1, [Have getifaddrs])
1756         ], [
1757                 AC_MSG_RESULT(no)
1758         ])
1759         dnl **********************************
1760         dnl *** Check for if_nametoindex   ***
1761         dnl **********************************
1762         AC_MSG_CHECKING(for if_nametoindex)
1763                 AC_TRY_LINK([
1764                 #include <stdio.h>
1765                 #include <sys/types.h>
1766                 #include <sys/socket.h>
1767                 #include <net/if.h>
1768         ], [
1769                 if_nametoindex(NULL);
1770         ], [
1771                 # Yes, we have it...
1772                 AC_MSG_RESULT(yes)
1773                 AC_DEFINE(HAVE_IF_NAMETOINDEX, 1, [Have if_nametoindex])
1774         ], [
1775                 AC_MSG_RESULT(no)
1776         ])
1777                         
1778         dnl **********************************
1779         dnl *** Checks for MonoPosixHelper ***
1780         dnl **********************************
1781         AC_CHECK_HEADERS(checklist.h)
1782         AC_CHECK_HEADERS(pathconf.h)
1783         AC_CHECK_HEADERS(fstab.h)
1784         AC_CHECK_HEADERS(attr/xattr.h)
1785         AC_CHECK_HEADERS(sys/extattr.h)
1786         AC_CHECK_HEADERS(sys/sendfile.h)
1787         AC_CHECK_HEADERS(sys/statvfs.h)
1788         AC_CHECK_HEADERS(sys/statfs.h)
1789         AC_CHECK_HEADERS(sys/vfstab.h)
1790         AC_CHECK_HEADERS(sys/xattr.h)
1791         AC_CHECK_HEADERS(sys/mman.h)
1792         AC_CHECK_HEADERS(sys/param.h)
1793         AC_CHECK_HEADERS(sys/mount.h, [], [],
1794                 [
1795                 #ifdef HAVE_SYS_PARAM_H
1796                 # include <sys/param.h>
1797                 #endif
1798                 ])
1799         AC_CHECK_HEADERS(sys/mount.h)
1800         AC_CHECK_FUNCS(confstr)
1801         AC_CHECK_FUNCS(seekdir telldir)
1802         AC_CHECK_FUNCS(getdomainname)
1803         AC_CHECK_FUNCS(setdomainname)
1804         AC_CHECK_FUNCS(endgrent getgrent fgetgrent setgrent)
1805         AC_CHECK_FUNCS(setgroups)
1806         AC_CHECK_FUNCS(endpwent getpwent fgetpwent setpwent)
1807         AC_CHECK_FUNCS(getfsstat)
1808         AC_CHECK_FUNCS(lutimes futimes)
1809         AC_CHECK_FUNCS(mremap)
1810         AC_CHECK_FUNCS(remap_file_pages)
1811         AC_CHECK_FUNCS(posix_fadvise)
1812         AC_CHECK_FUNCS(posix_fallocate)
1813         AC_CHECK_FUNCS(posix_madvise)
1814         AC_CHECK_FUNCS(vsnprintf)
1815         AC_CHECK_FUNCS(sendfile)
1816         AC_CHECK_FUNCS(gethostid sethostid)
1817         AC_CHECK_FUNCS(sethostname)
1818         AC_CHECK_FUNCS(statfs)
1819         AC_CHECK_FUNCS(fstatfs)
1820         AC_CHECK_FUNCS(statvfs)
1821         AC_CHECK_FUNCS(fstatvfs)
1822         AC_CHECK_FUNCS(stime)
1823         AC_CHECK_FUNCS(strerror_r)
1824         AC_CHECK_FUNCS(ttyname_r)
1825         AC_CHECK_FUNCS(psignal)
1826         AC_CHECK_FUNCS(getlogin_r)
1827         AC_CHECK_FUNCS(lockf)
1828         AC_CHECK_FUNCS(swab)
1829         AC_CHECK_FUNCS(setusershell endusershell)
1830         AC_CHECK_SIZEOF(size_t)
1831         AC_CHECK_TYPES([blksize_t], [AC_DEFINE(HAVE_BLKSIZE_T)], , 
1832                 [#include <sys/types.h>
1833                  #include <sys/stat.h>
1834                  #include <unistd.h>])
1835         AC_CHECK_TYPES([blkcnt_t], [AC_DEFINE(HAVE_BLKCNT_T)], ,
1836                 [#include <sys/types.h>
1837                  #include <sys/stat.h>
1838                  #include <unistd.h>])
1839         AC_CHECK_TYPES([suseconds_t], [AC_DEFINE(HAVE_SUSECONDS_T)], ,
1840                 [#include <sys/time.h>])
1841         AC_CHECK_TYPES([struct flock], [AC_DEFINE(HAVE_STRUCT_FLOCK)], ,
1842                 [#include <unistd.h>
1843                  #include <fcntl.h>])
1844         AC_CHECK_TYPES([struct pollfd], [AC_DEFINE(HAVE_STRUCT_POLLFD)], ,
1845                 [#include <sys/poll.h>])
1846         AC_CHECK_TYPES([struct stat], [AC_DEFINE(HAVE_STRUCT_STAT)], ,
1847                 [#include <sys/types.h>
1848                  #include <sys/stat.h>
1849                  #include <unistd.h>])
1850         AC_CHECK_TYPES([struct timespec], [AC_DEFINE(HAVE_STRUCT_TIMESPEC)], ,
1851                 [#include <time.h>])
1852         AC_CHECK_TYPES([struct timeval], [AC_DEFINE(HAVE_STRUCT_TIMEVAL)], ,
1853                 [#include <sys/time.h>
1854                  #include <sys/types.h>
1855                  #include <utime.h>])
1856         AC_CHECK_TYPES([struct timezone], [AC_DEFINE(HAVE_STRUCT_TIMEZONE)], ,
1857                 [#include <sys/time.h>])
1858         AC_CHECK_TYPES([struct utimbuf], [AC_DEFINE(HAVE_STRUCT_UTIMBUF)], ,
1859                 [#include <sys/types.h>
1860                  #include <utime.h>])
1861         AC_CHECK_MEMBERS(
1862                 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,, 
1863                 [#include <sys/types.h>
1864                  #include <dirent.h>])
1865         AC_CHECK_MEMBERS(
1866                 [struct passwd.pw_gecos],,, 
1867                 [#include <sys/types.h>
1868                  #include <pwd.h>])
1869         AC_CHECK_MEMBERS(
1870                 [struct statfs.f_flags],,, 
1871                 [#include <sys/types.h>
1872                  #include <sys/vfs.h>])
1873
1874         dnl Favour xattr through glibc, but use libattr if we have to
1875         AC_CHECK_FUNC(lsetxattr, ,
1876                 AC_CHECK_LIB(attr, lsetxattr, XATTR_LIB="-lattr",)
1877         )
1878         AC_SUBST(XATTR_LIB)
1879
1880         dnl kinfo_proc.kp_proc works on darwin but fails on other simil-bsds
1881         AC_CHECK_MEMBERS(
1882                 [struct kinfo_proc.kp_proc],,, 
1883                 [#include <sys/types.h>
1884                  #include <sys/param.h>
1885                  #include <sys/sysctl.h>
1886                  #include <sys/proc.h>
1887                  ])
1888
1889         dnl *********************************
1890         dnl *** Checks for Windows compilation ***
1891         dnl *********************************
1892         AC_CHECK_HEADERS(sys/time.h)
1893         AC_CHECK_HEADERS(sys/param.h)
1894         AC_CHECK_HEADERS(dirent.h)
1895
1896         dnl *********************************
1897         dnl *** Check for Console 2.0 I/O ***
1898         dnl *********************************
1899         AC_CHECK_HEADERS([curses.h])
1900         AC_CHECK_HEADERS([term.h], [], [],
1901         [#if HAVE_CURSES_H
1902          #include <curses.h>
1903          #endif
1904         ])
1905         AC_CHECK_HEADERS([termios.h])
1906
1907         dnl * This is provided in io-layer, but on windows it's only available
1908         dnl * on xp+
1909         AC_DEFINE(HAVE_GETPROCESSID, 1, [Define if GetProcessId is available])
1910 else
1911         dnl *********************************
1912         dnl *** Checks for Windows compilation ***
1913         dnl *********************************
1914         AC_CHECK_HEADERS(winternl.h)
1915
1916         jdk_headers_found=no
1917         AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
1918         AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
1919         AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
1920         AC_CHECK_LIB(winmm, main, LIBS="$LIBS -lwinmm", AC_ERROR(bad mingw install?))
1921         AC_CHECK_LIB(oleaut32, main, LIBS="$LIBS -loleaut32", AC_ERROR(bad mingw install?))
1922         AC_CHECK_LIB(advapi32, main, LIBS="$LIBS -ladvapi32", AC_ERROR(bad mingw install?))
1923         AC_CHECK_LIB(version, main, LIBS="$LIBS -lversion", AC_ERROR(bad mingw install?))
1924
1925         dnl *********************************
1926         dnl *** Check for struct ip_mreqn ***
1927         dnl *********************************
1928         AC_MSG_CHECKING(for struct ip_mreqn)
1929         AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1930                 struct ip_mreqn mreq;
1931                 mreq.imr_address.s_addr = 0;
1932         ], [
1933                 # Yes, we have it...
1934                 AC_MSG_RESULT(yes)
1935                 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
1936         ], [
1937                 # We'll just have to try and use struct ip_mreq
1938                 AC_MSG_RESULT(no)
1939                 AC_MSG_CHECKING(for struct ip_mreq)
1940                 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1941                         struct ip_mreq mreq;
1942                         mreq.imr_interface.s_addr = 0;
1943                 ], [
1944                         # Yes, we have it...
1945                         AC_MSG_RESULT(yes)
1946                         AC_DEFINE(HAVE_STRUCT_IP_MREQ)
1947                 ], [
1948                         # No multicast support
1949                         AC_MSG_RESULT(no)
1950                 ])
1951         ])
1952         AC_CHECK_FUNCS(GetProcessId)
1953 fi
1954
1955 dnl socklen_t check
1956 AC_MSG_CHECKING(for socklen_t)
1957 AC_TRY_COMPILE([
1958 #include <sys/types.h>
1959 #include <sys/socket.h>
1960 ],[
1961   socklen_t foo;
1962 ],[
1963 ac_cv_c_socklen_t=yes
1964         AC_DEFINE(HAVE_SOCKLEN_T, 1, [Have socklen_t])
1965         AC_MSG_RESULT(yes)
1966 ],[
1967         AC_MSG_RESULT(no)
1968 ])
1969
1970 AC_MSG_CHECKING(for array element initializer support)
1971 AC_TRY_COMPILE([#include <sys/socket.h>], [
1972         const int array[] = {[1] = 2,};
1973 ], [
1974         # Yes, we have it...
1975         AC_MSG_RESULT(yes)
1976         AC_DEFINE(HAVE_ARRAY_ELEM_INIT,1,[Supports C99 array initialization])
1977 ], [
1978         # We'll have to use signals
1979         AC_MSG_RESULT(no)
1980 ])
1981
1982 AC_CHECK_FUNCS(trunc, , AC_MSG_CHECKING(for trunc in math.h)
1983         # Simply calling trunc (0.0) is no good since gcc will optimize the call away
1984         AC_TRY_LINK([#include <math.h>], 
1985         [ static void *p = &trunc; ],
1986         [
1987                 AC_DEFINE(HAVE_TRUNC) 
1988                 AC_MSG_RESULT(yes)
1989                 ac_cv_trunc=yes
1990         ],
1991         AC_MSG_RESULT(no)))
1992
1993 if test "x$ac_cv_truncl" != "xyes"; then
1994    AC_CHECK_LIB(sunmath, aintl, [ AC_DEFINE(HAVE_AINTL, 1, [Has the 'aintl' function]) LIBS="$LIBS -lsunmath"])
1995 fi
1996
1997 AC_CHECK_FUNCS(round)
1998 AC_CHECK_FUNCS(rint)
1999 AC_CHECK_FUNCS(execvp)
2000
2001 dnl ****************************
2002 dnl *** Look for /dev/random ***
2003 dnl ****************************
2004
2005 AC_MSG_CHECKING([if usage of random device is requested])
2006 AC_ARG_ENABLE(dev-random,
2007 [  --disable-dev-random    disable the use of the random device (enabled by default)],
2008 try_dev_random=$enableval, try_dev_random=yes)
2009
2010 AC_MSG_RESULT($try_dev_random)
2011
2012 case "{$build}" in
2013     *-openbsd*)
2014     NAME_DEV_RANDOM="/dev/srandom"
2015     ;;
2016
2017 dnl Win32 does not have /dev/random, they have their own method...
2018
2019     *-mingw*|*-*-cygwin*)
2020     ac_cv_have_dev_random=no
2021     ;;
2022
2023 dnl Everywhere else, it's /dev/random
2024
2025     *)
2026     NAME_DEV_RANDOM="/dev/random"
2027     ;;
2028 esac
2029
2030 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM", [Name of /dev/random])
2031
2032 dnl Now check if the device actually exists
2033
2034 if test "x$try_dev_random" = "xyes"; then
2035     AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
2036     [if test -r "$NAME_DEV_RANDOM" ; then
2037         ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
2038     if test "x$ac_cv_have_dev_random" = "xyes"; then
2039         AC_DEFINE(HAVE_CRYPT_RNG, 1, [Have /dev/random])
2040     fi
2041 else
2042     AC_MSG_CHECKING(for random device)
2043     ac_cv_have_dev_random=no
2044     AC_MSG_RESULT(has been disabled)
2045 fi
2046
2047 if test "x$host_win32" = "xyes"; then
2048     AC_DEFINE(HAVE_CRYPT_RNG)
2049 fi
2050
2051 if test "x$ac_cv_have_dev_random" = "xno" \
2052     && test "x$host_win32" = "xno"; then
2053     AC_MSG_WARN([[
2054 ***
2055 *** A system-provided entropy source was not found on this system.
2056 *** Because of this, the System.Security.Cryptography random number generator
2057 *** will throw a NotImplemented exception.
2058 ***
2059 *** If you are seeing this message, and you know your system DOES have an
2060 *** entropy collection in place, please contact <crichton@gimp.org> and
2061 *** provide information about the system and how to access the random device.
2062 ***
2063 *** Otherwise you can install either egd or prngd and set the environment
2064 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
2065 ***]])
2066 fi
2067  
2068 AC_MSG_CHECKING([if inter-process shared handles are requested])
2069 AC_ARG_ENABLE(shared-handles, [  --disable-shared-handles disable inter-process shared handles], try_shared_handles=$enableval, try_shared_handles=yes)
2070 AC_MSG_RESULT($try_shared_handles)
2071 if test "x$try_shared_handles" != "xyes"; then
2072         AC_DEFINE(DISABLE_SHARED_HANDLES, 1, [Disable inter-process shared handles])
2073         AC_SUBST(DISABLE_SHARED_HANDLES)
2074 fi
2075
2076 AC_ARG_ENABLE(bcl-opt, [  --disable-bcl-opt     BCL is compiled with no optimizations (allows accurate BCL debugging)], test_bcl_opt=$enableval, test_bcl_opt=yes)
2077
2078 AC_ARG_ENABLE(nunit-tests, [  --enable-nunit-tests      Run the nunit tests of the class library on 'make check'])
2079 AM_CONDITIONAL(ENABLE_NUNIT_TESTS, [test x$enable_nunit_tests = xyes])
2080
2081 AC_MSG_CHECKING([if big-arrays are to be enabled])
2082 AC_ARG_ENABLE(big-arrays,  [  --enable-big-arrays       Enable the allocation and indexing of arrays greater than Int32.MaxValue], enable_big_arrays=$enableval, enable_big_arrays=no)
2083 if test "x$enable_big_arrays" = "xyes" ; then
2084     if  test "x$ac_cv_sizeof_void_p" = "x8"; then
2085         AC_DEFINE(MONO_BIG_ARRAYS,1,[Enable the allocation and indexing of arrays greater than Int32.MaxValue])
2086     else
2087         AC_MSG_ERROR([The allocation and indexing of arrays greater than Int32.MaxValue is not supported on this platform.])
2088     fi
2089 fi
2090 AC_MSG_RESULT($enable_big_arrays)
2091
2092 dnl **************
2093 dnl *** DTRACE ***
2094 dnl **************
2095
2096 AC_ARG_ENABLE(dtrace,[  --enable-dtrace Enable DTrace probes], enable_dtrace=$enableval, enable_dtrace=$has_dtrace)
2097
2098 if test "x$enable_dtrace" = "xyes"; then
2099    if test "x$has_dtrace" = "xno"; then
2100           AC_MSG_ERROR([DTrace probes are not supported on this platform.])
2101    fi
2102    AC_PATH_PROG(DTRACE, [dtrace], [no], [$PATH:/usr/sbin])
2103    if test "x$DTRACE" = "xno"; then
2104           AC_MSG_RESULT([dtrace utility not found, dtrace support disabled.])
2105           enable_dtrace=no
2106    elif ! $DTRACE -h -s $srcdir/data/mono.d > /dev/null 2>&1; then
2107           AC_MSG_RESULT([dtrace doesn't support -h option, dtrace support disabled.])
2108           enable_dtrace=no
2109    fi
2110 fi
2111
2112 dtrace_g=no
2113 if test "x$enable_dtrace" = "xyes"; then
2114         AC_DEFINE(ENABLE_DTRACE, 1, [Enable DTrace probes])
2115         DTRACEFLAGS=
2116         if test "x$ac_cv_sizeof_void_p" = "x8"; then
2117                 case "$host" in
2118                         powerpc-*-darwin*)
2119                         DTRACEFLAGS="-arch ppc64"
2120                         ;;
2121                         i*86-*-darwin*)
2122                         DTRACEFLAGS="-arch x86_64"
2123                         ;;
2124                         *)
2125                         DTRACEFLAGS=-64
2126                         ;;
2127                 esac
2128         else
2129                 case "$host" in
2130                         powerpc-*-darwin*)
2131                         DTRACEFLAGS="-arch ppc"
2132                         ;;
2133                         i*86-*-darwin*)
2134                         DTRACEFLAGS="-arch i386"
2135                         ;;
2136                         *)
2137                         DTRACEFLAGS=-32
2138                         ;;
2139                 esac
2140         fi
2141         AC_SUBST(DTRACEFLAGS)
2142         case "$host" in
2143                 *-*-solaris*)
2144                 dtrace_g=yes
2145                 ;;
2146         esac
2147         AC_CHECK_HEADERS([sys/sdt.h])
2148 fi
2149 AM_CONDITIONAL(ENABLE_DTRACE, [test x$enable_dtrace = xyes])
2150 AM_CONDITIONAL(DTRACE_G_REQUIRED, [test x$dtrace_g = xyes])
2151
2152 dnl **************
2153 dnl ***  NaCl  ***
2154 dnl **************
2155
2156 AC_ARG_ENABLE(nacl_codegen, [  --enable-nacl-codegen      Enable Native Client code generation], enable_nacl_codegen=$enableval, enable_nacl_codegen=no)
2157 AC_ARG_ENABLE(nacl_gc, [  --enable-nacl-gc           Enable Native Client garbage collection], enable_nacl_gc=$enableval, enable_nacl_gc=no)
2158
2159 AM_CONDITIONAL(NACL_CODEGEN, test x$enable_nacl_codegen != xno)
2160 if test "x$enable_nacl_codegen" = "xyes"; then
2161    MONO_NACL_ALIGN_MASK_OFF=1
2162    CPPFLAGS="$CPPFLAGS -D__native_client_codegen__"
2163    AC_DEFINE(TARGET_NACL, 1, [...])
2164 else
2165    MONO_NACL_ALIGN_MASK_OFF=0
2166    CPPFLAGS="$CPPFLAGS -D__default_codegen__"
2167 fi
2168 if test "x$enable_nacl_gc" = "xyes"; then
2169    CPPFLAGS="$CPPFLAGS -finstrument-for-thread-suspension -D__native_client_gc__"
2170 fi
2171 AC_SUBST(MONO_NACL_ALIGN_MASK_OFF)
2172
2173 dnl **************
2174 dnl ***  LLVM  ***
2175 dnl **************
2176
2177 AC_ARG_ENABLE(llvm,[  --enable-llvm     Enable the LLVM back-end], enable_llvm=$enableval, enable_llvm=no)
2178 AC_ARG_ENABLE(loadedllvm,[  --enable-loadedllvm Load the LLVM back-end dynamically], enable_llvm=$enableval && enable_loadedllvm=$enableval, enable_loadedllvm=no)
2179
2180 if test "x$enable_llvm" = "xyes"; then
2181    AC_PATH_PROG(LLVM_CONFIG, llvm-config, no)
2182    if test "x$LLVM_CONFIG" = "xno"; then
2183           AC_MSG_ERROR([llvm-config not found.])
2184    fi
2185
2186    # The output of --cflags seems to include optimizations flags too
2187    LLVM_CFLAGS=`$LLVM_CONFIG --cflags | sed -e 's/-O2//g' | sed -e 's/-O0//g' | sed -e 's/-fomit-frame-pointer//g' | sed -e 's/-fPIC//g'`
2188    # LLVM is compiled with -fno-rtti, so we need this too, since our classes inherit
2189    # from LLVM classes.
2190    LLVM_CXXFLAGS="`$LLVM_CONFIG --cxxflags` -fno-rtti"
2191    LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
2192    LLVM_LIBS=`$LLVM_CONFIG --libs core bitwriter jit mcjit x86codegen`
2193    LLVM_LIBS="$LLVM_LDFLAGS $LLVM_LIBS -lstdc++"
2194
2195    # Should be something like '2.6' or '2.7svn'
2196    llvm_version=`$LLVM_CONFIG --version`
2197    major_version=`echo $llvm_version | cut -c 1`
2198    minor_version=`echo $llvm_version | cut -c 3`
2199    AC_MSG_CHECKING(LLVM version)
2200    AC_MSG_RESULT($llvm_version)
2201    if echo $llvm_version | grep -q 'mono'; then
2202           AC_DEFINE(LLVM_MONO_BRANCH, 1, [Whenever we are using the mono branch of LLVM])
2203           LLVM_CXXFLAGS="$LLVM_CXXFLAGS -DLLVM_MONO_BRANCH"       
2204    else
2205           AC_MSG_ERROR([Compiling with stock LLVM is not supported, please use the Mono LLVM repo at https://github.com/mono/llvm, with the GIT branch which matches this version of mono, i.e. 'mono-2-10' for Mono 2.10.])
2206    fi
2207
2208    AC_DEFINE_UNQUOTED(LLVM_MAJOR_VERSION, $major_version, [Major version of LLVM libraries])
2209    AC_DEFINE_UNQUOTED(LLVM_MINOR_VERSION, $minor_version, [Minor version of LLVM libraries])
2210    AC_DEFINE_UNQUOTED(LLVM_VERSION, "$llvm_version", [Full version of LLVM libraties])
2211
2212    # Have to pass these on the command line since mini-llvm-cpp.h already includes
2213    # llvm's config.h
2214    LLVM_CXXFLAGS="$LLVM_CXXFLAGS -DLLVM_MAJOR_VERSION=$major_version -DLLVM_MINOR_VERSION=$minor_version"
2215
2216    AC_SUBST(LLVM_CFLAGS)
2217    AC_SUBST(LLVM_CXXFLAGS)
2218    AC_SUBST(LLVM_LIBS)
2219    AC_SUBST(LLVM_LDFLAGS)
2220    AC_DEFINE(ENABLE_LLVM, 1, [Enable the LLVM back end])
2221 fi
2222
2223 AM_CONDITIONAL(ENABLE_LLVM, [test x$enable_llvm = xyes])
2224 if test "x$enable_loadedllvm" = "xyes"; then
2225    AC_DEFINE(MONO_LLVM_LOADED, 1, [The LLVM back end is dynamically loaded])
2226 fi
2227 AM_CONDITIONAL(LOADED_LLVM, [test x$enable_loadedllvm = xyes])
2228
2229 TARGET="unknown"
2230 ACCESS_UNALIGNED="yes"
2231
2232 JIT_SUPPORTED=no
2233 INTERP_SUPPORTED=no
2234 LIBC="libc.so.6"
2235 INTL="libc.so.6"
2236 SQLITE="libsqlite.so.0"
2237 SQLITE3="libsqlite3.so.0"
2238 X11="libX11.so"
2239
2240 sizeof_register="SIZEOF_VOID_P"
2241
2242 jit_wanted=true
2243 interp_wanted=false
2244 sgen_supported=false
2245 case "$host" in
2246 #       mips-sgi-irix5.* | mips-sgi-irix6.*)
2247 #               TARGET=MIPS;
2248 #               ACCESS_UNALIGNED="no"
2249 #               ;;
2250         mips*)
2251                 TARGET=MIPS;
2252                 arch_target=mips;
2253                 sgen_supported=true
2254                 ACCESS_UNALIGNED="no"
2255                 JIT_SUPPORTED=yes
2256
2257                 AC_MSG_CHECKING(for mips n32)
2258                 AC_TRY_COMPILE([],[
2259                 #if _MIPS_SIM != _ABIN32
2260                 #error Not mips n32
2261                 #endif
2262                 return 0;
2263                 ],[
2264                 AC_MSG_RESULT(yes)
2265                 sizeof_register=8
2266                 ],[
2267                 AC_MSG_RESULT(no)
2268                 ])
2269                 ;;
2270         i*86-*-*)
2271                 TARGET=X86;
2272                 arch_target=x86;
2273                 JIT_SUPPORTED=yes
2274                 case $host_os in
2275                   solaris*)
2276                         LIBC="libc.so"
2277                         INTL="libintl.so"
2278                         if test "x$ac_cv_sizeof_void_p" = "x8"; then
2279                                 TARGET=AMD64
2280                                 arch_target=amd64
2281                         fi
2282
2283                         # On solaris 10 x86, gcc prints a warning saying 'visibility attribute not supported on this configuration; ignored', but linking fails. A test case:
2284                         # int astruct __attribute__ ((visibility ("hidden")));
2285                         # void foo ()
2286                         # {
2287                         #       void *p = &astruct;
2288                         # }
2289                         # gcc -fPIC --shared -o libfoo.so foo.c
2290                         # yields:
2291                         # foo.c:6: warning: visibility attribute not supported in this configuration; ignored
2292                         # ld: fatal: relocation error: R_386_GOTOFF: file /var/tmp//ccxYR96k.o: symbol astruct: relocation must bind locally
2293                         have_visibility_hidden=no
2294                         sgen_supported=true
2295                         ;;
2296                   cygwin*)
2297                         sgen_supported=true
2298                         have_visibility_hidden=no                 
2299                         ;;
2300                   haiku*)
2301                         LIBC=libroot.so
2302                         ;;
2303                   linux*)
2304                         sgen_supported=true
2305                         AOT_SUPPORTED="yes"
2306                         ;;
2307                   darwin*)
2308                         sgen_supported=true
2309                         AOT_SUPPORTED="yes"
2310                         ;;
2311                   darwin*|openbsd*|freebsd*)
2312                         sgen_supported=true
2313                         ;;
2314                 esac
2315                 ;;
2316         x86_64-*-* | amd64-*-*)
2317                 TARGET=AMD64;
2318                 arch_target=amd64;
2319                 JIT_SUPPORTED=yes
2320                 case $host_os in
2321                   linux*)
2322                         sgen_supported=true
2323                         AOT_SUPPORTED="yes"
2324                         ;;
2325                   darwin*|openbsd*|freebsd*)
2326                         sgen_supported=true
2327                         ;;
2328                 esac
2329                 case "$host" in
2330                         x86_64-*-nacl*)
2331                                 AC_DEFINE(__mono_ilp32__, 1, [64 bit mode with 4 byte longs and pointers])
2332                                 sizeof_register=8
2333                                 ;;
2334                 esac
2335                 ;;
2336         ia64-*-*)
2337                 TARGET=IA64
2338                 arch_target=ia64
2339                 ACCESS_UNALIGNED="no"
2340                 JIT_SUPPORTED=yes
2341                 LIBC="libc.so.6.1"
2342                 INTL="libc.so.6.1"
2343                 AC_CHECK_LIB(unwind, _U_dyn_register, [], [AC_MSG_ERROR(library libunwind not found)])
2344                 libmono_ldflags="-lunwind"
2345                 ;;
2346         sparc*-*-*)
2347                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
2348                    TARGET=SPARC64
2349                 else
2350                         TARGET=SPARC
2351                 fi
2352                 arch_target=sparc;
2353                 JIT_SUPPORTED=yes
2354                 ACCESS_UNALIGNED="no"
2355                 case $host_os in
2356                   linux*) ;;
2357                   *)
2358                         LIBC="libc.so"
2359                         INTL="libintl.so"
2360                 esac
2361                 if test x"$GCC" = xyes; then
2362                         # We don't support v8 cpus
2363                         CFLAGS="$CFLAGS -Wno-cast-align -mcpu=v9"
2364                 fi
2365                 if test x"$AR" = xfalse; then
2366                         AC_MSG_ERROR([The required utility 'ar' is not found in your PATH. Usually it can be found in /usr/ccs/bin.])
2367                 fi
2368                 sgen_supported=true
2369                 ;;
2370        alpha*-*-linux* | alpha*-*-osf*)
2371                 TARGET=ALPHA;
2372                 ACCESS_UNALIGNED="no"
2373                 JIT_SUPPORTED=yes
2374                 arch_target=alpha;
2375                 CFLAGS="$CFLAGS -mieee -O0"
2376                 case $host_os in
2377                   linux*)
2378                         LIBC="libc.so.6.1"
2379                         INTL="libc.so.6.1"
2380                 esac
2381                ;;
2382         *-mingw*|*-*-cygwin*)
2383                 # When this is enabled, it leads to very strange crashes at runtime (gcc-3.4.4)
2384                 have_visibility_hidden=no
2385                 INTL="intl"
2386                 ;;
2387         hppa2.0w-hp-hpux11.00 | hppa64-hp-hpux11.00)
2388                 TARGET=HPPA;
2389                 arch_target=hppa; 
2390                 LIBC="libc.sl"
2391                 ACCESS_UNALIGNED="no"
2392                 INTERP_SUPPORTED=yes
2393                 interp_wanted=true
2394                 ;;
2395         hppa*linux*)
2396                 TARGET=HPPA;
2397                 arch_target=hppa; 
2398                 ACCESS_UNALIGNED="no"
2399                 JIT_SUPPORTED=yes
2400                 ;;
2401         macppc-*-openbsd* | powerpc*-*-linux* | powerpc-*-openbsd* | \
2402         powerpc-*-sysv* | powerpc-*-darwin* | powerpc-*-netbsd* | powerpc-*-freebsd* )
2403                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
2404                         TARGET=POWERPC64;
2405                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__ -D__mono_ppc64__"
2406                         CFLAGS="$CFLAGS -mminimal-toc"
2407                 else
2408                         TARGET=POWERPC;
2409                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__"
2410                 fi
2411                 arch_target=ppc;
2412                 JIT_SUPPORTED=yes
2413                 case $host_os in
2414                   linux*|darwin*)
2415                         sgen_supported=true
2416                         ;;
2417                 esac
2418                 ;;
2419         arm*-darwin*)
2420                 TARGET=ARM;
2421                 arch_target=arm;
2422                 ACCESS_UNALIGNED="no"
2423                 JIT_SUPPORTED=yes
2424                 CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1 -D__ARM_EABI__ -DHAVE_ARMV6=1"
2425                 # libgc's gc_locks.h depends on this
2426             NESTED_LIBGC_FLAGS="$NESTED_LIBGC_FLAGS -DHAVE_ARMV6"
2427                 sgen_supported=true
2428                 ;;
2429         arm*-linux*)
2430                 TARGET=ARM;
2431                 arch_target=arm;
2432                 ACCESS_UNALIGNED="no"
2433                 JIT_SUPPORTED=yes
2434                 sgen_supported=true
2435                 AOT_SUPPORTED="yes"
2436                 ;;
2437         s390-*-linux*)
2438                 TARGET=S390;
2439                 arch_target=s390;
2440                 ACCESS_UNALIGNED="yes"
2441                 JIT_SUPPORTED=yes
2442                 sgen_supported=true
2443                 # Required CFLAGS for s390[x].  USE_STRING_INLINES is automatic with gcc 4.1
2444                 CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
2445                 ;;
2446         s390x-*-linux*)
2447                 TARGET=S390x;
2448                 arch_target=s390x;
2449                 ACCESS_UNALIGNED="yes"
2450                 JIT_SUPPORTED=yes
2451                 sgen_supported=true
2452                 CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
2453                 ;;
2454 esac
2455
2456 HOST=$TARGET
2457
2458 if test "x$host" != "x$target"; then
2459    AC_DEFINE(MONO_CROSS_COMPILE,1,[The runtime is compiled for cross-compiling mode])
2460    enable_mcs_build=no
2461    case "$target" in
2462    powerpc64-ps3-linux-gnu)
2463                 TARGET=POWERPC64
2464                 arch_target=powerpc64
2465                 AC_DEFINE(TARGET_PS3, 1, [...])
2466                 # It would be better to just use TARGET_POWERPC64, but lots of code already
2467                 # uses this define
2468                 AC_DEFINE(__mono_ppc64__, 1, [...])
2469                 AC_DEFINE(__mono_ilp32__, 1, [64 bit mode with 4 byte longs and pointers])
2470                 sizeof_register=8
2471                 target_byte_order=G_BIG_ENDIAN
2472                 ;;
2473
2474    powerpc64-xbox360-linux-gnu)
2475                 TARGET=POWERPC64
2476                 arch_target=powerpc64
2477                 AC_DEFINE(TARGET_XBOX360, 1, [...])
2478                 # It would be better to just use TARGET_POWERPC64, but lots of code already
2479                 # uses this define
2480                 sizeof_register=8
2481                 target_byte_order=G_BIG_ENDIAN
2482                 ;;
2483    x86_64-*-nacl)
2484                 TARGET=AMD64
2485                 arch_target=amd64
2486                 AC_DEFINE(TARGET_AMD64, 1, [...])
2487                 AC_DEFINE(__mono_ilp32__, 1, [64 bit mode with 4 byte longs and pointers])
2488                 sizeof_register=8
2489                 ;;
2490    *-*-nacl)
2491                 TARGET=X86
2492                 arch_target=x86
2493                 AC_DEFINE(TARGET_X86, 1, [...])
2494                 sizeof_register=4
2495                 ;;
2496    arm*-unknown-linux-gnueabi*)
2497                 TARGET=ARM;
2498                 arch_target=arm;
2499                 AC_DEFINE(TARGET_ARM, 1, [...])
2500                 ACCESS_UNALIGNED="no"
2501                 JIT_SUPPORTED=yes
2502                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
2503                 jit_wanted=true
2504                 # Can't use tls, since it depends on the runtime detection of tls offsets
2505                 # in mono-compiler.h
2506                 with_tls=pthread
2507                 target_mach=no
2508                 case "$target" in
2509                 armv7l-unknown-linux-gnueabi*)
2510                         # TEGRA
2511                         CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1"
2512                         ;;
2513                 armv5-*-linux-androideabi*)
2514                         AC_DEFINE(TARGET_ANDROID, 1, [...])
2515                         CPPFLAGS="$CPPFLAGS -DARM_FPU_NONE"
2516                         ;;
2517                 esac
2518                 ;;
2519         *)
2520                 AC_MSG_ERROR([Cross compiling is not supported for target $target])
2521         esac
2522 fi
2523
2524 # FIXME: Define the others as well
2525 case "$TARGET" in
2526 X86)
2527         AC_DEFINE(TARGET_X86, 1, [...])
2528         ;;
2529 AMD64)
2530         AC_DEFINE(TARGET_AMD64, 1, [...])
2531         ;;
2532 ARM)
2533         AC_DEFINE(TARGET_ARM, 1, [...])
2534         ;;
2535 POWERPC)
2536         AC_DEFINE(TARGET_POWERPC, 1, [...])
2537         ;;
2538 POWERPC64)
2539         AC_DEFINE(TARGET_POWERPC, 1, [...])
2540         AC_DEFINE(TARGET_POWERPC64, 1, [...])
2541         ;;
2542 S390x)
2543         AC_DEFINE(TARGET_S390X, 1, [...])
2544         ;;
2545 MIPS)
2546         AC_DEFINE(TARGET_MIPS, 1, [...])
2547         ;;
2548 esac
2549
2550 if test "x$target_mach" = "xyes"; then
2551    AC_DEFINE(TARGET_MACH,1,[The JIT/AOT targets Apple platforms])
2552 fi
2553
2554 if test "x$sizeof_register" = "x4"; then
2555    AC_DEFINE(SIZEOF_REGISTER,4,[size of machine integer registers])
2556 elif test "x$sizeof_register" = "x8"; then
2557    AC_DEFINE(SIZEOF_REGISTER,8,[size of machine integer registers])
2558 else
2559    AC_DEFINE(SIZEOF_REGISTER,SIZEOF_VOID_P,[size of machine integer registers])
2560 fi
2561
2562 if test "x$target_byte_order" = "xG_BIG_ENDIAN"; then
2563    AC_DEFINE(TARGET_BYTE_ORDER,G_BIG_ENDIAN,[byte order of target])
2564 elif test "x$target_byte_order" = "xG_LITTLE_ENDIAN"; then
2565    AC_DEFINE(TARGET_BYTE_ORDER,G_LITTLE_ENDIAN,[byte order of target])
2566 else
2567    AC_DEFINE(TARGET_BYTE_ORDER,G_BYTE_ORDER,[byte order of target])
2568 fi
2569
2570 if test "x$have_visibility_hidden" = "xyes"; then
2571    AC_DEFINE(HAVE_VISIBILITY_HIDDEN, 1, [Support for the visibility ("hidden") attribute])
2572 fi
2573
2574 if test "x$have_deprecated" = "xyes"; then
2575    AC_DEFINE(HAVE_DEPRECATED, 1, [Support for the deprecated attribute])
2576 fi
2577
2578 dnl 
2579 dnl Simple Generational checks (sgen)
2580 dnl
2581 if $sgen_supported; then
2582    build_sgen_default=yes
2583 else
2584    build_sgen_default=no
2585 fi
2586 SGEN_DEFINES=
2587 AC_ARG_WITH(sgen, [  --with-sgen=yes,no             Extra Generational GC, default=yes],[buildsgen=$with_sgen],[buildsgen=$build_sgen_default])
2588 if test x$buildsgen = xyes; then
2589    if $sgen_supported; then
2590        SGEN_DEFINES="-DHAVE_SGEN_GC -DHAVE_MOVING_COLLECTOR"
2591        gc_msg="sgen and $gc_msg"
2592    else
2593        buildsgen=no
2594        AC_MSG_WARN("Sgen is not supported on this platform")
2595    fi
2596 fi
2597 AC_SUBST(SGEN_DEFINES)
2598 AM_CONDITIONAL(SUPPORT_SGEN, test x$buildsgen = xyes)
2599
2600 USEJIT=false
2601 if test x$JIT_SUPPORTED = xyes; then
2602    if $jit_wanted; then
2603       USEJIT=true
2604       jit_status="Building and using the JIT"
2605    else
2606       if $interp_wanted; then
2607          jit_status="Building the JIT, defaulting to the interpreter"
2608       else
2609          AC_ERROR(No JIT or interpreter support available or selected.)
2610       fi
2611    fi
2612 else
2613    if test x$interp_wanted = xtrue; then
2614       jit_status="interpreter"
2615    else
2616       AC_ERROR(No JIT or interpreter support available or selected.)
2617    fi
2618 fi
2619
2620 AM_CONDITIONAL(USE_JIT, test x$USEJIT = xtrue)
2621
2622 libsuffix=".so"
2623
2624 case "$host" in
2625      *-*-darwin*)
2626         libsuffix=".dylib"
2627         LIBC="libc.dylib"
2628         INTL="libintl.dylib"
2629         SQLITE="libsqlite.0.dylib"
2630         SQLITE3="libsqlite3.0.dylib"
2631         X11="libX11.dylib"
2632         ;;
2633      *-*-*netbsd*)
2634         LIBC="libc.so.12"
2635         INTL="libintl.so.0"
2636         ;;
2637     *-*-*freebsd*)
2638         LIBC="libc.so"
2639         INTL="libintl.so"
2640         SQLITE="libsqlite.so"
2641         SQLITE3="libsqlite3.so"
2642         ;;
2643     *-*-*openbsd*)
2644         LIBC="libc.so"
2645         INTL="libintl.so"
2646         SQLITE="libsqlite.so"
2647         SQLITE3="libsqlite3.so"
2648         ;;
2649     *-*-*linux*)
2650         AC_PATH_X
2651         AC_MSG_CHECKING(for the soname of libX11.so)
2652         for i in $x_libraries /usr/lib /usr/lib64; do
2653                 for r in 4 5 6; do
2654                         if test -f $i/libX11.so.$r; then
2655                                 X11=libX11.so.$r
2656                                 AC_MSG_RESULT($X11)
2657                         fi
2658                 done
2659         done
2660         
2661         if test "x$X11" = "xlibX11.so"; then
2662                 AC_MSG_WARN([Could not find X development libs. Do you have the -devel package installed? Assuming libX11.so.6...]);
2663                 X11=libX11.so.6
2664         fi
2665         ;;
2666 esac
2667
2668
2669 AC_SUBST(libsuffix)
2670
2671 if test "x$TARGET" = "xAMD64" -o "x$TARGET" = "xX86"; then
2672         if test "x$with_tls" = "x__thread"; then
2673                 #
2674                 # On some linux distributions, TLS works in executables, but linking 
2675                 # against a shared library containing TLS fails with:
2676                 # undefined reference to `__tls_get_addr'
2677                 #
2678                 rm -f conftest.c conftest.so conftest
2679                 echo "static __thread int foo; int main () { foo = 5; return 0; }" > conftest.c
2680                 $CC -fPIC --shared -o conftest.so conftest.c > /dev/null 2>&1
2681                 $CC -o conftest conftest.so > /dev/null 2>&1
2682                 if test ! -f conftest; then
2683                    AC_MSG_WARN([Disabling usage of __thread.]);
2684                    with_tls=pthread
2685                 fi
2686                 rm -f conftest.c conftest.so conftest
2687         fi
2688 fi
2689
2690 mono_debugger_supported=no
2691 AC_ARG_ENABLE(mono-debugger, [  --disable-mono-debugger disable support for the mdb debugger], try_mono_debugger=$enableval, try_mono_debugger=yes)
2692 if test "x$try_mono_debugger" = "xyes"; then
2693         if test "x$TARGET" = "xAMD64" -o "x$TARGET" = "xX86" -o "x$TARGET" = "xALPHA" -o "x$TARGET" = "xS390x"; then
2694                 if test x$use_included_gc = xyes; then
2695                         case "$host" in
2696                         *-*-*linux*)
2697                                 mono_debugger_supported=yes
2698                                 ;;
2699                         *86-apple-darwin*)
2700                                 mono_debugger_supported=yes
2701                                 ;;              
2702                         esac
2703                 fi
2704         fi
2705 fi
2706
2707 # disable the debugger entirely when building with moonlight
2708 if test "x$with_moonlight" != "xno"; then
2709         mono_debugger_supported=no
2710 fi
2711
2712 # mdb support for sgen is broken, disable it until further notice.
2713 mono_debugger_supported=no
2714
2715 AC_MSG_CHECKING(if the Mono Debugger is supported on this platform)
2716 if test "x$mono_debugger_supported" = "xyes"; then
2717         BOEHM_DEFINES="$BOEHM_DEFINES -DMONO_DEBUGGER_SUPPORTED"
2718         NESTED_LIBGC_FLAGS="-DMONO_DEBUGGER_SUPPORTED"
2719 fi
2720 AM_CONDITIONAL(MONO_DEBUGGER_SUPPORTED, test x$mono_debugger_supported = xyes)
2721 AC_MSG_RESULT($mono_debugger_supported)
2722
2723 AC_ARG_ENABLE(icall-symbol-map,[  --enable-icall-symbol-map Generate tables which map icall functions to their C symbols], icall_symbol_map=$enableval, icall_symbol_map=no)
2724 if test "x$icall_symbol_map" = "xyes"; then
2725    AC_DEFINE(ENABLE_ICALL_SYMBOL_MAP, 1, [Icall symbol map enabled])
2726 fi
2727
2728 AC_ARG_ENABLE(icall-export,[  --enable-icall-export Export icall functions], icall_export=$enableval, icall_export=no)
2729 if test "x$icall_export" = "xyes"; then
2730    AC_DEFINE(ENABLE_ICALL_EXPORT, 1, [Icall export enabled])
2731 fi
2732
2733 AC_ARG_ENABLE(icall-tables,[  --disable-icall-tables Disable the runtime lookup of icalls], icall_tables=$enableval, icall_tables=yes)
2734 if test "x$icall_tables" = "xno"; then
2735    AC_DEFINE(DISABLE_ICALL_TABLES, 1, [Icall tables disabled])
2736 fi
2737
2738 if test "x$with_tls" = "x__thread"; then
2739         AC_DEFINE(HAVE_KW_THREAD, 1, [Have __thread keyword])
2740         # Pass the information to libgc
2741         CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
2742         AC_MSG_CHECKING(if the tls_model attribute is supported)
2743         AC_TRY_COMPILE([static __thread int foo __attribute__((tls_model("initial-exec")));], [
2744                 ], [
2745                         AC_MSG_RESULT(yes)
2746                         # CLANG doesn't support this yet, and it prints warnings about it
2747                         if test "x$mono_cv_clang" = "xno"; then
2748                                 AC_DEFINE(HAVE_TLS_MODEL_ATTR, 1, [tld_model available])
2749                         fi
2750                 ], [
2751                         AC_MSG_RESULT(no)
2752         ])
2753 fi
2754
2755 if test ${TARGET} = ARM && test x$cross_compiling = xno && test x$enable_mcs_build != xno; then
2756         dnl ******************************************
2757         dnl *** Check to see what FPU is available ***
2758         dnl ******************************************
2759         AC_MSG_CHECKING(which FPU to use)
2760
2761         fpu=NONE
2762         if gcc -v 2>&1 | grep -q -- '--with-float=hard'; then
2763            fpu=VFP_HARD
2764         fi
2765
2766         if test x$fpu = xNONE; then
2767            ORIG_CFLAGS=$CFLAGS
2768            CFLAGS="$CFLAGS -mfpu=vfp -mfloat-abi=softfp"
2769            AC_TRY_RUN([
2770                                 int main () { __asm__ ("faddd   d7, d6, d7"); return 0; }
2771                                 ], fpu=VFP, fpu=NONE)
2772            CFLAGS=$ORIG_CFLAGS
2773         fi
2774
2775         if test x$fpu = xNONE; then
2776                 AC_TRY_COMPILE([], [
2777                         __asm__ ("ldfd f0, [r0]");
2778                         ], fpu=FPA, fpu=NONE)
2779         fi
2780
2781         AC_MSG_RESULT($fpu)
2782         CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu=1"
2783         unset fpu
2784
2785         AC_MSG_CHECKING(for ARMV6)
2786         AC_TRY_RUN([
2787                 int main () { __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r" (0) : "memory"); return 0; }
2788                         ], armv6=yes, armv6=no)
2789
2790         AC_MSG_RESULT($armv6)
2791         if test ${armv6} = yes; then
2792            AC_DEFINE(HAVE_ARMV6, 1, "Host supports ARMV6 instructions")
2793            # libgc's gc_locks.h depends on this
2794            NESTED_LIBGC_FLAGS="$NESTED_LIBGC_FLAGS -DHAVE_ARMV6"
2795         fi
2796 fi
2797
2798 if test ${TARGET} = unknown; then
2799         CPPFLAGS="$CPPFLAGS -DNO_PORT"
2800         AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
2801 fi
2802
2803 if test ${ACCESS_UNALIGNED} = no; then
2804         CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
2805 fi
2806
2807 case "x$gc" in
2808         xincluded)
2809                 # Pass CPPFLAGS to libgc configure
2810                 # We should use a separate variable for this to avoid passing useless and
2811                 # potentially problematic defines to libgc (like -D_FILE_OFFSET_BITS=64)
2812                 # This should be executed late so we pick up the final version of CPPFLAGS
2813                 # The problem with this approach, is that during a reconfigure, the main
2814                 # configure scripts gets invoked with these arguments, so we use separate
2815                 # variables understood by libgc's configure to pass CPPFLAGS and CFLAGS.
2816                 TMP_CPPFLAGS="$CPPFLAGS $NESTED_LIBGC_FLAGS"
2817                 if test x$TARGET = xSPARC -o x$TARGET = xSPARC64; then
2818                         TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-D_FILE_OFFSET_BITS=64//g'`
2819                 fi
2820                 # Don't pass -finstrument-for-thread-suspension in, 
2821                 # if these are instrumented it will be very bad news 
2822                 # (infinite recursion, undefined parking behavior, etc)
2823                 TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-finstrument-for-thread-suspension//g'`
2824                 ac_configure_args="$ac_configure_args --disable-embed-check --with-libgc-threads=$libgc_threads $libgc_configure_args \"CPPFLAGS_FOR_LIBGC=$TMP_CPPFLAGS\" \"CFLAGS_FOR_LIBGC=$CFLAGS_FOR_LIBGC\""
2825                 AC_CONFIG_SUBDIRS(libgc)
2826                 ;;
2827 esac
2828
2829 AC_ARG_WITH(profile2,  [  --with-profile2=yes,no          If you want to install the 2.0/3.5 FX (defaults to yes)],            [], [with_profile2=yes])
2830 AC_ARG_WITH(profile4,  [  --with-profile4=yes,no          If you want to install the 4.0 FX (defaults to yes)],                [], [with_profile4=yes])
2831 AC_ARG_WITH(profile4_5,[  --with-profile4_5=yes,no        If you want to install the 4.5 FX (defaults to yes)],                [], [with_profile4_5=yes])
2832 AC_ARG_WITH(monodroid, [  --with-monodroid=yes,no         If you want to build the MonoDroid assemblies (defaults to no)],     [], [with_monodroid=no])
2833 AC_ARG_WITH(monotouch, [  --with-monotouch=yes,no,only    If you want to build the MonoTouch assemblies (defaults to no)],     [], [with_monotouch=no])
2834
2835 OPROFILE=no
2836 AC_ARG_WITH(oprofile,[  --with-oprofile=no,<oprofile install dir>   Enable oprofile support (defaults to no)],[
2837         if test x$with_oprofile != xno; then
2838             oprofile_include=$with_oprofile/include
2839             if test ! -f $oprofile_include/opagent.h; then
2840                   AC_MSG_ERROR([oprofile include file not found at $oprofile_include/opagent.h])
2841                 fi
2842             OPROFILE=yes
2843                 OPROFILE_CFLAGS="-I$oprofile_include"
2844             OPROFILE_LIBS="-L$with_oprofile/lib/oprofile -lopagent"
2845             AC_DEFINE(HAVE_OPROFILE,1,[Have oprofile support])
2846         fi
2847 ])
2848
2849 MALLOC_MEMPOOLS=no
2850 AC_ARG_WITH(malloc_mempools,[  --with-malloc-mempools=yes,no  Use malloc for each single mempool allocation (only for runtime debugging, defaults to no)],[
2851         if test x$with_malloc_mempools = xyes; then
2852                 MALLOC_MEMPOOLS=yes
2853                 AC_DEFINE(USE_MALLOC_FOR_MEMPOOLS,1,[Use malloc for each single mempool allocation])
2854         fi
2855 ])
2856
2857
2858 DISABLE_MCS_DOCS=no
2859 AC_ARG_WITH(mcs_docs,[  --with-mcs-docs=yes,no         If you want to build the documentation under mcs (defaults to yes)],[
2860         if test x$with_mcs_docs != xyes; then
2861                 DISABLE_MCS_DOCS=yes
2862         fi
2863 ])
2864 if test x$with_profile4 != xyes; then
2865         DISABLE_MCS_DOCS=yes
2866 fi
2867
2868 MOONLIGHT_DEFINES=
2869 AC_ARG_WITH(moonlight, [  --with-moonlight=yes|no|only         If you want to build Mono for Moonlight (defaults to no)],[
2870         if test x$with_moonlight != xno; then
2871         MOONLIGHT_DEFINES="-DMOONLIGHT -DDISABLE_ASSEMBLY_REMAPPING "
2872         fi
2873 ], [with_moonlight=no])
2874 AC_SUBST(MOONLIGHT_DEFINES)
2875
2876 AC_ARG_WITH(moon_gc, [  --with-moon-gc=boehm,sgen               Select the gc to use with Moonlight (defaults to boehm)],[
2877         if test "x$with_moon_gc" != "xsgen"; then
2878                 with_moon_gc=boehm
2879         fi
2880 ], [with_moon_gc=boehm])
2881
2882 AC_CHECK_HEADER([malloc.h], 
2883                 [AC_DEFINE([HAVE_USR_INCLUDE_MALLOC_H], [1], 
2884                         [Define to 1 if you have /usr/include/malloc.h.])],,)
2885
2886 if test x"$GCC" = xyes; then
2887         # Implicit function declarations are not 64 bit safe
2888         # Do this late, since this causes lots of configure tests to fail
2889         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
2890         # jay has a lot of implicit declarations
2891         JAY_CFLAGS="-Wno-implicit-function-declaration"
2892 fi
2893
2894 # When --disable-shared is used, libtool transforms libmono-2.0.la into libmono-2.0.so
2895 # instead of libmono-static.a
2896 if test "x$enable_shared" = "xno"; then
2897    LIBMONO_LA=libmini-static.la
2898 else
2899    LIBMONO_LA=libmono-$API_VER.la
2900 fi
2901 AC_SUBST(LIBMONO_LA)
2902
2903 dnl
2904 dnl Consistency settings
2905 dnl
2906 if test x$cross_compiling = xyes -o x$enable_mcs_build = xno; then
2907    DISABLE_MCS_DOCS=yes
2908    with_profile2=no
2909    with_profile4=no
2910    with_profile4_5=no
2911    with_monodroid=no
2912    with_monotouch=no
2913 fi
2914
2915 if test x$DISABLE_MCS_DOCS = xyes; then
2916    docs_dir=""
2917 else
2918    docs_dir=docs
2919 fi
2920 AC_SUBST(docs_dir)
2921
2922 ## Maybe should also disable if mcsdir is invalid.  Let's punt the issue for now.
2923 AM_CONDITIONAL(BUILD_MCS, [test x$cross_compiling = xno && test x$enable_mcs_build != xno])
2924
2925 AM_CONDITIONAL(HAVE_OPROFILE, test x$OPROFILE = xyes)
2926 AC_SUBST(OPROFILE_CFLAGS)
2927 AC_SUBST(OPROFILE_LIBS)
2928
2929 libmono_ldflags="$libmono_ldflags $LIBS"
2930
2931 AM_CONDITIONAL(MOONLIGHT, [test "x$with_moonlight" != "xno"])
2932
2933 AM_CONDITIONAL(ONLY_MOONLIGHT, [test "x$with_moonlight" = "xonly"])
2934 AM_CONDITIONAL(MOONLIGHT_BOEHM, [test "x$with_moon_gc" = "xboehm"])
2935 AM_CONDITIONAL(MOONLIGHT_SGEN, [test "x$with_moon_gc" = "xsgen"])
2936
2937 AM_CONDITIONAL(INSTALL_2_0, [test "x$with_profile2" = xyes])
2938 AM_CONDITIONAL(INSTALL_4_0, [test "x$with_profile4" = xyes])
2939 AM_CONDITIONAL(INSTALL_4_5, [test "x$with_profile4_5" = xyes])
2940 AM_CONDITIONAL(INSTALL_MONODROID, [test "x$with_monodroid" != "xno"])
2941 AM_CONDITIONAL(INSTALL_MONOTOUCH, [test "x$with_monotouch" != "xno"])
2942
2943 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
2944 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
2945 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
2946 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
2947 AM_CONDITIONAL(X86, test x$TARGET = xX86)
2948 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
2949 AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA)
2950 AM_CONDITIONAL(IA64, test x$TARGET = xIA64)
2951 AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
2952 AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
2953 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
2954 AM_CONDITIONAL(POWERPC64, test x$TARGET = xPOWERPC64)
2955 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
2956 AM_CONDITIONAL(S390, test x$TARGET = xS390)
2957 AM_CONDITIONAL(S390x, test x$TARGET = xS390x)
2958 AM_CONDITIONAL(HPPA, test x$TARGET = xHPPA)
2959 AM_CONDITIONAL(HOST_X86, test x$HOST = xX86)
2960 AM_CONDITIONAL(HOST_AMD64, test x$HOST = xAMD64)
2961 AM_CONDITIONAL(HOST_ARM, test x$HOST = xARM)
2962
2963 AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
2964 AM_CONDITIONAL(INTERP_SUPPORTED, test x$interp_wanted = xtrue)
2965 AM_CONDITIONAL(INCLUDED_LIBGC, test x$gc = xincluded)
2966
2967 AC_SUBST(LIBC)
2968 AC_SUBST(INTL)
2969 AC_SUBST(SQLITE)
2970 AC_SUBST(SQLITE3)
2971 AC_SUBST(X11)
2972 AC_DEFINE_UNQUOTED(ARCHITECTURE,"$arch_target",[The architecture this is running on])
2973 AC_SUBST(arch_target)
2974 AC_SUBST(CFLAGS)
2975 AC_SUBST(CPPFLAGS)
2976 AC_SUBST(LDFLAGS)
2977
2978 mono_build_root=`pwd`
2979 AC_SUBST(mono_build_root)
2980
2981 if test x$USEJIT = xtrue; then
2982   mono_runtime=mono/mini/mono
2983 else
2984   mono_runtime=mono/interpreter/mint
2985 fi
2986 AC_SUBST(mono_runtime)
2987
2988 mono_cfg_root=$mono_build_root/runtime
2989 if test x$host_win32 = xyes; then
2990   if test "x$cross_compiling" = "xno"; then
2991     mono_cfg_dir=`cygpath -w -a $mono_cfg_root`\\etc
2992   else
2993     mono_cfg_dir=`echo $mono_cfg_root | tr '/' '\\'`\\etc
2994   fi
2995 else
2996   mono_cfg_dir=$mono_cfg_root/etc
2997 fi
2998 AC_SUBST(mono_cfg_dir)
2999
3000 AC_CONFIG_FILES([po/mcs/Makefile.in])
3001
3002 AC_CONFIG_FILES([runtime/mono-wrapper],[chmod +x runtime/mono-wrapper])
3003 AC_CONFIG_FILES([runtime/monodis-wrapper],[chmod +x runtime/monodis-wrapper])
3004
3005 AC_CONFIG_COMMANDS([runtime/etc/mono/1.0/machine.config],
3006 [   depth=../../../..
3007     case $srcdir in
3008     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3009     .) reldir=$depth ;;
3010     *) reldir=$depth/$srcdir ;;
3011     esac
3012     $ac_aux_dir/install-sh -d runtime/etc/mono/1.0
3013     cd runtime/etc/mono/1.0
3014     rm -f machine.config
3015     $LN_S $reldir/data/net_1_1/machine.config machine.config
3016     cd $depth
3017 ],[LN_S='$LN_S'])
3018
3019 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/machine.config],
3020 [   depth=../../../..
3021     case $srcdir in
3022     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3023     .) reldir=$depth ;;
3024     *) reldir=$depth/$srcdir ;;
3025     esac
3026     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
3027     cd runtime/etc/mono/2.0
3028     rm -f machine.config
3029     $LN_S $reldir/data/net_2_0/machine.config machine.config
3030     cd $depth
3031 ],[LN_S='$LN_S'])
3032
3033 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/web.config],
3034 [   depth=../../../..
3035     case $srcdir in
3036     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3037     .) reldir=$depth ;;
3038     *) reldir=$depth/$srcdir ;;
3039     esac
3040     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
3041     cd runtime/etc/mono/2.0
3042     rm -f web.config
3043     $LN_S $reldir/data/net_2_0/web.config web.config
3044     cd $depth
3045 ],[LN_S='$LN_S'])
3046
3047 AC_CONFIG_COMMANDS([runtime/etc/mono/browscap.ini],
3048 [   depth=../../..
3049     case $srcdir in
3050     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3051     .) reldir=$depth ;;
3052     *) reldir=$depth/$srcdir ;;
3053     esac
3054     $ac_aux_dir/install-sh -d runtime/etc/mono/
3055     cd runtime/etc/mono/
3056     rm -f browscap.ini
3057     $LN_S $reldir/data/browscap.ini browscap.ini
3058     cd $depth
3059 ],[LN_S='$LN_S'])
3060
3061 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/Browsers/Compat.browser],
3062 [   depth=../../../../..
3063     case $srcdir in
3064     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3065     .) reldir=$depth ;;
3066     *) reldir=$depth/$srcdir ;;
3067     esac
3068     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0/Browsers/
3069     cd runtime/etc/mono/2.0/Browsers
3070     rm -f Compat.browser
3071     $LN_S $reldir/data/net_2_0/Browsers/Compat.browser Compat.browser
3072     cd $depth
3073 ],[LN_S='$LN_S'])
3074
3075 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/machine.config],
3076 [   depth=../../../..
3077     case $srcdir in
3078     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3079     .) reldir=$depth ;;
3080     *) reldir=$depth/$srcdir ;;
3081     esac
3082     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
3083     cd runtime/etc/mono/4.0
3084     rm -f machine.config
3085     $LN_S $reldir/data/net_4_0/machine.config machine.config
3086     cd $depth
3087 ],[LN_S='$LN_S'])
3088
3089 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/web.config],
3090 [   depth=../../../..
3091     case $srcdir in
3092     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3093     .) reldir=$depth ;;
3094     *) reldir=$depth/$srcdir ;;
3095     esac
3096     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
3097     cd runtime/etc/mono/4.0
3098     rm -f web.config
3099     $LN_S $reldir/data/net_4_0/web.config web.config
3100     cd $depth
3101 ],[LN_S='$LN_S'])
3102
3103 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/machine.config],
3104 [   depth=../../../..
3105     case $srcdir in
3106     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3107     .) reldir=$depth ;;
3108     *) reldir=$depth/$srcdir ;;
3109     esac
3110     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
3111     cd runtime/etc/mono/4.5
3112     rm -f machine.config
3113     $LN_S $reldir/data/net_4_5/machine.config machine.config
3114     cd $depth
3115 ],[LN_S='$LN_S'])
3116
3117 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/web.config],
3118 [   depth=../../../..
3119     case $srcdir in
3120     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
3121     .) reldir=$depth ;;
3122     *) reldir=$depth/$srcdir ;;
3123     esac
3124     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
3125     cd runtime/etc/mono/4.5
3126     rm -f web.config
3127     $LN_S $reldir/data/net_4_5/web.config web.config
3128     cd $depth
3129 ],[LN_S='$LN_S'])
3130
3131 AC_CONFIG_COMMANDS([quiet-libtool], [sed -e 's/echo "copying selected/# "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool; sed -e 's/$ECHO "copying selected/# "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool])
3132
3133 AC_OUTPUT([
3134 Makefile
3135 mono-core.spec
3136 mono-uninstalled.pc
3137 scripts/mono-find-provides
3138 scripts/mono-find-requires
3139 mono/Makefile
3140 mono/utils/Makefile
3141 mono/metadata/Makefile
3142 mono/dis/Makefile
3143 mono/cil/Makefile
3144 mono/arch/Makefile
3145 mono/arch/x86/Makefile
3146 mono/arch/amd64/Makefile
3147 mono/arch/hppa/Makefile
3148 mono/arch/ppc/Makefile
3149 mono/arch/sparc/Makefile
3150 mono/arch/s390/Makefile
3151 mono/arch/s390x/Makefile
3152 mono/arch/arm/Makefile
3153 mono/arch/alpha/Makefile
3154 mono/arch/ia64/Makefile
3155 mono/arch/mips/Makefile
3156 mono/interpreter/Makefile
3157 mono/tests/Makefile
3158 mono/tests/tests-config
3159 mono/tests/assemblyresolve/Makefile
3160 mono/tests/cas/Makefile
3161 mono/tests/cas/assembly/Makefile
3162 mono/tests/cas/demand/Makefile
3163 mono/tests/cas/inheritance/Makefile
3164 mono/tests/cas/linkdemand/Makefile
3165 mono/tests/cas/threads/Makefile
3166 mono/benchmark/Makefile
3167 mono/monograph/Makefile
3168 mono/io-layer/Makefile
3169 mono/mini/Makefile
3170 mono/profiler/Makefile
3171 m4/Makefile
3172 ikvm-native/Makefile
3173 scripts/Makefile
3174 man/Makefile
3175 docs/Makefile
3176 data/Makefile
3177 data/net_2_0/Makefile
3178 data/net_4_0/Makefile
3179 data/net_4_5/Makefile
3180 data/net_2_0/Browsers/Makefile
3181 data/mint.pc
3182 data/mono-2.pc
3183 data/monosgen-2.pc
3184 data/mono.pc
3185 data/mono-cairo.pc
3186 data/mono-nunit.pc
3187 data/mono-options.pc
3188 data/mono-lineeditor.pc
3189 data/monodoc.pc
3190 data/mono.web.pc
3191 data/dotnet.pc
3192 data/dotnet35.pc
3193 data/wcf.pc
3194 data/cecil.pc
3195 data/system.web.extensions_1.0.pc
3196 data/system.web.extensions.design_1.0.pc
3197 data/system.web.mvc.pc
3198 data/system.web.mvc2.pc
3199 data/system.web.mvc3.pc
3200 data/aspnetwebstack.pc
3201 samples/Makefile
3202 support/Makefile
3203 data/config
3204 tools/Makefile
3205 tools/locale-builder/Makefile
3206 tools/sgen/Makefile
3207 runtime/Makefile
3208 msvc/Makefile
3209 po/Makefile
3210 ])
3211
3212 # Update all submodules recursively to ensure everything is checked out
3213 $srcdir/scripts/update_submodules
3214
3215 if test x$host_win32 = xyes; then
3216    # Get rid of 'cyg' prefixes in library names
3217    sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
3218    # libtool seems to inherit -mno-cygwin from our CFLAGS, and uses it to compile its executable
3219    # wrapper scripts which use exec(). gcc has no problem compiling+linking this, but the resulting
3220    # executable doesn't work...
3221    sed -e "s,-mno-cygwin,,g" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
3222 fi
3223
3224 (
3225   case $prefix in
3226   NONE) prefix=$ac_default_prefix ;;
3227   esac
3228   case $exec_prefix in
3229   NONE) exec_prefix='${prefix}' ;;
3230   esac
3231
3232   #
3233   # If we are cross compiling, we don't build in the mcs/ tree.  Let us not clobber
3234   # any existing config.make.  This allows people to share the same source tree
3235   # with different build directories, one native and one cross
3236   #
3237   if test x$cross_compiling = xno && test x$enable_mcs_build != xno; then
3238
3239     test -w $mcs_topdir/build || chmod +w $mcs_topdir/build
3240
3241     echo "prefix=$prefix" > $mcs_topdir/build/config.make
3242     echo "exec_prefix=$exec_prefix" >> $mcs_topdir/build/config.make
3243     echo "sysconfdir=$sysconfdir" >> $mcs_topdir/build/config.make
3244     echo 'mono_libdir=${exec_prefix}/lib' >> $mcs_topdir/build/config.make
3245     echo 'IL_FLAGS = /debug' >> $mcs_topdir/build/config.make
3246     echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $mcs_topdir/build/config.make
3247     echo "ILDISASM = $mono_build_root/runtime/monodis-wrapper" >> $mcs_topdir/build/config.make
3248     echo "JAY_CFLAGS = $JAY_CFLAGS" >> $mcs_topdir/build/config.make
3249
3250     case $INSTALL in
3251     [[\\/$]]* | ?:[[\\/]]* ) mcs_INSTALL=$INSTALL ;;
3252     *) mcs_INSTALL=$mono_build_root/$INSTALL ;;
3253     esac
3254
3255     echo "INSTALL = $mcs_INSTALL" >> $mcs_topdir/build/config.make
3256
3257     export VERSION
3258     [myver=$($AWK 'BEGIN {
3259       split (ENVIRON["VERSION"] ".0.0.0", vsplit, ".")
3260       if(length(vsplit [1]) > 4) {
3261         split (substr(ENVIRON["VERSION"], 0, 4) "." substr(ENVIRON["VERSION"], 5) ".0.0", vsplit, ".")
3262       }
3263       print vsplit [1] "." vsplit [2] "." vsplit [3] "." vsplit [4]
3264     }')]
3265
3266     echo "MONO_VERSION = $myver" >> $mcs_topdir/build/config.make
3267
3268     if test x$platform_darwin = xyes; then
3269       echo "PLATFORM = darwin" >> $mcs_topdir/build/config.make
3270     fi
3271
3272         if test x$AOT_SUPPORTED = xyes -a x$enable_system_aot = xdefault; then
3273            enable_system_aot=yes
3274         fi
3275
3276         if test "x$enable_loadedllvm" = "xyes"; then
3277            # This seems to fail on the x86 buildbots
3278            enable_system_aot=no
3279         fi
3280
3281     if test x$host_win32 = xno -a x$enable_system_aot = xyes; then
3282       echo "ENABLE_AOT = 1" >> $mcs_topdir/build/config.make
3283     fi
3284
3285     if test x$DISABLE_MCS_DOCS = xyes; then
3286       echo "DISABLE_MCS_DOCS = yes" >> $mcs_topdir/build/config.make
3287     fi
3288
3289     if test x$with_moonlight != xno; then
3290       echo "MOONLIGHT = 1" >> $srcdir/$mcsdir/build/config.make
3291     fi
3292
3293         default_profile=net_2_0
3294     if test -z "$INSTALL_4_0_TRUE"; then :
3295                 default_profile=net_4_0
3296     fi
3297     if test -z "$INSTALL_MONODROID_TRUE"; then :
3298                 default_profile=monodroid
3299     fi
3300     if test -z "$INSTALL_MONOTOUCH_TRUE"; then :
3301                 default_profile=monotouch
3302     fi
3303     if test -z "$INSTALL_4_5_TRUE"; then :
3304                 default_profile=net_4_5
3305     fi
3306     
3307     echo "DEFAULT_PROFILE = $default_profile" >> $srcdir/$mcsdir/build/config.make
3308     
3309     if test "x$test_bcl_opt" = "xyes"; then    
3310       echo "BCL_OPTIMIZE = 1" >> $srcdir/$mcsdir/build/config.make
3311     fi
3312
3313   fi
3314
3315   # if we have an olive folder, override the default settings
3316   if test -d $olivedir; then
3317
3318     if test x$cross_compiling = xno && test x$enable_olive_build != xno; then
3319
3320       test -w $srcdir/$olivedir/build || chmod +w $srcdir/$olivedir/build
3321
3322       echo "prefix=$prefix" > $srcdir/$olivedir/build/config.make
3323       echo "exec_prefix=$exec_prefix" >> $srcdir/$olivedir/build/config.make
3324       echo 'mono_libdir=${exec_prefix}/lib' >> $srcdir/$olivedir/build/config.make
3325       echo 'MCS_FLAGS = $(PLATFORM_DEBUG_FLAGS)' >> $srcdir/$olivedir/build/config.make
3326       echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $srcdir/$olivedir/build/config.make
3327       echo "MONO_VERSION = $myver" >> $srcdir/$olivedir/build/config.make
3328     fi
3329   fi
3330
3331 )
3332
3333 libgdiplus_msg=${libgdiplus_loc:-assumed to be installed}
3334
3335 echo "
3336         mcs source:    $mcsdir
3337
3338    Engine:
3339         GC:            $gc_msg 
3340         TLS:           $with_tls
3341         SIGALTSTACK:   $with_sigaltstack
3342         Engine:        $jit_status
3343         oprofile:      $OPROFILE
3344         BigArrays:     $enable_big_arrays
3345         DTrace:        $enable_dtrace
3346         LLVM Back End: $enable_llvm (dynamically loaded: $enable_loadedllvm)
3347
3348    Libraries:
3349         .NET 2.0/3.5:  $with_profile2
3350         .NET 4.0:      $with_profile4
3351         .NET 4.5:      $with_profile4_5
3352         MonoDroid:     $with_monodroid
3353         MonoTouch:     $with_monotouch
3354         JNI support:   $jdk_headers_found
3355         libgdiplus:    $libgdiplus_msg
3356         zlib:          $zlib_msg
3357         $disabled
3358 "
3359 if test x$with_static_mono = xno -a "x$host_win32" != "xyes"; then
3360    AC_MSG_WARN(Turning off static Mono is a risk, you might run into unexpected bugs)
3361 fi