[cxx] Compile mini-llvm.c as C++ if configure -enable-cxx. (#17558)
[mono-project.git] / configure.ac
blobb5384c2f40ae5ccdbb367ec255ed12c5f73c1b39
1 # Process this file with autoconf to produce a configure script.
2 #AC_PREREQ([2.62])
4 # This line is parsed by tools besides autoconf, such as msvc/mono.winconfig.targets.
5 # It should remain in the format they expect.
7 AC_INIT(mono, [6.9.0],
8         [https://github.com/mono/mono/issues/new])
10 AC_CONFIG_SRCDIR([README.md])
11 AC_CONFIG_MACRO_DIR([m4])
13 AC_CANONICAL_SYSTEM
14 AC_CANONICAL_HOST
16 # Gross hack to enable 'make dist' on automake 1.9+tar 1.14.
17 # The extra brackets are to foil regex-based scans.
18 m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
20 AM_INIT_AUTOMAKE([1.9 dist-xz tar-ustar no-dist-gzip foreign]
21                  m4_esyscmd([case `automake --version | head -n 1` in    # parallel-tests is default in automake 1.13+, we need to explicitly enable it
22                              *1.11*|*1.12*) echo parallel-tests;;        # for 1.11 and 1.12 but not below as those versions don't recognize the flag
23                              esac]))                                     # TODO: remove this hack once we require automake 1.11+
25 AC_CONFIG_HEADERS([config.h])
26 AM_MAINTAINER_MODE
27 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test]))
28 m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test-bundle]))
30 API_VER=2.0
31 AC_SUBST(API_VER)
33 AC_PROG_LN_S
35 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
37 MONO_VERSION_MAJOR=`echo $VERSION | cut -d . -f 1`
38 MONO_VERSION_MINOR=`echo $VERSION | cut -d . -f 2`
39 MONO_VERSION_BUILD=`echo $VERSION | cut -d . -f 3`
42 # This is the version of the corlib-runtime interface. When
43 # making changes to this interface (by changing the layout
44 # of classes the runtime knows about, changing icall signature or
45 # semantics etc), change this variable.
47 # This must be unique relative to corlib interface and semantics.
49 # If you change corlib such that a runtime change is required, or
50 # vice versa, change this string. Examples include removing icalls,
51 # adding icalls, changing icall signatures, and changing type layouts
52 # that both sides know.
54 # It is an arbitrary string and should be parsed as such.
55 # A guid works and is encouraged.
57 # Generate it with uuidgen. For example:
58 # perl -pi.bak -e "s/^MONO_CORLIB_VERSION=\S+/MONO_CORLIB_VERSION=`uuidgen`/" configure.ac
60 # There is no ordering of corlib versions, no old or new,
61 # an exact match is required between corlib and runtime.
63 # This line is parsed by tools besides autoconf, such as msvc/mono.winconfig.targets.
64 # It should remain in the format they expect.
66 MONO_CORLIB_VERSION=811DFDEB-0230-4C72-91AD-A1AC9CFDA823
69 # Put a quoted #define in config.h.
70 # Substitute @MONO_CORLIB_VERSION@ unquoted.
72 AC_DEFINE_UNQUOTED(MONO_CORLIB_VERSION,"$MONO_CORLIB_VERSION",[Version of the corlib-runtime interface])
73 AC_SUBST(MONO_CORLIB_VERSION)
75 case $host_os in
76 *cygwin* )
77                  echo "Run configure using ./configure --host=i686-w64-mingw32 or --host=x86_64-w64-mingw32"
78                  exit 1
79 esac
81 # In case of cygwin, override LN_S, irrespective of what it determines.
82 # The build uses cygwin, but the actual runtime doesn't.
83 case $host_os in
84 *cygwin* ) LN_S='cp -p';;
85 esac
88 # libgc defaults
90 libgc_configure_args=
92 # These variables are the CPPFLAGS/CFLAGS passed to libgc's configure
93 # libgc should inherit the original CFLAGS/CPPFLAGS passed to configure, i.e. -O0
94 CPPFLAGS_FOR_LIBGC=$CPPFLAGS
95 CFLAGS_FOR_LIBGC=$CFLAGS
96 CPPFLAGS_FOR_BTLS=$CPPFLAGS
97 CFLAGS_FOR_BTLS=$CFLAGS
99 # libgc uses some deprecated APIs
100 CFLAGS_FOR_LIBGC="$CFLAGS -Wno-deprecated-declarations"
103 # These are the flags that need to be stored in the mono.pc file for 
104 # compiling code that will embed Mono
106 libmono_cflags=""
107 libmono_ldflags=""
108 AC_SUBST(libmono_cflags)
109 AC_SUBST(libmono_ldflags)
111 # Variable to have relocatable .pc files (lib, or lib64)
112 # realpath isn't always available, and requires that all but the tip of the provided
113 # path exists. Fall back to the old behaviour, but realpath allows depth >1
114 # e.g. Debian puts Mono in /usr/bin and libs in /usr/lib/x86_64-linux-gnu/ which is
115 # too deep for the old method to work
116 reloc_libdir=`realpath --relative-to=${prefix} ${libdir} 2> /dev/null || basename ${libdir}`
117 AC_SUBST(reloc_libdir)
119 # Set to yes if Unix sockets cannot be created in an anonymous namespace
120 need_link_unlink=no
122 #Set to extra linker flags to be passed to the runtime binaries (mono /mono-sgen)
123 extra_runtime_ldflags=""
125 # Thread configuration inspired by sleepycat's db
126 AC_MSG_CHECKING([host platform characteristics])
128 libgc_threads=no
129 has_dtrace=no
130 parallel_mark=yes
131 ikvm_native=yes
133 host_win32=no
134 target_win32=no
135 target_wasm=no
136 platform_android=no
137 platform_tizen=no
138 platform_ios=no
139 host_darwin=no
140 host_linux=no
141 build_darwin=no
143 case "$host" in
144         wasm32*)
145                 CFLAGS="$CFLAGS -D_REENTRANT -D_GNU_SOURCE -s WASM=1"
146                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DUSE_MMAP -s WASM=1"
147                 libgc_threads=pthreads
148                 platform_wasm=yes
149                 # FIXME:
150                 RID="osx-x64"
151                 COREARCH="x64"
152                 CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
153                 build_darwin=yes
154                 ;;
155         *-mingw*|*-*-cygwin*)
156                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
157                 AC_DEFINE(HOST_NO_SYMLINKS,1,[This platform does not support symlinks])
158                 host_win32=yes
159                 mono_cv_clang=no
160                 if test "x$cross_compiling" = "xno"; then
161                         if test "x$host" = "x$build" -a "x$host" = "x$target"; then
162                                 target_win32=yes
163                         fi
164                 else
165                         if test "x$host" = "x$target"; then
166                                 target_win32=yes
167                         fi
168                 fi
169                 HOST_CC="gcc"
170                 RID="win-x86"
171                 CORETARGETS="-p:TargetsWindows=true"
172                 COREARCH="x86"
173                 # Boehm not supported on 64-bit Windows.
174                 case "$host" in
175                 x86_64-*-* | amd64-*-*)
176                         support_boehm=no
177                         with_gc=sgen
178                         RID="win-x64"
179                         COREARCH="x64"
180                         ;;
181                 esac
183                 # Windows 7 or later is required
184                 WIN32_CPPFLAGS="-DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -D_WIN32_IE=0x0501 -D_UNICODE -DUNICODE -DWIN32_THREADS -DFD_SETSIZE=1024"
185                 CPPFLAGS="$CPPFLAGS $WIN32_CPPFLAGS"
186                 WIN32_LDFLAGS="-lbcrypt -lmswsock -lws2_32 -lole32 -loleaut32 -lpsapi -lversion -ladvapi32 -lwinmm -lkernel32 -liphlpapi -static-libgcc"
187                 LDFLAGS="$LDFLAGS $WIN32_LDFLAGS"
188                 libmono_cflags="-mms-bitfields -mwindows"
189                 libmono_ldflags="-mms-bitfields -mwindows"
190                 libgc_threads=win32
191                 with_sigaltstack=no
192                 with_tls=pthread
193                 with_sgen_default_concurrent=yes
194                 LN_S=cp
196                 # This forces libgc to use the DllMain based thread registration code on win32
197                 libgc_configure_args="$libgc_configure_args --enable-win32-dllmain=yes"
198                 ;;
199         *-*-*netbsd*)
200                 CPPFLAGS="$CPPFLAGS -D_REENTRANT -DGC_NETBSD_THREADS -D_GNU_SOURCE"
201                 libmono_cflags="-D_REENTRANT"
202                 LDFLAGS="$LDFLAGS -pthread"
203                 CPPFLAGS="$CPPFLAGS -DHOST_BSD"
204                 libmono_ldflags="-pthread"
205                 need_link_unlink=yes
206                 libgc_threads=pthreads
207                 with_sigaltstack=no
208                 use_sigposix=yes
209                 with_sgen_default_concurrent=yes
210                 ;;
211         *-*-kfreebsd*-gnu)
212                 CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP -DUSE_MUNMAP -DTHREAD_LOCAL_ALLOC -pthread"
213                 libmono_cflags="-D_REENTRANT -DTHREAD_LOCAL_ALLOC -pthread"
214                 libmono_ldflags="-lpthread -pthread"
215                 libgc_threads=pthreads
216                 need_link_unlink=yes
217                 with_sigaltstack=no
218                 use_sigposix=yes
219                 with_sgen_default_concurrent=yes
220                 ;;
221         *-*-*freebsd*)
222                 dnl For close_my_fds
223                 LDFLAGS="$LDFLAGS -lutil"
224                 if test "x$PTHREAD_CFLAGS" = "x"; then
225                         CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
226                         libmono_cflags=
227                 else
228                         CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
229                         libmono_cflags="$PTHREAD_CFLAGS"
230                 fi
231                 if test "x$PTHREAD_LIBS" = "x"; then
232                         LDFLAGS="$LDFLAGS -pthread -L/usr/local/lib"
233                         libmono_ldflags="-pthread"
234                 else
235                         LDFLAGS="$LDFLAGS $PTHREAD_LIBS -L/usr/local/lib"
236                         libmono_ldflags="$PTHREAD_LIBS"
237                 fi
238                 CPPFLAGS="$CPPFLAGS -DHOST_BSD -D_WITH_GETLINE"
239                 need_link_unlink=yes
240                 AC_DEFINE(PTHREAD_POINTER_ID, 1, [pthread is a pointer])
241                 libgc_threads=pthreads
242                 use_sigposix=yes
243                 has_dtrace=yes
244                 case "$host" in
245                 aarch64-*)
246                         support_boehm=no
247                         with_gc=sgen
248                         ;;
249                 riscv*)
250                         support_boehm=no
251                         with_gc=sgen
252                         ;;
253                 esac
254                 with_sgen_default_concurrent=yes
255                 ;;
256         *-*-*openbsd*)
257                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_OPENBSD_THREADS -DHOST_BSD -D_REENTRANT -DUSE_MMAP"
258                 LDFLAGS="${LDFLAGS} -Wl,-zwxneeded"
259                 if test "x$disable_munmap" != "xyes"; then
260                 CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
261                 fi
262                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
263                 LDFLAGS="$LDFLAGS -pthread"
264                 need_link_unlink=yes
265                 AC_DEFINE(PTHREAD_POINTER_ID)
266                 libgc_threads=pthreads
267                 with_tls=pthread
268                 with_sigaltstack=no
269                 use_sigposix=yes
270                 with_sgen_default_concurrent=yes
271                 ;;
272         *-*-linux-android*)
273                 platform_android=yes
274                 AC_DEFINE(HOST_ANDROID,1,[Targeting the Android platform])
275                 AC_DEFINE(TARGET_ANDROID,1,[Targeting the Android platform])
277                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
278                 if test "x$disable_munmap" != "xyes"; then
279                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
280                 fi
281                 libmono_cflags="-D_REENTRANT"
282                 libgc_threads=pthreads
283                 use_sigposix=yes
285                 with_tls=pthread
286                 with_sigaltstack=no
287                 with_static_mono=no
289                 # Android doesn't support boehm, as it's missing <link.h>
290                 support_boehm=no
291                 with_gc=sgen
293                 # isinf(3) requires -lm
294                 LDFLAGS="$LDFLAGS -lm"
296                 # Bionic's <pthread.h> sets PTHREAD_STACK_MIN=2*PAGE_SIZE; doesn't define
297                 # PAGE_SIZE; breaks mono/io-layer/collection.c
298                 # Bionic doesn't provide S_IWRITE; breaks io-layer/io.c
299                 CFLAGS="$CFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
300                 CXXFLAGS="$CXXFLAGS -DPAGE_SIZE=4096 -DS_IWRITE=S_IWUSR"
302                 # FIXME? Only if __ANDROID_API__ < 24?
303                 # FILE32API means "long", which is stuck at 32bits for 32bit ABI (64bits for 64bit ABI).
304                 # ABI 24 introduces the "o" for "file offset" variations, which can be widened to 64bits for 32bit ABI (and still 64bits for 64bit).
305                 # Android itself uses FILE32API, and mono should use system zlib on Android anyway.
306                 ZLIB_CFLAGS="$ZLIB_CFLAGS -DUSE_FILE32API"
308                 # to bypass the underscore linker check, can't work when cross-compiling
309                 mono_cv_uscore=yes
310                 mono_cv_clang=no
311                 ;;
312         *-*-linux*)
313                 host_linux=yes
314                 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -DUSE_MMAP"
315                 if test "x$disable_munmap" != "xyes"; then
316                         CPPFLAGS="$CPPFLAGS -DUSE_MUNMAP"
317                 fi
318                 libmono_cflags="-D_REENTRANT"
319                 libgc_threads=pthreads
320                 CORETARGETS="-p:TargetsUnix=true"
321                 use_sigposix=yes
322                 if test "x$cross_compiling" != "xno"; then
323                         # to bypass the underscore linker check, not
324                         # available during cross-compilation
325                         mono_cv_uscore=no
326                 fi
327                 case "$host" in
328                 *-tizen-linux-*)
329                         platform_tizen=yes
330                         ;;
331                 esac
332                 case "$host" in
333                 ppc64-*)
334                         RID="linux-ppc64"
335                         ;;
336                 ppc64le-*)
337                         RID="linux-ppc64el"
338                         ;;
339                 mipsel-*)
340                         RID="linux-mipsel"
341                         ;;
342                 x86-*)
343                         RID="linux-x86"
344                         COREARCH="x86"
345                         ;;
346                 x86_64-*)
347                         RID="linux-x64"
348                         COREARCH="x64"
349                         ;;
350                 arm-*)
351                         # deal with this in the FPU detection section, since
352                         # we cannot determine FPU from triplet and don't want
353                         # to duplicate the logic
354                         ;;
355                 aarch64-*)
356                         support_boehm=no
357                         with_gc=sgen
358                         RID="linux-arm64"
359                         COREARCH="arm64"
360                         ;;
361                 powerpc*-*-linux*)
362                         # https://bugzilla.novell.com/show_bug.cgi?id=504411
363                         disable_munmap=yes
364                         ;;
365                 riscv*)
366                         support_boehm=no
367                         with_gc=sgen
368                         ;;
369                 esac
370                 with_sgen_default_concurrent=yes
371                 ;;
372         *-*-nacl*)
373                 echo "nacl no longer supported."
374                 exit 1
375                 ;;
376         *-*-hpux*)
377                 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
378                 # +ESdbgasm only valid on bundled cc on RISC
379                 # silently ignored for ia64
380                 if test $GCC != "yes"; then
381                         CFLAGS="$CFLAGS +ESdbgasm"
382                         # Arrange for run-time dereferencing of null
383                         # pointers to produce a SIGSEGV signal.
384                         LDFLAGS="$LDFLAGS -z"
385                 fi
386                 CFLAGS="$CFLAGS +ESdbgasm"
387                 LDFLAGS="$LDFLAGS -z"
388                 libmono_cflags="-D_REENTRANT"
389                 libmono_ldflags="-lpthread"
390                 libgc_threads=pthreads
391                 need_link_unlink=yes
392                 use_sigposix=yes
393                 ;;
394         *-*-solaris*)
395                 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_MMAP -DUSE_MUNMAP -DHOST_SOLARIS"
396                 need_link_unlink=yes
397                 libmono_cflags="-D_REENTRANT"
398                 libgc_threads=pthreads
399                 has_dtrace=yes
400                 use_sigposix=yes
401                 enable_solaris_tar_check=yes
402                 ;;
403         *-*-darwin*)
404                 parallel_mark="Disabled_Currently_Hangs_On_MacOSX"
405                 host_darwin=yes
406                 target_mach=yes
407                 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_MACOSX_THREADS -DUSE_MMAP -DUSE_MUNMAP"
408                 libmono_cflags="-D_THREAD_SAFE"
409                 need_link_unlink=yes
410                 AC_DEFINE(PTHREAD_POINTER_ID)
411                 AC_DEFINE(USE_MACH_SEMA, 1, [...])
412                 CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
413                 libgc_threads=pthreads
414                 has_dtrace=yes
415                 if test "x$cross_compiling" = "xyes"; then
416                         has_broken_apple_cpp=yes
417                 fi
418                 dnl Snow Leopard is horribly broken -- it reports itself as i386-apple-darwin*, but
419                 dnl its gcc defaults to 64-bit mode.  They have also deprecated the usage of ucontext
420                 dnl we need to set some flags to build our 32-bit binaries on 10.6 properly
421                 case "$host" in
422                         dnl Snow Leopard and newer config.guess reports as this
423                         i*86-*-darwin*)
424                                 BROKEN_DARWIN_FLAGS="-arch i386"
425                                 BROKEN_DARWIN_CPPFLAGS=""
426                                 CPPFLAGS="$CPPFLAGS $BROKEN_DARWIN_CPPFLAGS"
427                                 CFLAGS="$CFLAGS $BROKEN_DARWIN_FLAGS"
428                                 CXXFLAGS="$CXXFLAGS $BROKEN_DARWIN_FLAGS"
429                                 CCASFLAGS="$CCASFLAGS $BROKEN_DARWIN_FLAGS"
430                                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC $BROKEN_DARWIN_CPPFLAGS"
431                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC $BROKEN_DARWIN_FLAGS"
432                                 with_sgen_default_concurrent=yes
433                                 RID="osx-x86"
434                                 COREARCH="x86"
435                                 ;;
436                         x*64-*-darwin*)
437                                 with_sgen_default_concurrent=yes
438                                 RID="osx-x64"
439                                 COREARCH="x64"
440                                 ;;
441                         arm*-darwin*)
442                                 platform_ios=yes
443                                 has_dtrace=no
444                                 ;;
445                         aarch64*-darwin*)
446                                 platform_ios=yes
447                                 ;;
448                 esac
449                 ;;
450         *-*-haiku*)
451                 dnl BSD_SOURCE is for getifaddrs
452                 CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE -D_REENTRANT -D_THREAD_SAFE"
453                 libmono_cflags="-D_REENTRANT -D_THREAD_SAFE"
454                 LIBS="$LIBS -lnetwork -ltextencoding"
455                 need_link_unlink=yes
456                 AC_DEFINE(PTHREAD_POINTER_ID)
457                 dnl Haiku does not support static TLS with __thread
458                 with_tls=pthread
459                 libgc_threads=pthreads
460                 use_sigposix=yes
461                 with_sigaltstack=no
462                 ;;
463         *-*-fuchsia*)
464                 AC_DEFINE(DISABLE_PORTABILITY,1,[Disable the io-portability layer])
465                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
466                 fuchsia=true
467                 with_tls=pthread
468                 with_sigaltstack=yes
469                 with_static_mono=no
470                 support_boehm=no
471                 with_gc=sgen
472                 mono_cv_uscore=yes
473                 mono_cv_clang=no
474                 ;;
475         *-*-aix*|*-*-os400*)
476                 AC_DEFINE(HOST_AIX,1,[Targeting the AIX and PASE platforms])
477                 host_aix=yes
478                 dnl IMPORTANT: For svr4 sonames on AIX, you should set
479                 dnl `OBJECT_MODE=64` when configuring.
480                 dnl libtool cannot generate functioning svr4 sonames on
481                 dnl 64-bit without it.
482                 dnl Unfortunately, everything is complicated by the fact that
483                 dnl gcc doesn't respect this variable. (otherwise we could set
484                 dnl it for build time for configure and make)
485                 dnl On IBM i PASE using IBM's packages, GCC *does* respect this
486                 dnl variable, and builds are 64-bit by default. svr4 sonames
487                 dnl must still be specified when configuring on i, however.
488                 dnl As such, because Mono doesn't support 32-bit AIX or PASE,
489                 dnl set up a 64-bit build (assming GCC; XLC not supported)
490                 dnl regardless of what variable is used.
491                 case $host_os in
492                         aix*)
493                         if test "x$OBJECT_MODE" = "x64" && test "x$CC" = "x" && test "x$CXX" = "x"; then
494                                 dnl HACK: Set -maix64 at the GCC invocation
495                                 dnl level explicitly to work around the fact
496                                 dnl GCC in default maix32 mode explodes when
497                                 dnl binutils respects OBJECT_MODE.
498                                 dnl When that check occurs, flags are not
499                                 dnl passed to to the compiler, so GCC has no
500                                 dnl chance to change its mode.
501                                 dnl Otherwise, it may enter a state where it
502                                 dnl runs, but uses the libtool "compile"
503                                 dnl wrapper, which subtly breaks other things.
504                                 dnl This should propagate to all uses of CC.
505                                 dnl This is only set if not manually set.
506                                 CC="gcc -maix64"
507                                 CXX="g++ -maix64"
508                                 echo
509                         fi
510                         ;;
511                         dnl Not needed on i because it defaults to 64-bit and
512                         dnl has a GCC smart enough to respect OBJECT_MODE.
513                 esac
514                 dnl We still set this for *FLAGS, however, because we may not
515                 dnl be setting OBJECT_MODE.
516                 LDFLAGS="$LDFLAGS -maix64"
517                 CPPFLAGS="$CPPFLAGS -maix64 -DGC_AIX_THREADS -D_ALL_SOURCE -D_THREAD_SAFE -D_LARGE_FILES -D_REENTRANT"
518                 libmono_cflags="-D_THREAD_SAFE -D_REENTRANT"
519                 dnl Would you believe GNU nm doesn't know how to process AIX libraries?
520                 dnl Hardcode IBM binutils in case GNU ones end up on our path. Also
521                 dnl specifiy 64-bit mode for tools. (OBJECT_MODE is finicky with cmake.)
522                 dnl XXX: We should stop the hardcoding madness
523                 AR="/usr/bin/ar -X64"
524                 NM="/usr/bin/nm -X64"
525                 STRIP="/usr/bin/strip -X64"
526                 RANLIB="/usr/bin/ranlib -X64"
527                 dnl SGen is the future (changes to Boehm support code would be
528                 dnl required if you wish to re-enable Boehm)
529                 support_boehm=no
530                 with_gc=sgen
531                 need_link_unlink=yes
532                 use_sigposix=yes
533                 dnl Similar limitation to macOS about the first thread and the
534                 dnl guard page, except sometimes the runtime hangs. Disable for
535                 dnl now until cause can be determined or it seems OK enough.
536                 with_sigaltstack=no
537                 dnl use pthread TLS, __thread has issues with the compiler flags we use
538                 with_tls=pthread
539                 dnl ppc Linux is the same? test further
540                 disable_munmap=yes
541                 RID="aix-ppc64"
542                 CORETARGETS="-p:TargetsUnix=true"
543                 ;;
544         *)
545                 AC_MSG_WARN([*** Please add $host to configure.ac checks!])
546                 ;;
547 esac
549 AC_MSG_RESULT(ok)
551 if test x$need_link_unlink = xyes; then
552    AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
555 if test x$host_win32 = xyes; then
556    AC_DEFINE(HOST_WIN32, 1, [Host Platform is Win32])
559 if test x$target_win32 = xyes; then
560    AC_DEFINE(TARGET_WIN32, 1, [Target Platform is Win32])
563 if test x$host_darwin = xyes; then
564    AC_DEFINE(HOST_DARWIN, 1, [Host Platform is Darwin])
567 # Defined for all targets/platforms using classic Windows API support.
568 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
569 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
571 AC_SUBST(extra_runtime_ldflags)
572 AM_CONDITIONAL(HOST_WIN32, test x$host_win32 = xyes)
573 AM_CONDITIONAL(TARGET_WIN32, test x$target_win32 = xyes)
574 AM_CONDITIONAL(HOST_LINUX, echo x$target_os | grep -q linux)
575 AM_CONDITIONAL(HOST_DARWIN, test x$host_darwin = xyes)
576 AM_CONDITIONAL(HOST_SIGPOSIX, test x$use_sigposix = xyes)
577 AM_CONDITIONAL(HOST_ANDROID, test x$platform_android = xyes)
578 AM_CONDITIONAL(HOST_TIZEN, test x$platform_tizen = xyes)
579 AM_CONDITIONAL(HOST_IOS, test x$platform_ios = xyes)
580 AM_CONDITIONAL(HOST_WASM, test x$platform_wasm = xyes)
581 AM_CONDITIONAL(HOST_AIX, test x$host_aix = xyes)
583 if test -z "$HOST_DARWIN_TRUE"; then :
584 PLATFORM_AOT_SUFFIX=.dylib
585 PLATFORM_AOT_PREFIX=lib
588 if test -z "$HOST_LINUX_TRUE"; then :
589 PLATFORM_AOT_SUFFIX=.so
590 PLATFORM_AOT_PREFIX=lib
593 if test -z "$HOST_WIN32_TRUE"; then :
594 PLATFORM_AOT_SUFFIX=.dll
595 PLATFORM_AOT_PREFIX=
598 AC_SUBST(PLATFORM_AOT_SUFFIX)
599 AC_SUBST(PLATFORM_AOT_PREFIX)
601 if test -z "$HOST_WASM_TRUE"; then :
602 AC_DEFINE(HAVE_UTIME)
603 AC_DEFINE(HAVE_UTIMES)
606 ## PLATFORM_AOT_SUFFIX not so simple for windows :-)
608 AC_CHECK_TOOL(CC, gcc, gcc)
609 AC_PROG_CC
610 AC_CHECK_TOOL(CXX, g++, g++)
611 AC_PROG_CXX
612 AM_PROG_AS
613 AC_PROG_INSTALL
614 AC_PROG_AWK
615 AM_PROG_CC_C_O
616 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
617 : ${CCAS='$(CC)'}
618 # Set ASFLAGS if not already set.
619 : ${CCASFLAGS='$(CFLAGS)'}
620 AC_SUBST(CCAS)
621 AC_SUBST(CCASFLAGS)
623 if test "x$CXX" = "xno"; then
624         AC_MSG_ERROR([No c++ compiler found. You need to install a c++ compiler])
627 # AC_PROG_CXX helpfully sets CXX to g++ even if no c++ compiler is found so check
628 # GXX instead. See http://lists.gnu.org/archive/html/bug-autoconf/2002-04/msg00056.html
629 if test "x$CXX" = "xg++"; then
630         if test "x$GXX" != "xyes"; then
631                 # automake/libtool is so broken, it requires g++ even if the c++ sources
632                 # are inside automake conditionals
633                 AC_MSG_ERROR([You need to install g++])
634         fi
637 dnl may require a specific autoconf version
638 dnl AC_PROG_CC_FOR_BUILD
639 dnl CC_FOR_BUILD not automatically detected
640 CC_FOR_BUILD=$CC
641 CFLAGS_FOR_BUILD=$CFLAGS
642 BUILD_EXEEXT=
643 if test "x$cross_compiling" = "xyes"; then
644         CC_FOR_BUILD=cc
645         CFLAGS_FOR_BUILD=
646         BUILD_EXEEXT=""
648 AC_SUBST(CC_FOR_BUILD)
649 AC_SUBST(CFLAGS_FOR_BUILD)
650 AC_SUBST(HOST_CC)
651 AC_SUBST(BUILD_EXEEXT)
653 AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes])
654 AM_CONDITIONAL(USE_BATCH_FILES, [test x$host_win32 = xyes -a x$cross_compiling = xyes])
656 # Set STDC_HEADERS
657 AC_HEADER_STDC
658 AC_LIBTOOL_WIN32_DLL
659 # This causes monodis to not link correctly
660 #AC_DISABLE_FAST_INSTALL
662 #lookup makedev() header
663 AC_HEADER_MAJOR
665 AM_PROG_LIBTOOL
666 # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building.
667 DOLT
669 export_ldflags=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
670 AC_SUBST(export_ldflags)
672 # Test whenever ld supports -version-script
673 AC_PROG_LD
674 AC_PROG_LD_GNU
676 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 sys/sysctl.h libproc.h sys/prctl.h copyfile.h gnu/lib-names.h)
677 AC_CHECK_HEADERS(sys/param.h sys/socket.h sys/ipc.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 arpa/inet.h complex.h unwind.h)
679 # zlib/configure checks for unistd.h existance and defines HAVE_UNISTD_H on the compiler
680 # command line (not config.h) if it is present.
681 AC_CHECK_HEADER(unistd.h,
682     [HAVE_UNISTD_H=1
683      ZLIB_CFLAGS="$ZLIB_CFLAGS -DHAVE_UNISTD_H"],
684     [HAVE_UNISTD_H=0])
686 AC_SUBST(HAVE_UNISTD_H)
688 AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h],
689                   [], [], [#include <stddef.h>
690                   #include <sys/socket.h>
691                   #include <linux/socket.h>])
693 AC_CHECK_HEADERS(sys/user.h, [], [],
695 #ifdef HAVE_SYS_PARAM_H
696 # include <sys/param.h>
697 #endif
700 AC_CHECK_HEADERS(linux/serial.h)
702 case "$host" in
703         # Use bundled zlib on Windows to be sure it is static.
704         *-mingw*|*-cygwin*)
705                 have_sys_zlib=no
706                 zlib_msg="bundled zlib"
707                 ;;
708         # Use bundled zlib on RISC-V for now to make cross-compiling easier.
709         riscv*)
710                 have_sys_zlib=no
711                 zlib_msg="bundled zlib"
712                 ;;
713         *)
714                 AC_CHECK_HEADER(zlib.h, [have_sys_zlib=yes], [have_sys_zlib=no])
715                 if test x$have_sys_zlib = xyes; then
716                         AC_TRY_COMPILE([#include <zlib.h>], [
717                                 #if defined(ZLIB_VERNUM) && (ZLIB_VERNUM >= 0x1230)
718                                 #else
719                                 #error No good zlib found
720                                 #endif
721                         ],[
722                                 AC_MSG_RESULT(Using system zlib)
723                                 zlib_msg="system zlib"
724                                 have_sys_zlib=yes
725                         ],[
726                                 AC_MSG_RESULT(zlib too old, using embedded zlib)
727                                 have_sys_zlib=no
728                                 zlib_msg="bundled zlib"
729                         ])
730                 else
731                         AC_MSG_RESULT(zlib not found, using embedded zlib)
732                         have_sys_zlib=no
733                         zlib_msg="bundled zlib"
734                 fi
735                 ;;
736 esac
738 AC_ARG_WITH(static-zlib, [  --with-static-zlib=PATH    use the specified static zlib instead of -lz],[STATIC_ZLIB_PATH=$with_static_zlib],[STATIC_ZLIB_PATH=])
739 if test "x$STATIC_ZLIB_PATH" != "x"; then
740         have_static_zlib=yes
741         have_sys_zlib=no
742         zlib_msg="static zlib from $STATIC_ZLIB_PATH"
743         AC_SUBST(STATIC_ZLIB_PATH)
746 AM_CONDITIONAL(HAVE_STATIC_ZLIB, test x$have_static_zlib = xyes)
747 AM_CONDITIONAL(HAVE_SYS_ZLIB, test x$have_sys_zlib = xyes)
748 if test x$have_static_zlib = xyes; then
749         AC_DEFINE(HAVE_STATIC_ZLIB, 1, [Use static zlib])
751 if test x$have_sys_zlib = xyes; then
752         AC_DEFINE(HAVE_SYS_ZLIB, 1, [Use OS-provided zlib])
754 # for mono/metadata/debug-symfile.c
755 AC_CHECK_HEADERS(elf.h)
757 # for support
758 AC_CHECK_HEADERS(poll.h)
759 AC_CHECK_HEADERS(sys/poll.h)
760 AC_CHECK_HEADERS(sys/wait.h)
761 AC_CHECK_HEADERS(grp.h)
762 AC_CHECK_HEADERS(syslog.h)
763 AC_CHECK_FUNCS(vsyslog)
765 # for mono/dis
766 AC_CHECK_HEADERS(wchar.h)
768 # for Linux statfs support
769 AC_CHECK_HEADERS(linux/magic.h)
771 # For Android NDK unified headers
772 if test x$platform_android = xyes; then
773         AC_CHECK_HEADERS(machine/endian.h sys/endian.h)
774         AC_CHECK_HEADERS(android/legacy_signal_inlines.h, [have_android_signal_inlines=yes], [have_android_signal_inlines=no])
775         AC_CHECK_HEADERS(android/ndk-version.h)
777         # Make sure SIGRT{MIN,MAX} work - they will fail to work with unified headers if building for
778         # API level < 21 *and* android/legacy_signal_inlines.h doesn't declare (and define) the required
779         # libc APIs to obtain values for SIGRT{MIN,MAX}. We perform the check only if android/legacy_signal_inlines.h
780         # is found because in other cases the macros will either work (for NDK < 14) or fail if the legacy header
781         # doesn't contain the required definitions (NDK 14)
782         if test x$have_android_signal_inlines = xyes; then
783                 AC_MSG_CHECKING([Whether Android SIGRTMIN/SGRTMAX macros are valid])
784                 AC_COMPILE_IFELSE([
785                         AC_LANG_PROGRAM([#include <signal.h>
786                                 #include <android/legacy_signal_inlines.h>],[
787                                 int i;
788                                 for (i = SIGRTMIN + 1; i < SIGRTMAX; ++i) {
789                                 }
790                         ])],[
791                                 AC_MSG_RESULT(yes)
792                                 android_sigrtminmax_work=yes
793                         ],[
794                                 AC_MSG_RESULT(no)
795                                 android_sigrtminmax_work=no
796                         ]
797                 )
799                 if test x$android_sigrtminmax_work = xno; then
800                         AC_MSG_ERROR([Android SIGRTMIN/SIGRTMAX macros don't work in this NDK])
801                 fi
802         fi
804         # Attempt to detect whether we're using Android NDK unified headers
805         AC_CHECK_HEADERS(android/api-level.h, [have_android_api_level=yes], [have_android_api_level=no])
806         AC_CHECK_HEADERS(android/versioning.h, [have_android_versioning=yes], [have_android_versioning=no])
808         android_unified_headers=no
809         if test x$have_android_api_level = xyes; then
810                 if test x$have_android_versioning = xyes; then
811                         AC_MSG_CHECKING([whether using Android NDK unified headers])
813                         # Both macros are defined only in the NDK unified headers
814                         AC_COMPILE_IFELSE([
815                                 AC_LANG_PROGRAM([
816                                         #include <android/api-level.h>
817                                         #include <android/versioning.h>
818                                 ],[
819                                         #if __ANDROID_API_O__ == 26 && defined(__INTRODUCED_IN)
820                                         #else
821                                                 #error __ANDROID_API_O__ != 26 or the __INTRODUCED_IN macro not defined
822                                         #endif
823                                 ])],[
824                                         AC_MSG_RESULT(yes)
825                                         android_unified_headers=yes
826                                 ],[
827                                         AC_MSG_RESULT(no)
828                                         android_unified_headers=no
829                                 ]
830                         )
831                 fi
832         fi
834         if test x$android_unified_headers = xyes; then
835                 AC_DEFINE(ANDROID_UNIFIED_HEADERS, 1, [Whether Android NDK unified headers are used])
836         fi
837 fi # Android
839 # not 64 bit clean in cross-compile
840 AC_CHECK_SIZEOF(void *)
841 AC_CHECK_SIZEOF(long)
843 AC_CHECK_SIZEOF(int)
844 AC_CHECK_SIZEOF(long long)
846 AC_CACHE_CHECK([for clang],
847         mono_cv_clang,[
848         AC_TRY_COMPILE([], [
849                 #ifdef __clang__
850                 #else
851                 #error "FAILED"
852                 #endif
853         ],
854         [mono_cv_clang=yes],
855         [mono_cv_clang=no],
856         [])
859 AC_ARG_ENABLE(visibility-hidden,
860 [  --disable-visibility-hidden    disable usage of -fvisiblity=hidden],
861    disable_visibility_hidden=yes, disable_visibility_hidden=no)
863 WARN=''
864 if test x"$GCC" = xyes; then
865                 WARN='-Wall -Wunused -Wmissing-declarations -Wpointer-arith -Wno-cast-qual -Wwrite-strings -Wno-switch -Wno-switch-enum -Wno-unused-value -Wno-attributes'
866                 CFLAGS="$CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wno-format-zero-length"
868                 # We require C99 with some GNU extensions, e.g. `linux` macro
869                 CFLAGS="$CFLAGS -std=gnu99"
871                 # The runtime code does not respect ANSI C strict aliasing rules
872                 CFLAGS="$CFLAGS -fno-strict-aliasing"
874                 # We rely on signed overflow to behave
875                 CFLAGS="$CFLAGS -fwrapv"
877                 CFLAGS="$CFLAGS -DMONO_DLL_EXPORT"
878                 if test x"$disable_visibility_hidden" = xno; then
879                    # Don't export any symbols by default
880                    SHARED_CFLAGS="-fvisibility=hidden"
881                    CXXFLAGS="$CXXFLAGS -fvisibility=hidden"
882                 fi
884                 ORIG_CFLAGS=$CFLAGS
885                 # Check for the normal version, since gcc ignores unknown -Wno options
886                 CFLAGS="$CFLAGS -Wunused-but-set-variable -Werror"
887                 AC_MSG_CHECKING(for -Wno-unused-but-set-variable option to gcc)
888                 AC_TRY_COMPILE([],[
889                 ], [
890                    AC_MSG_RESULT(yes)
891                    CFLAGS="$ORIG_CFLAGS -Wno-unused-but-set-variable"
892                 ], [
893                    AC_MSG_RESULT(no)
894                    CFLAGS=$ORIG_CFLAGS
895                 ])
897                 if test "x$mono_cv_clang" = "xyes"; then
898                    # https://bugzilla.samba.org/show_bug.cgi?id=8118
899                    WARN="$WARN -Qunused-arguments"
900                    WARN="$WARN -Wno-unused-function -Wno-tautological-compare -Wno-parentheses-equality -Wno-self-assign -Wno-return-stack-address -Wno-constant-logical-operand"
901                    # We rely on zero length arrays in structs
902                    WARN="$WARN -Wno-zero-length-array"
903                 fi
904 else
905         # The Sun Forte compiler complains about inline functions that access static variables
906         # so disable all inlining.
907         case "$host" in
908         *-*-solaris*)
909                 CFLAGS="$CFLAGS -Dinline="
910                 ;;
911         esac
913 CFLAGS="$WARN $CFLAGS -g"
914 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -g"
915 CPPFLAGS="$WARN $CPPFLAGS -g"
917 # Where's the 'mcs' source tree?
918 if test -d $srcdir/mcs; then
919   mcsdir=mcs
920 else
921   mcsdir=../mcs
924 AC_ARG_WITH(mcs-path, [  --with-mcs-path=/path/to/mcs      Specify an alternate mcs source tree],
925         if test x$with_mcs_path != "x" -a -d $with_mcs_path ; then
926                 mcsdir=$with_mcs_path
927         fi
930 AC_ARG_WITH(jumptables, [  --with-jumptables=yes,no      enable/disable support for jumptables (ARM-only for now) (defaults to no)],[],[with_jumptables=no])
932 AC_ARG_WITH(core,       [  --with-core=only       controls whether to build Mono as a .NET Core runtime (defaults to no)],[],[with_core=no])
933 if test x$with_core = xonly; then
934     AC_DEFINE(ENABLE_NETCORE,1,[Enables the support for .NET Core Features in the MonoVM])
935     with_runtime_preset=netcore
937 AM_CONDITIONAL(ENABLE_NETCORE, test x$with_core = xonly)
940 # A sanity check to catch cases where the package was unpacked
941 # with an ancient tar program (Solaris)
943 AC_ARG_ENABLE(solaris-tar-check,
944 [  --disable-solaris-tar-check    disable solaris tar check],
945    do_solaris_tar_check=no, do_solaris_tar_check=yes)
947 if test x"$do_solaris_tar_check" = xyes -a x"$enable_solaris_tar_check" = xyes; then
948         AC_MSG_CHECKING(integrity of package)
949         if test -f $mcsdir/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs
950         then
951                 AC_MSG_RESULT(ok)
952         else
953                 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"
954                 AC_MSG_ERROR([$errorm])
955         fi
958 if test "x$with_mcs_path" != "x"; then
959 mcs_topdir=$(cd "$mcsdir" && pwd)
960 mcs_topdir_from_srcdir=$mcs_topdir
961 else
962 mcs_topdir=$(cd "$srcdir/$mcsdir" && pwd)
963 mcs_topdir_from_srcdir='$(top_builddir)'/$mcsdir
966 # Convert mcs_topdir* paths to Windows syntax.
967 if test x$cross_compiling$host_win32 = xnoyes; then
968   mcs_topdir=$(cygpath -m $mcs_topdir)
969   case $mcs_topdir_from_srcdir in
970     /cygdrive/*)
971         mcs_topdir_from_srcdir=$(cygpath -m $mcs_topdir_from_srcdir)
972         ;;
973   esac
976 AC_SUBST([mcs_topdir])
977 AC_SUBST([mcs_topdir_from_srcdir])
979 # gettext: prepare the translation directories. 
980 # we do not configure the full gettext, as we consume it dynamically from C#
981 AM_PO_SUBDIRS
983 if test "x$USE_NLS" = "xyes"; then
984    AC_CHECK_PROG(HAVE_MSGFMT, msgfmt,yes,no)
986    if test "x$HAVE_MSGFMT" = "xno"; then
987           AC_MSG_ERROR([msgfmt not found. You need to install the 'gettext' package, or pass --enable-nls=no to configure.])
988    fi
991 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
993 pkg_config_path=
994 AC_ARG_WITH(crosspkgdir, [  --with-crosspkgdir=/path/to/pkg-config/dir      Change pkg-config dir to custom dir],
995         if test x$with_crosspkgdir = "x"; then
996                 if test -s $PKG_CONFIG_PATH; then
997                         pkg_config_path=$PKG_CONFIG_PATH
998                 fi
999         else
1000                 pkg_config_path=$with_crosspkgdir
1001                 PKG_CONFIG_PATH=$pkg_config_path
1002                 export PKG_CONFIG_PATH
1003         fi
1006 AC_ARG_ENABLE(ninja,[  --enable-ninja    Enable using ninja where available], enable_ninja=$enableval)
1007 AC_CHECK_PROG(HAVE_NINJA, ninja, yes, no)
1008 AM_CONDITIONAL(NINJA, test x$enable_ninja = xyes -a x$HAVE_NINJA != xno)
1010 AC_ARG_ENABLE(werror, [  --enable-werror Pass -Werror to the C compiler], werror_flag=$enableval, werror_flag=no)
1011 if test x$werror_flag = xyes; then
1012         WERROR_CFLAGS="-Werror"
1014 AC_SUBST([WERROR_CFLAGS])
1015 AC_SUBST([SHARED_CFLAGS])
1017 GLIB_CFLAGS='-I$(top_srcdir)/mono/eglib -I$(top_builddir)/mono/eglib'
1018   
1019 AC_SUBST(GLIB_CFLAGS)
1021 # Enable support for fast thread-local storage
1022 # Some systems have broken support, so we allow to disable it.
1023 AC_ARG_WITH(tls, [  --with-tls=__thread,pthread    select Thread Local Storage implementation (defaults to __thread)],[],[with_tls=__thread])
1025 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
1026 # This does not work on some platforms (bug #55253)
1027 AC_ARG_WITH(sigaltstack, [  --with-sigaltstack=yes,no      enable/disable support for sigaltstack (defaults to yes)],[],[with_sigaltstack=yes])
1029 AC_ARG_WITH(static_mono, [  --with-static_mono=yes,no      link mono statically to libmono (faster) (defaults to yes)],[],[with_static_mono=yes])
1030 AC_ARG_WITH(shared_mono, [  --with-shared_mono=yes,no      build a shared libmono library (defaults to yes)],[],[with_shared_mono=yes])
1031 # Same as --with-shared_mono=no
1032 AC_ARG_ENABLE(libraries, [  --disable-libraries disable the build of libmono], enable_libraries=$enableval, enable_libraries=yes)
1034 if test "x$enable_static" = "xno"; then
1035    with_static_mono=no
1038 if test "x$enable_shared" = "xno"; then
1039    with_shared_mono=no
1042 if test "x$enable_libraries" = "xno"; then
1043    with_shared_mono=no
1046 AM_CONDITIONAL(DISABLE_LIBRARIES, test x$enable_libraries = xno)
1048 if test "x$host_win32" = "xyes"; then
1049    # Boehm GC requires the runtime to be in its own dll
1050    with_static_mono=no
1053 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
1054 AM_CONDITIONAL(SHARED_MONO, test x$with_shared_mono != xno)
1055 AC_ARG_ENABLE(mcs-build, [  --disable-mcs-build disable the build of the mcs directory], try_mcs_build=$enableval, enable_mcs_build=yes)
1056 AC_ARG_ENABLE(support-build, [  --disable-support-build disable the build of the support directory], try_support_build=$enableval, enable_support_build=yes)
1058 AC_ARG_WITH(xen_opt,   [  --with-xen_opt=yes,no          Enable Xen-specific behaviour (defaults to yes)],[],[with_xen_opt=yes])
1059 if test "x$with_xen_opt" = "xyes" -a "x$mono_cv_clang" = "xno"; then
1060         AC_DEFINE(MONO_XEN_OPT, 1, [Xen-specific behaviour])
1061         ORIG_CFLAGS=$CFLAGS
1062         CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
1063         AC_MSG_CHECKING(for -mno-tls-direct-seg-refs option to gcc)
1064         AC_TRY_COMPILE([], [
1065         ], [
1066            AC_MSG_RESULT(yes)
1067            # Pass it to libgc as well
1068            CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -mno-tls-direct-seg-refs"
1069         ], [
1070            AC_MSG_RESULT(no)
1071            CFLAGS=$ORIG_CFLAGS
1072         ])
1075 AC_ARG_ENABLE(small-config, [  --enable-small-config Enable tweaks to reduce requirements (and capabilities)], enable_small_config=$enableval, enable_small_config=no)
1077 if test x$enable_small_config = xyes; then
1078         AC_DEFINE(MONO_SMALL_CONFIG,1,[Reduce runtime requirements (and capabilities)])
1079         CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DSMALL_CONFIG"
1082 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)
1084 DISABLED_FEATURES=none
1085 csc_compiler=default
1086 endian=unknown
1087 AC_C_BIGENDIAN([endian=big],[endian=little],[endian=unknown])
1088 AC_MSG_CHECKING([CSharp compiler to use])
1089 AC_ARG_WITH(csc, [  --with-csc=mcs,roslyn,default      Configures the CSharp compiler to use],[
1090    if test x$withval = xmcs; then
1091        csc_compiler=mcs
1092    elif test x$withval = xroslyn; then
1093        csc_compiler=roslyn
1094    elif test x$withval = xdefault; then
1095        :
1096    else
1097        AC_MSG_ERROR([You must supply one of "mcs", "roslyn" or "default" to the --with-csc option])
1098    fi
1099 ],[csc_compiler=default])
1101 if test $csc_compiler = default; then
1102    if test $endian = big; then
1103       csc_compiler=mcs
1104    elif test $endian = little; then
1105       case "$host" in
1106         powerpc*) csc_compiler=mcs ;;
1107         *) csc_compiler=roslyn ;;
1108       esac
1109    else
1110       csc_compiler=mcs
1111    fi
1113 AC_MSG_RESULT($csc_compiler)
1115 AC_ARG_WITH(jemalloc,             [  --with-jemalloc=yes,no               If jemalloc is enabled (defaults to no)],                                     [], [with_jemalloc=no])
1116 AC_ARG_WITH(jemalloc-always,      [  --with-jemalloc_always=yes,no        If jemalloc is enabled and always used (defaults to yes)],                    [], [with_jemalloc_always=no])
1117 AC_ARG_WITH(jemalloc-assert,      [  --with-jemalloc_assert=yes,no        If jemalloc performs runtime checks for memory correctness (defaults to no)], [], [with_jemalloc_assert=no])
1120 if test x$target_win32 = xyes; then
1121 with_jemalloc=no
1122 with_jemalloc_assert=no
1123 with_jemalloc_always=no
1126 AM_CONDITIONAL(MONO_JEMALLOC_ASSERT, [test "x$with_jemalloc_assert" = "xyes"])
1127 if test "x$with_jemalloc_assert" = "xyes"; then
1128 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ASSERT"
1129 AC_DEFINE(MONO_JEMALLOC_ASSERT, 1, [Make jemalloc assert for mono])
1130 AC_SUBST(MONO_JEMALLOC_ASSERT, 1)
1133 AM_CONDITIONAL(MONO_JEMALLOC_DEFAULT, [test "x$with_jemalloc_always" = "xyes"])
1134 if test "x$with_jemalloc_always" = "xyes"; then
1135 with_jemalloc=yes
1136 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_DEFAULT"
1137 AC_DEFINE(MONO_JEMALLOC_DEFAULT, 1, [Make jemalloc default for mono])
1138 AC_SUBST(MONO_JEMALLOC_DEFAULT, 1)
1141 AM_CONDITIONAL(MONO_JEMALLOC_ENABLED, [test "x$with_jemalloc" = "xyes"])
1142 if test "x$with_jemalloc" = "xyes"; then
1143 JEMALLOC_LDFLAGS="-L`pwd`/mono/utils/jemalloc/jemalloc/lib -ljemalloc_pic"
1144 JEMALLOC_CFLAGS+=" -DMONO_JEMALLOC_ENABLED -I `pwd`/mono/utils/jemalloc/jemalloc/include"
1145 JEMALLOC_AUTOCONF_FLAGS=" --build=$target --host=$host"
1147 if test "x$target_mach" = "xyes"; then
1148         JEMALLOC_CPPFLAGS=" -stdlib=libc++ "
1151 AC_DEFINE(MONO_JEMALLOC_ENABLED, 1, [Enable jemalloc usage for mono])
1152 AC_SUBST(MONO_JEMALLOC_ENABLED, 1)
1154 AC_SUBST(JEMALLOC_CFLAGS)
1155 AC_SUBST(JEMALLOC_CPPFLAGS)
1156 AC_SUBST(JEMALLOC_LDFLAGS)
1157 AC_SUBST(JEMALLOC_AUTOCONF_FLAGS)
1160 # Terminology:
1161 # Crash privacy - Attempts to not send identifying information in the crash dump / to protect the obscurity of the program control flow
1162 # MERP - The MS telemetry profile. Not for general use.
1163 # Structured crashes - crashes at runtime that trigger a stack walk by mono that happens cooperatively
1165 # Structured crashes are not merp crashes. Structured crashes are json dumps made by mono during crashes. Merp upload is going to use the dumping code is a very specific way, and is enabled at runtime with an icall.
1167 #--with-crash_privacy=yes --with-structured_crashes=no means we don't wanna dump in non-merp-enabled builds, and we want to not send symbol strings. This is going to be the default pair of settings for VS4Mac.
1168 #--with-crash_privacy=yes --with-structured_crashes=yes means you want to see crashes on your console, and you want to not see unmanaged symbol names. This is an option for proprietary apps that have manual bugs filed.
1169 #--with-crash_privacy=no --with-structured_crashes=no means you want to see no crash dumps on failure and you don't care about privacy. This is how you'd set a "don't want it, don't care" configuration.
1170 #--with-crash_privacy=no --with-structured_crashes=yes means you want full crashes and you want to see them in the terminal, not on telemetry. This is going to be how we build for CI.
1172 AC_ARG_WITH(crash-privacy,       [  --with-crash_privacy=yes,no         If you want your crashes to not include names of symbols present in the binary. ], [], [with_crash_privacy=yes])
1173 AC_ARG_WITH(structured-crashes,  [  --with-structured_crashes=yes,no    If you want your unmanaged crashes to result in a small crash dump file. ],        [], [with_structured_crashes=yes])
1174 AC_ARG_ENABLE(crash-reporting,  [  --disable-crash-reporting            Enable or Disable crash reporting subsystem],        [crash_reporting=$enableval], [crash_reporting=yes])
1176 if test "x$with_crash_privacy" = "xyes"; then
1177 AC_DEFINE(MONO_PRIVATE_CRASHES,1,[Do not include names of unmanaged functions in the crash dump])
1180 if test "x$with_structured_crashes" = "xno"; then
1181 AC_DEFINE(DISABLE_STRUCTURED_CRASH,1,[Do not create structured crash files during unmanaged crashes])
1184 case "$host" in
1185         *-mingw*|*-*-cygwin*)
1186                 crash_reporting=no
1187                 ;;
1188 esac
1190 if test "x$crash_reporting" != "xyes"; then
1191 CFLAGS="$CFLAGS -DDISABLE_CRASH_REPORTING=1"
1192 CXXFLAGS="$CXXFLAGS -DDISABLE_CRASH_REPORTING=1"
1195 AC_ARG_ENABLE(monodroid, [ --enable-monodroid Enable runtime support for Monodroid (Xamarin.Android)], enable_monodroid=$enableval, enable_monodroid=no)
1196 AM_CONDITIONAL(ENABLE_MONODROID, test x$enable_monodroid = xyes)
1198 AC_ARG_ENABLE(monotouch, [ --enable-monotouch Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)], enable_monotouch=$enableval, enable_monotouch=no)
1199 AM_CONDITIONAL(ENABLE_MONOTOUCH, test x$enable_monotouch = xyes)
1201 if test x$enable_monodroid = xyes; then
1202         AC_DEFINE(ENABLE_MONODROID, 1, [Enable runtime support for Monodroid (Xamarin.Android)])
1205 if test x$enable_monotouch = xyes; then
1206         AC_DEFINE(ENABLE_MONOTOUCH, 1, [Enable runtime support for Monotouch (Xamarin.iOS and Xamarin.Mac)])
1209 AC_ARG_ENABLE(cxx, [  --enable-cxx   compile some code as C++])
1211 # mono/corefx/native has a lot of invalid C++98 in its headers
1212 # dotnet/corefx/native looks a lot better, i.e. 44e5bdafb8d989a220c9cf1b94f31a64a6e4f052
1213 #CXXFLAGS_COMMON=' -std=gnu++98 -fno-exceptions -fno-rtti '
1214 CXXFLAGS_COMMON=' -std=gnu++0x -fno-exceptions -fno-rtti '
1215 # "c++0x" instead of C++11, for compat with Centos6/gcc4.4
1217 # -stdlib=libc++ is needed by clang for iOS 6.0 (-miphoneos-version-min=6.0)
1218 # to support C++11 headers but it does not seem to harm elsewhere, so over-approximate
1219 # and add it whenever we're running clang on Darwin.
1220 if test "x$mono_cv_clang" = xyes -a x$host_darwin = xyes; then
1221         CXXFLAGS_COMMON="$CXXFLAGS_COMMON -stdlib=libc++"
1224 AC_SUBST(CXXFLAGS_COMMON)
1226 if test "x$enable_cxx" = "xyes"; then
1228         CXX_ADD_CFLAGS=" -xc++ $CXXFLAGS_COMMON "
1230         # -std=gnu99 -xc++ is not allowed and errors.
1231         CXX_REMOVE_CFLAGS=-std=gnu99
1232         # These give warnings and should be removed. They are C-only.
1233         # i.e. C++ never allows these, they are always errors and their warningness is not controllable.
1234         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs"
1235         # Likewise with CentOS 6 gcc 4.4.
1236         CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Werror-implicit-function-declaration"
1238         # The C-only-ness of -Wno-format-zero-length varies with gcc version.
1239         # It is C-only prior to 4.7. Using it with C++ prior to 4.7
1240         # generates a warning every time we run gcc which is very unsightly.
1241         # The warning is for e.g. sprintf(foo, "") which can just be
1242         # foo[0] = 0 but Mono's use is more elaborate, not as easy to "fix",
1243         # and completely legal and valid.
1244         # We have to switch to C++ and not just use -xc++ because of -std=gnu99 (error when combined with -xc++).
1245         # Alternatively, just run $CXX -xc++ -c /dev/null.
1246         AC_LANG_PUSH(C++)
1247         ORIG_CXXFLAGS=$CXXFLAGS
1248         CXXFLAGS="$CXXFLAGS -Werror -Wno-format-zero-length -xc++ "
1249         AC_MSG_CHECKING(or C-only-ness of -Wno-format-zero-length)
1250         AC_TRY_COMPILE([ ], [ ], [ AC_MSG_RESULT(yes) ],
1251                                  [ AC_MSG_RESULT(no)
1252                                    CXX_REMOVE_CFLAGS="$CXX_REMOVE_CFLAGS -Wno-format-zero-length" ])
1253         CXXFLAGS=$ORIG_CXXFLAGS
1254         AC_LANG_POP(C++)
1256 AC_SUBST(CXX_ADD_CFLAGS)
1257 AC_SUBST(CXX_REMOVE_CFLAGS)
1260 # Set the build profiles and options before things which use them
1263 AC_ARG_WITH(profile4_x,          [  --with-profile4_x=yes,no            If you want to install the 4.x FX (defaults to yes)],                       [], [with_profile4_x=default])
1264 AC_ARG_WITH(monodroid,           [  --with-monodroid=yes,no             If you want to build the MonoDroid assemblies (defaults to no)],            [], [with_monodroid=default])
1265 AC_ARG_WITH(monotouch,           [  --with-monotouch=yes,no             If you want to build the Xamarin.iOS assemblies (defaults to no)],          [], [with_monotouch=default])
1266 AC_ARG_WITH(monotouch_watch,     [  --with-monotouch_watch=yes,no       If you want to build the Xamarin.WatchOS assemblies (defaults to no)],      [], [with_monotouch_watch=default])
1267 AC_ARG_WITH(monotouch_tv,        [  --with-monotouch_tv=yes,no          If you want to build the Xamarin.TVOS assemblies (defaults to no)],         [], [with_monotouch_tv=default])
1268 AC_ARG_WITH(bitcode,             [  --with-bitcode=yes,no               If bitcode is enabled (defaults to no)],                                    [], [with_bitcode=default])
1269 AC_ARG_WITH(xammac,              [  --with-xammac=yes,no                If you want to build the Xamarin.Mac assemblies (defaults to no)],          [], [with_xammac=default])
1270 AC_ARG_WITH(testing_aot_full_interp,  [  --with-testing_aot_full_interp=yes,no    If you want to build the testing_aot_full_interp assemblies (defaults to no)],   [], [with_testing_aot_full_interp=default])
1271 AC_ARG_WITH(testing_aot_hybrid,  [  --with-testing_aot_hybrid=yes,no    If you want to build the testing_aot_hybrid assemblies (defaults to no)],   [], [with_testing_aot_hybrid=default])
1272 AC_ARG_WITH(testing_aot_full,    [  --with-testing_aot_full=yes,no      If you want to build the testing_aot_full assemblies (defaults to no)],     [], [with_testing_aot_full=default])
1273 AC_ARG_WITH(winaot,              [  --with-winaot=yes,no                If you want to build the Windows friendly AOT assemblies (defaults to no)], [], [with_winaot=default])
1274 AC_ARG_WITH(testing_winaot_interp,    [  --with-testing_winaot_interp=yes,no      If you want to build the Windows friendly AOT + Interpreter testing assemblies (defaults to no)], [], [with_testing_winaot_interp=default])
1275 AC_ARG_WITH(orbis,               [  --with-orbis=yes,no                 If you want to build the Orbis assemblies (defaults to no)], [], [with_orbis=default])
1276 AC_ARG_WITH(unreal,              [  --with-unreal=yes,no                If you want to build the Unreal assemblies (defaults to no)], [], [with_unreal=default])
1277 AC_ARG_WITH(wasm,                [  --with-wasm=yes,no                  If you want to build the WebAssembly (defaults to no)], [], [with_wasm=default])
1280 AC_ARG_WITH(runtime-preset, [  --with-runtime-preset=net_4_x,all,aot,aot_llvm,hybridaot,hybridaot_llvm,fullaot,fullaot_llvm,winaot,winaotinterp,winaot_llvm,winaotinterp_llvm,bitcode,bitcodeinterp,unreal,fullaotinterp,fullaotinterp_llvm  Which default profile to build (defaults to net_4_x)],  [], [with_runtime_preset=net_4_x])
1281 AC_ARG_WITH(spectre-mitigation,             [  --with-spectre-mitigation=yes,no   If you want to build the runtime with compiler flags that enable Spectre mitigation (defaults to no)], [], [with_spectre_mitigation=default])
1282 AC_ARG_WITH(spectre-indirect-branch-choice,   [  --with-spectre-indirect-branch-choice=keep,thunk,inline,extern   Convert indirect branches to the specified kind of thunk (defaults to inline)], [], [with_spectre_indirect_branch_choice=inline])
1283 AC_ARG_WITH(spectre-function-return-choice, [  --with-spectre-function-return-choice=keep,thunk,inline,extern   Convert function return instructions to the specified kind of thunk (defaults to inline)], [], [with_spectre_function_return_choice=inline])
1286 dnl Spectre compiler mitigation flag checks
1288 if test "x$with_spectre_mitigation" = "xyes"; then
1289    AC_MSG_NOTICE([Compiler Spectre mitigation support checks])
1290    SPECTRE_CFLAGS=
1291    SPECTRE_INDIRECT_BRANCH_KIND=
1292    case "x$with_spectre_indirect_branch_choice" in
1293        xkeep) SPECTRE_INDIRECT_BRANCH_KIND=keep ;;
1294        xthunk) SPECTRE_INDIRECT_BRANCH_KIND=thunk ;;
1295        xinline) SPECTRE_INDIRECT_BRANCH_KIND=thunk-inline ;;
1296        xextern) SPECTRE_INDIRECT_BRANCH_KIND=thunk-extern ;;
1297        *) AC_MSG_ERROR([Invalid indirect jump thunk kind ($with_spectre_indirect_branch_choice)]) ;;
1298    esac
1300    SPECTRE_FUNCTION_RETURN_KIND=""
1301    case "x$with_spectre_function_return_choice" in
1302        xkeep) SPECTRE_FUNCTION_RETURN_KIND=keep ;;
1303        xthunk) SPECTRE_FUNCTION_RETURN_KIND=thunk ;;
1304        xinline) SPECTRE_FUNCTION_RETURN_KIND=thunk-inline ;;
1305        xextern) SPECTRE_FUNCTION_RETURN_KIND=thunk-extern ;;
1306        *) AC_MSG_ERROR([Invalid function return thunk kind ($with_spectre_function_return_choice)]) ;;
1307    esac
1309    AX_CHECK_COMPILE_FLAG(
1310         [ -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND ],
1311         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mindirect-branch=$SPECTRE_INDIRECT_BRANCH_KIND" ]
1312    )
1314    AX_CHECK_COMPILE_FLAG(
1315         [ -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND ],
1316         [ SPECTRE_CFLAGS="$SPECTRE_CFLAGS -mfunction-return=$SPECTRE_FUNCTION_RETURN_KIND" ]
1317    )
1319    if test "x$SPECTRE_CFLAGS" != "x" ; then
1320         CFLAGS="$CFLAGS $SPECTRE_CFLAGS"
1321         CXXFLAGS="$CXXFLAGS $SPECTRE_CFLAGS"
1322         spectre_mitigation_status="mitigation enabled"
1323    fi
1324 else
1325         spectre_mitigation_status="no mitigation"
1329 dnl Profile defaults
1331 TEST_PROFILE=default
1332 enable_llvm_default=no
1334 with_profile4_x_default=no
1335 with_monodroid_default=no
1336 with_monotouch_default=no
1337 with_monotouch_watch_default=no
1338 with_monotouch_tv_default=no
1339 with_xammac_default=no
1340 with_testing_aot_full_interp_default=no
1341 with_testing_aot_hybrid_default=no
1342 with_testing_aot_full_default=no
1343 with_winaot_default=no
1344 with_testing_winaot_interp_default=no
1345 with_orbis_default=no
1346 with_unreal_default=no
1347 with_wasm_default=no
1349 with_bitcode_default=no
1350 enable_cooperative_suspend_default=no
1351 enable_hybrid_suspend_default=no
1353 # For the sake of clearer error messages, these numbers should all be different from each other.
1354 INVARIANT_AOT_OPTIONS=nimt-trampolines=2000,ntrampolines=10000,nrgctx-fetch-trampolines=256,ngsharedvt-trampolines=4400,nftnptr-arg-trampolines=4000
1356 AOT_BUILD_ATTRS=$INVARIANT_AOT_OPTIONS
1358 MONO_LLVM_PATH_OPTION=llvm-path="`pwd`/llvm/usr/bin"
1360 if test x$cross_compiling = xyes -o x$enable_mcs_build = xno; then
1361    DISABLE_MCS_DOCS_default=yes
1362 elif test x$with_runtime_preset = xnetcore; then
1363    DISABLE_MCS_DOCS_default=yes
1364    BTLS_SUPPORTED=no
1365    enable_mcs_build=no
1366    enable_support_build=no
1368    mono_feature_disable_remoting='yes'
1369    mono_feature_disable_reflection_emit_save='yes'
1370    mono_feature_disable_appdomains='yes'
1371    mono_feature_disable_cleanup='yes'
1372    mono_feature_disable_assembly_remapping='yes'
1373    mono_feature_disable_security='yes'
1374    mono_feature_disable_mdb='yes'
1375    mono_feature_disable_com='yes'
1376    mono_feature_disable_gac='yes'
1377    mono_feature_disable_perfcounters='yes'
1378    mono_feature_disable_attach='yes'
1379    mono_feature_disable_dllmap='yes'
1380    disable_mono_native=yes
1381    support_boehm=no
1382 elif test x$with_runtime_preset = xnet_4_x; then
1383    with_profile4_x_default=yes
1384    TEST_PROFILE=net_4_x
1385 elif test x$with_runtime_preset = xall; then
1386    with_profile4_x_default=yes
1387    with_monodroid_default=yes
1388    with_monotouch_default=yes
1389    with_monotouch_watch_default=yes
1390    with_monotouch_tv_default=yes
1391    with_xammac_default=yes
1392    with_winaot_default=yes
1393    with_testing_winaot_interp_default=yes
1394    with_orbis_default=yes
1395    with_unreal_default=yes
1396    with_wasm_default=yes
1397    with_testing_aot_full_interp_default=yes
1398    with_testing_aot_hybrid_default=yes
1399    with_testing_aot_full_default=yes
1400    TEST_PROFILE=net_4_x
1401 elif test x$with_runtime_preset = xbitcode; then
1402    DISABLE_MCS_DOCS_default=yes
1403    with_testing_aot_full_default=yes
1404    with_bitcode_default=yes
1405    enable_cooperative_suspend_default=yes
1406    # FIXME: use TEST_PROFILE=testing_aot_full
1407    TEST_PROFILE=testing_aot_bitcode
1408    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1409    enable_llvm_default=yes
1411    mono_feature_disable_com='yes'
1412    mono_feature_disable_remoting='yes'
1413    mono_feature_disable_reflection_emit_save='yes'
1414    mono_feature_disable_reflection_emit='yes'
1415    mono_feature_disable_appdomains='yes'
1417    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1418    AOT_BUILD_FLAGS="--runtime=mobile --aot=llvmonly,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1419    AOT_RUN_FLAGS="--runtime=mobile --llvmonly"
1420    AOT_MODE="llvmonly"
1421 elif test x$with_runtime_preset = xbitcodeinterp; then
1422    with_testing_aot_full_interp_default=yes
1423    with_bitcode_default=yes
1424    enable_cooperative_suspend_default=yes
1425    # FIXME: use TEST_PROFILE=testing_aot_full_interp
1426    TEST_PROFILE=testing_aot_bitcode_interp
1427    PLATFORM_TEST_HARNESS_EXCLUDES=BitcodeNotSupported
1428    enable_llvm_default=yes
1430    # mscorlib.dll aot compilation crashes
1431    mono_feature_disable_com='yes'
1433    # We need at least clang++-6.0 to read the LLVM IR produced by the runtime
1434    AOT_BUILD_FLAGS="--aot=llvmonly,interp,clangxx=clang++-6.0,$INVARIANT_AOT_OPTIONS"
1435    AOT_RUN_FLAGS="--llvmonly-interp"
1436 elif test x$with_runtime_preset = xfullaot; then
1437    DISABLE_MCS_DOCS_default=yes
1438    with_testing_aot_full_default=yes
1439    TEST_PROFILE=testing_aot_full
1441    mono_feature_disable_com='yes'
1442    mono_feature_disable_remoting='yes'
1443    mono_feature_disable_reflection_emit_save='yes'
1444    mono_feature_disable_reflection_emit='yes'
1445    mono_feature_disable_appdomains='yes'
1447    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1448    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1449    AOT_MODE="full"
1450 elif test x$with_runtime_preset = xfullaot_llvm; then
1451    DISABLE_MCS_DOCS_default=yes
1452    with_testing_aot_full_default=yes
1453    TEST_PROFILE=testing_aot_full
1455    mono_feature_disable_com='yes'
1456    mono_feature_disable_remoting='yes'
1457    mono_feature_disable_reflection_emit_save='yes'
1458    mono_feature_disable_reflection_emit='yes'
1459    mono_feature_disable_appdomains='yes'
1461    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1462    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1463    AOT_MODE="full"
1464 elif test x$with_runtime_preset = xhybridaot; then
1465    DISABLE_MCS_DOCS_default=yes
1466    with_testing_aot_hybrid_default=yes
1467    TEST_PROFILE=testing_aot_hybrid 
1469    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1470    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1471 elif test x$with_runtime_preset = xhybridaot_llvm; then
1472    DISABLE_MCS_DOCS_default=yes
1473    with_testing_aot_hybrid_default=yes
1474    TEST_PROFILE=testing_aot_hybrid
1476    AOT_BUILD_FLAGS="--runtime=mobile --llvm --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1477    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1478 elif test x$with_runtime_preset = xfullaotinterp; then
1479    with_testing_aot_full_interp_default=yes
1480    TEST_PROFILE=testing_aot_full_interp
1482    # mscorlib.dll aot compilation crashes
1483    mono_feature_disable_com='yes'
1485    AOT_BUILD_FLAGS="--aot=full,interp,$INVARIANT_AOT_OPTIONS"
1486    AOT_RUN_FLAGS="--full-aot-interp"
1487 elif test x$with_runtime_preset = xfullaotinterp_llvm; then
1488    with_testing_aot_full_interp_default=yes
1489    TEST_PROFILE=testing_aot_full_interp
1491    # mscorlib.dll aot compilation crashes
1492    mono_feature_disable_com='yes'
1494    AOT_BUILD_FLAGS="-O=gsharedvt --llvm --aot=full,interp,$INVARIANT_AOT_OPTIONS"
1495    AOT_RUN_FLAGS="--full-aot-interp"
1496 elif test x$with_runtime_preset = xaot; then
1497    with_profile4_x_default=yes
1499    AOT_BUILD_FLAGS="--aot=$INVARIANT_AOT_OPTIONS"
1500    AOT_RUN_FLAGS=""
1502    DISABLE_MCS_DOCS_default=yes
1503 elif test x$with_runtime_preset = xaot_llvm; then
1504    with_profile4_x_default=yes
1506    AOT_BUILD_FLAGS="--llvm --aot=$INVARIANT_AOT_OPTIONS"
1507    AOT_RUN_FLAGS=""
1509    DISABLE_MCS_DOCS_default=yes
1510 elif test x$with_runtime_preset = xwinaot; then
1511    DISABLE_MCS_DOCS_default=yes
1512    with_winaot_default=yes
1513    TEST_PROFILE=winaot
1515    mono_feature_disable_com='yes'
1516    mono_feature_disable_remoting='yes'
1517    mono_feature_disable_reflection_emit_save='yes'
1518    mono_feature_disable_reflection_emit='yes'
1519    mono_feature_disable_appdomains='yes'
1521    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --aot=full,$INVARIANT_AOT_OPTIONS"
1522    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1523    AOT_MODE="full"
1524 elif test x$with_runtime_preset = xwinaotinterp; then
1525    DISABLE_MCS_DOCS_default=yes
1526    with_testing_winaot_interp_default=yes
1527    TEST_PROFILE=testing_winaot_interp
1529    mono_feature_disable_com='yes'
1530    mono_feature_disable_remoting='yes'
1531    mono_feature_disable_appdomains='yes'
1533    AOT_BUILD_FLAGS="--aot=full,interp,$INVARIANT_AOT_OPTIONS"
1534    AOT_RUN_FLAGS="--full-aot-interp"
1535 elif test x$with_runtime_preset = xwinaotinterp_llvm; then
1536    DISABLE_MCS_DOCS_default=yes
1537    with_testing_winaot_interp_default=yes
1538    TEST_PROFILE=testing_winaot_interp
1540    mono_feature_disable_com='yes'
1541    mono_feature_disable_remoting='yes'
1542    mono_feature_disable_appdomains='yes'
1544    INVARIANT_AOT_OPTIONS="llvmllc=-mattr=sse4.1,$INVARIANT_AOT_OPTIONS"
1545    AOT_BUILD_FLAGS="-O=gsharedvt --llvm --aot=full,interp,$INVARIANT_AOT_OPTIONS"
1546    AOT_RUN_FLAGS="--full-aot-interp"
1547 elif test x$with_runtime_preset = xwinaot_llvm; then
1548    DISABLE_MCS_DOCS_default=yes
1549    with_winaot_default=yes
1550    TEST_PROFILE=winaot
1552    mono_feature_disable_com='yes'
1553    mono_feature_disable_remoting='yes'
1554    mono_feature_disable_reflection_emit_save='yes'
1555    mono_feature_disable_reflection_emit='yes'
1556    mono_feature_disable_appdomains='yes'
1558    INVARIANT_AOT_OPTIONS="llvmllc=-mattr=sse4.1,$INVARIANT_AOT_OPTIONS"
1559    AOT_BUILD_FLAGS="--runtime=mobile -O=gsharedvt --llvm --aot=full,$INVARIANT_AOT_OPTIONS"
1560    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1561    AOT_MODE="full"
1562 elif test x$with_runtime_preset = xorbis; then
1563    DISABLE_MCS_DOCS_default=yes
1564    with_orbis_default=yes
1565    TEST_PROFILE=orbis
1567    mono_feature_disable_com='yes'
1568    mono_feature_disable_remoting='yes'
1569    mono_feature_disable_reflection_emit_save='yes'
1570    mono_feature_disable_reflection_emit='yes'
1571    mono_feature_disable_appdomains='yes'
1573    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1574    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1575    AOT_MODE="full"
1576 elif test x$with_runtime_preset = xunreal; then
1577    DISABLE_MCS_DOCS_default=yes
1578    with_unreal_default=yes
1579    TEST_PROFILE=unreal
1581    mono_feature_disable_com='yes'
1582    mono_feature_disable_remoting='yes'
1583    mono_feature_disable_appdomains='no'
1585    AOT_BUILD_FLAGS="--runtime=mobile --aot=hybrid,$INVARIANT_AOT_OPTIONS"
1586    AOT_RUN_FLAGS="--runtime=mobile --hybrid-aot"
1587 elif test x$with_runtime_preset = xwasm; then
1588    DISABLE_MCS_DOCS_default=yes
1589    with_wasm_default=yes
1590    TEST_PROFILE=wasm
1592    mono_feature_disable_com='yes'
1593    mono_feature_disable_remoting='yes'
1594    mono_feature_disable_reflection_emit_save='yes'
1595    mono_feature_disable_reflection_emit='yes'
1596    mono_feature_disable_appdomains='yes'
1598    AOT_BUILD_FLAGS="--runtime=mobile --aot=full,$INVARIANT_AOT_OPTIONS"
1599    AOT_RUN_FLAGS="--runtime=mobile --full-aot"
1600 else
1601    TEST_PROFILE=net_4_x
1602    with_profile4_x_default=yes
1605 if test "x$AOT_BUILD_FLAGS" != "x"; then :
1606    AC_SUBST(AOT_BUILD_FLAGS)
1607    AC_SUBST(AOT_RUN_FLAGS)
1608    # For llvmonlycheck + fullaotcheck
1609    AC_SUBST(INVARIANT_AOT_OPTIONS)
1612 AC_SUBST(TEST_PROFILE)
1614 if test "x$with_profile4_x" = "xdefault"; then
1615    with_profile4_x=$with_profile4_x_default
1617 if test "x$with_monodroid" = "xdefault"; then
1618    with_monodroid=$with_monodroid_default
1620 if test "x$with_monotouch" = "xdefault"; then
1621    with_monotouch=$with_monotouch_default
1623 if test "x$with_monotouch_watch" = "xdefault"; then
1624    with_monotouch_watch=$with_monotouch_watch_default
1626 if test "x$with_monotouch_tv" = "xdefault"; then
1627    with_monotouch_tv=$with_monotouch_tv_default
1629 if test "x$with_bitcode" = "xdefault"; then
1630    with_bitcode=$with_bitcode_default
1632 if test "x$with_xammac" = "xdefault"; then
1633    with_xammac=$with_xammac_default
1635 if test "x$with_testing_aot_full_interp" = "xdefault"; then
1636    with_testing_aot_full_interp=$with_testing_aot_full_interp_default
1638 if test "x$with_testing_aot_hybrid" = "xdefault"; then
1639    with_testing_aot_hybrid=$with_testing_aot_hybrid_default
1641 if test "x$with_testing_aot_full" = "xdefault"; then
1642    with_testing_aot_full=$with_testing_aot_full_default
1644 if test "x$with_winaot" = "xdefault"; then
1645    with_winaot=$with_winaot_default
1647 if test "x$with_testing_winaot_interp" = "xdefault"; then
1648    with_testing_winaot_interp=$with_testing_winaot_interp_default
1650 if test "x$with_orbis" = "xdefault"; then
1651    with_orbis=$with_orbis_default
1653 if test "x$with_unreal" = "xdefault"; then
1654    with_unreal=$with_unreal_default
1656 if test "x$with_wasm" = "xdefault"; then
1657    with_wasm=$with_wasm_default
1661 AM_CONDITIONAL(INSTALL_4_x, [test "x$with_profile4_x" = "xyes"])
1662 AM_CONDITIONAL(INSTALL_MONODROID, [test "x$with_monodroid" != "xno"])
1663 AM_CONDITIONAL(INSTALL_MONOTOUCH, [test "x$with_monotouch" != "xno"])
1664 AM_CONDITIONAL(INSTALL_MONOTOUCH_WATCH, [test "x$with_monotouch_watch" != "xno"])
1665 AM_CONDITIONAL(INSTALL_MONOTOUCH_TV, [test "x$with_monotouch_tv" != "xno"])
1666 AM_CONDITIONAL(BITCODE, test "x$with_bitcode" = "xyes")
1667 AM_CONDITIONAL(INSTALL_XAMMAC, [test "x$with_xammac" != "xno"])
1668 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL_INTERP, [test "x$with_testing_aot_full_interp" != "xno"])
1669 AM_CONDITIONAL(INSTALL_TESTING_AOT_HYBRID, [test "x$with_testing_aot_hybrid" != "xno"])
1670 AM_CONDITIONAL(INSTALL_TESTING_AOT_FULL, [test "x$with_testing_aot_full" != "xno"])
1671 AM_CONDITIONAL(INSTALL_WINAOT, [test "x$with_winaot" != "xno"])
1672 AM_CONDITIONAL(INSTALL_TESTING_WINAOT_INTERP, [test "x$with_testing_winaot_interp" != "xno"])
1673 AM_CONDITIONAL(INSTALL_ORBIS, [test "x$with_orbis" != "xno"])
1674 AM_CONDITIONAL(INSTALL_UNREAL, [test "x$with_unreal" != "xno"])
1675 AM_CONDITIONAL(INSTALL_WASM, [test "x$with_wasm" != "xno"])
1676 AM_CONDITIONAL(INSTALL_NETCORE, [test "x$with_core" != "xno"])
1678 AM_CONDITIONAL(HYBRID_AOT_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_hybrid"] || [test "x$TEST_PROFILE" = "xunreal"])
1679 AM_CONDITIONAL(FULL_AOT_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_full"] || [test "x$TEST_PROFILE" = "xtesting_aot_bitcode"] || [test "x$TEST_PROFILE" = "xwinaot"] || [test "x$TEST_PROFILE" = "xorbis"] || [test "x$TEST_PROFILE" = "xwasm"])
1680 AM_CONDITIONAL(FULL_AOT_INTERP_TESTS, [test "x$TEST_PROFILE" = "xtesting_aot_full_interp"] || [test "x$TEST_PROFILE" = "xtesting_aot_bitcode_interp"] || [test "x$TEST_PROFILE" = "xtesting_winaot_interp"])
1681 AM_CONDITIONAL(DEFAULT_TESTS, [test "x$TEST_PROFILE" = "xnet_4_x"])
1683 default_profile=net_4_x
1684 if test -z "$INSTALL_MONODROID_TRUE"; then :
1685    default_profile=monodroid
1687 if test -z "$INSTALL_MONOTOUCH_TRUE"; then :
1688    default_profile=monotouch
1690 if test -z "$INSTALL_XAMMAC_TRUE"; then :
1691    default_profile=xammac
1693 if test -z "$INSTALL_TESTING_AOT_FULL_INTERP_TRUE"; then :
1694    default_profile=testing_aot_full_interp
1696 if test -z "$INSTALL_TESTING_AOT_HYBRID_TRUE"; then :
1697    default_profile=testing_aot_hybrid
1699 if test -z "$INSTALL_TESTING_AOT_FULL_TRUE"; then :
1700    default_profile=testing_aot_full
1702 if test -z "$INSTALL_WINAOT_TRUE"; then :
1703    default_profile=winaot
1705 if test -z "$INSTALL_TESTING_WINAOT_INTERP_TRUE"; then :
1706    default_profile=testing_winaot_interp
1708 if test -z "$INSTALL_ORBIS_TRUE"; then :
1709    default_profile=orbis
1711 if test -z "$INSTALL_UNREAL_TRUE"; then :
1712    default_profile=unreal
1714 if test -z "$INSTALL_WASM_TRUE"; then :
1715    default_profile=wasm
1717 if test -z "$INSTALL_4_x_TRUE"; then :
1718    default_profile=net_4_x
1720 DEFAULT_PROFILE=$default_profile
1721 AC_SUBST(DEFAULT_PROFILE)
1724 # End build profile configuration
1727 if test x$USE_NLS = xprofile_default; then
1729         AC_MSG_CHECKING([NLS used])
1731         # We make the default value for USE_NLS
1732         # "no" on OSX because it isn't available on most
1733         # default OSX installs. The most common configurations will
1734         # all disable it, so this saves us typing.
1735         if test x$host_darwin = xyes; then
1736                 USE_NLS=no;
1737         else
1738                 USE_NLS=yes;
1739         fi
1741         AC_SUBST([USE_NLS])
1742         AC_MSG_RESULT([$USE_NLS])
1745 AC_ARG_ENABLE(static-gcc-libs, [  --enable-static-gcc-libs      Statically link GCC support libs (for MinGW32)])
1746 if test "x$enable_static_gcc_libs" = "xyes"; then
1747         # llvm/build.mk doesn't use automake, so make a regular make variable for it.
1748         AC_SUBST(STATIC_GCC_LIBS,1)
1750 AM_CONDITIONAL(ENABLE_STATIC_GCC_LIBS, test "x$enable_static_gcc_libs" = "xyes")
1752 AC_ARG_ENABLE(minimal, [  --enable-minimal=LIST      drop support for LIST subsystems.
1753      LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains, verifier, dllmap,
1754      reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, interpreter, simd, soft_debug, perfcounters, normalization, desktop_loader, shared_perfcounters, remoting,
1755          security, lldb, mdb, assert_messages, cleanup, sgen_marksweep_conc, sgen_split_nursery, sgen_gc_bridge, sgen_debug_helpers, sockets, gac.],
1757         for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
1758                 eval "mono_feature_disable_$feature='yes'"
1759         done
1760         DISABLED_FEATURES=$enable_minimal
1761         disabled="Disabled:      $enable_minimal"
1762 ],[])
1764 AC_DEFINE_UNQUOTED(DISABLED_FEATURES, "$DISABLED_FEATURES", [String of disabled features])
1766 if test "x$mono_feature_disable_aot" = "xyes"; then
1767         AC_DEFINE(DISABLE_AOT, 1, [Disable AOT Compiler])
1768         enable_system_aot=no
1769         AC_MSG_NOTICE([Disabled AOT compiler])
1772 if test "x$mono_feature_disable_profiler" = "xyes"; then
1773         AC_DEFINE(DISABLE_PROFILER, 1, [Disable default profiler support])
1774         AC_MSG_NOTICE([Disabled support for the profiler])
1776 AM_CONDITIONAL(DISABLE_PROFILER, test x$mono_feature_disable_profiler = xyes)
1778 if test "x$mono_feature_disable_decimal" = "xyes"; then
1779         AC_DEFINE(DISABLE_DECIMAL, 1, [Disable System.Decimal support])
1780         AC_MSG_NOTICE([Disabled support for decimal])
1783 if test "x$mono_feature_disable_pinvoke" = "xyes"; then
1784         AC_DEFINE(DISABLE_PINVOKE, 1, [Disable P/Invoke support])
1785         AC_MSG_NOTICE([Disabled support for P/Invoke])
1788 if test "x$mono_feature_disable_debug" = "xyes"; then
1789         AC_DEFINE(DISABLE_DEBUG, 1, [Disable runtime debugging support])
1790         AC_MSG_NOTICE([Disabled support for runtime debugging])
1793 if test "x$mono_feature_disable_reflection_emit" = "xyes"; then
1794         AC_DEFINE(DISABLE_REFLECTION_EMIT, 1, [Disable reflection emit support])
1795         mono_feature_disable_reflection_emit_save=yes
1796         AC_MSG_NOTICE([Disabled support for Reflection.Emit])
1799 if test "x$mono_feature_disable_reflection_emit_save" = "xyes"; then
1800         AC_DEFINE(DISABLE_REFLECTION_EMIT_SAVE, 1, [Disable assembly saving support in reflection emit])
1801         AC_MSG_NOTICE([Disabled support for Reflection.Emit.Save])
1804 if test "x$mono_feature_disable_large_code" = "xyes"; then
1805         AC_DEFINE(DISABLE_LARGE_CODE, 1, [Disable support for huge assemblies])
1806         AC_MSG_NOTICE([Disabled support for large assemblies])
1809 if test "x$mono_feature_disable_logging" = "xyes"; then
1810         AC_DEFINE(DISABLE_LOGGING, 1, [Disable support debug logging])
1811         AC_MSG_NOTICE([Disabled support for logging])
1814 if test "x$mono_feature_disable_com" = "xyes"; then
1815         AC_DEFINE(DISABLE_COM, 1, [Disable COM support])
1816         AC_MSG_NOTICE([Disabled COM support])
1819 if test "x$mono_feature_disable_ssa" = "xyes"; then
1820         AC_DEFINE(DISABLE_SSA, 1, [Disable advanced SSA JIT optimizations])
1821         AC_MSG_NOTICE([Disabled SSA JIT optimizations])
1824 if test "x$mono_feature_disable_generics" = "xyes"; then
1825         AC_DEFINE(DISABLE_GENERICS, 1, [Disable generics support])
1826         AC_MSG_NOTICE([Disabled Generics Support])
1829 if test "x$mono_feature_disable_shadowcopy" = "xyes"; then
1830         AC_DEFINE(DISABLE_SHADOW_COPY, 1, [Disable Shadow Copy for AppDomains])
1831         AC_MSG_NOTICE([Disabled Shadow copy for AppDomains])
1834 if test "x$mono_feature_disable_portability" = "xyes"; then
1835         AC_DEFINE(DISABLE_PORTABILITY, 1, [Disables the IO portability layer])
1836         AC_MSG_NOTICE([Disabled IO Portability layer])
1839 if test "x$mono_feature_disable_attach" = "xyes"; then
1840         AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support])
1841         AC_MSG_NOTICE([Disabled agent attach])
1844 if test "x$mono_feature_disable_verifier" = "xyes"; then
1845         AC_DEFINE(DISABLE_VERIFIER, 1, [Disables the verifier])
1846         AC_MSG_NOTICE([Disabled the metadata and IL verifiers])
1849 if test "x$mono_feature_disable_jit" = "xyes"; then
1850         AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode or interpreter will be supported by the runtime.])
1851         AC_MSG_NOTICE([Disabled the JIT engine, only full AOT or interpreter will be supported])
1854 AM_CONDITIONAL(DISABLE_JIT, test x$mono_feature_disable_jit = xyes)
1856 if test "x$mono_feature_disable_interpreter" = "xyes"; then
1857         AC_DEFINE(DISABLE_INTERPRETER, 1, [Disable the interpreter.])
1858         AC_MSG_NOTICE([Disabled the interpreter])
1861 AM_CONDITIONAL(DISABLE_INTERPRETER, test x$mono_feature_disable_interpreter = xyes)
1863 if test "x$mono_feature_disable_interpreter" != "xyes" -o "x$mono_feature_disable_jit" != "xyes"; then
1864         AC_DEFINE(ENABLE_ILGEN, 1, [Some VES is available at runtime])
1867 AM_CONDITIONAL(ENABLE_ILGEN, test x$mono_feature_disable_interpreter != xyes -o x$mono_feature_disable_jit != xyes)
1869 if test "x$mono_feature_disable_simd" = "xyes"; then
1870         AC_DEFINE(DISABLE_SIMD, 1, [Disable SIMD intrinsics related optimizations.])
1871         AC_MSG_NOTICE([Disabled SIMD support])
1874 if test "x$mono_feature_disable_soft_debug" = "xyes"; then
1875         AC_DEFINE(DISABLE_DEBUGGER_AGENT, 1, [Disable Soft Debugger Agent.])
1876         AC_MSG_NOTICE([Disabled Soft Debugger.])
1879 AM_CONDITIONAL(DISABLE_DEBUGGER_AGENT, test x$mono_feature_disable_debugger_agent = xyes)
1881 if test "x$mono_feature_disable_perfcounters" = "xyes"; then
1882         AC_DEFINE(DISABLE_PERFCOUNTERS, 1, [Disable Performance Counters.])
1883         AC_MSG_NOTICE([Disabled Performance Counters.])
1885 if test "x$mono_feature_disable_normalization" = "xyes"; then
1886         AC_DEFINE(DISABLE_NORMALIZATION, 1, [Disable String normalization support.])
1887         AC_MSG_NOTICE([Disabled String normalization support.])
1890 #TODO: remove assembly_remapping feature name once everyone is using desktop_loader
1891 if test "x$mono_feature_disable_assembly_remapping" = "xyes" || test "x$mono_feature_disable_desktop_loader" = "xyes"; then
1892         AC_DEFINE(DISABLE_DESKTOP_LOADER, 1, [Disable desktop assembly loader semantics.])
1893         AC_MSG_NOTICE([Disabled desktop assembly loader semantics.])
1896 if test "x$mono_feature_disable_shared_perfcounters" = "xyes"; then
1897         AC_DEFINE(DISABLE_SHARED_PERFCOUNTERS, 1, [Disable shared perfcounters.])
1898         AC_MSG_NOTICE([Disabled Shared perfcounters.])
1901 if test "x$mono_feature_disable_appdomains" = "xyes"; then
1902         AC_DEFINE(DISABLE_APPDOMAINS, 1, [Disable support for multiple appdomains.])
1903         AC_MSG_NOTICE([Disabled support for multiple appdomains.])
1906 if test "x$mono_feature_disable_remoting" = "xyes"; then
1907         AC_DEFINE(DISABLE_REMOTING, 1, [Disable remoting support (This disables type proxies and make com non-functional)])
1908         AC_MSG_NOTICE([Disabled remoting])
1911 if test "x$mono_feature_disable_security" = "xyes"; then
1912         AC_DEFINE(DISABLE_SECURITY, 1, [Disable CAS/CoreCLR security])
1913         AC_MSG_NOTICE([Disabled CAS/CoreCLR security manager (used e.g. for Moonlight)])
1916 if test "x$mono_feature_disable_lldb" = "xyes"; then
1917         AC_DEFINE(DISABLE_LLDB, 1, [Disable support code for the LLDB plugin.])
1918         AC_MSG_NOTICE([Disabled LLDB plugin support code.])
1921 if test "x$mono_feature_disable_mdb" = "xyes"; then
1922         AC_DEFINE(DISABLE_MDB, 1, [Disable support for .mdb symbol files.])
1923         AC_MSG_NOTICE([Disabled support for .mdb symbol files.])
1926 if test "x$mono_feature_disable_assert_messages" = "xyes"; then
1927         AC_DEFINE(DISABLE_ASSERT_MESSAGES, 1, [Disable assertion messages.])
1928         AC_MSG_NOTICE([Disabled assertion messages.])
1931 if test "x$mono_feature_disable_cleanup" = "xyes"; then
1932         AC_DEFINE(DISABLE_CLEANUP, 1, [Disable runtime cleanup.])
1933         AC_MSG_NOTICE([Disabled runtime cleanup.])
1936 if test "x$mono_feature_disable_sgen_marksweep_conc" = "xyes"; then
1937         AC_DEFINE(DISABLE_SGEN_MAJOR_MARKSWEEP_CONC, 1, [Disable concurrent gc support in SGEN.])
1938         AC_MSG_NOTICE([Disabled concurrent gc support in SGEN.])
1942 if test "x$mono_feature_disable_sgen_split_nursery" = "xyes"; then
1943         AC_DEFINE(DISABLE_SGEN_SPLIT_NURSERY, 1, [Disable minor=split support in SGEN.])
1944         AC_MSG_NOTICE([Disabled minor=split support in SGEN.])
1947 if test "x$mono_feature_disable_sgen_gc_bridge" = "xyes"; then
1948         AC_DEFINE(DISABLE_SGEN_GC_BRIDGE, 1, [Disable gc bridge support in SGEN.])
1949         AC_MSG_NOTICE([Disabled gc bridge support in SGEN.])
1952 if test "x$mono_feature_disable_sgen_debug_helpers" = "xyes"; then
1953         AC_DEFINE(DISABLE_SGEN_DEBUG_HELPERS, 1, [Disable debug helpers in SGEN.])
1954         AC_MSG_NOTICE([Disabled debug helpers in SGEN.])
1957 if test "x$mono_feature_disable_sockets" = "xyes"; then
1958         AC_DEFINE(DISABLE_SOCKETS, 1, [Disable sockets])
1959         AC_MSG_NOTICE([Disabled sockets])
1962 if test "x$mono_feature_disable_gac" = "xyes"; then
1963         AC_DEFINE(DISABLE_GAC, 1, [Disable GAC])
1964         AC_MSG_NOTICE([Disabled GAC support])
1967 if test "x$mono_feature_disable_dllmap" = "xyes"; then
1968     AC_DEFINE(DISABLE_DLLMAP,1,[Disables use of DllMaps in MonoVM])
1969     AC_MSG_NOTICE([Disabled DllMap in the loader.])
1972 AC_ARG_ENABLE(executables, [  --disable-executables disable the build of the runtime executables], enable_executables=$enableval, enable_executables=yes)
1973 AM_CONDITIONAL(DISABLE_EXECUTABLES, test x$enable_executables = xno)
1975 has_extension_module=no
1976 AC_ARG_ENABLE(extension-module, [  --enable-extension-module=LIST enable the core-extensions from LIST],
1978         for extension in `echo "$enable_extension_module" | sed -e "s/,/ /g"`; do
1979                 if test x$extension = xdefault ; then
1980                         has_extension_module=yes;
1981                 fi
1982         done
1983         if test x$enable_extension_module = xyes; then
1984                 has_extension_module=yes;
1985         fi
1986 ], [])
1988 AM_CONDITIONAL([HAS_EXTENSION_MODULE], [test x$has_extension_module != xno])
1990 if test x$has_extension_module != xno ; then
1991         AC_DEFINE([ENABLE_EXTENSION_MODULE], 1, [Extension module enabled])
1992         AC_MSG_NOTICE([Enabling mono extension module.])
1995 # Deprecated
1996 AC_ARG_ENABLE(gsharedvt, [  --enable-gsharedvt Enable generic valuetype sharing (Deprecated)], enable_gsharedvt=$enableval, enable_gsharedvt=no)
1998 AC_MSG_CHECKING(for visibility __attribute__)
1999 AC_COMPILE_IFELSE([
2000         AC_LANG_SOURCE([[
2001                 void __attribute__ ((visibility ("hidden"))) doit (void) {}
2002                 int main () { doit (); return 0; }
2003         ]])
2004 ], [
2005    have_visibility_hidden=yes
2006    AC_MSG_RESULT(yes)
2007 ], [
2008    have_visibility_hidden=no
2009    AC_MSG_RESULT(no)
2013 dnl Boehm GC configuration
2016 AC_ARG_WITH(libgc,   [  --with-libgc=included,none  Controls the Boehm GC config, default=included],[libgc=$with_libgc],[libgc=included])
2018 AC_ARG_ENABLE(boehm, [  --disable-boehm            Disable the Boehm GC.], support_boehm=$enableval,support_boehm=${support_boehm:-yes})
2019 AM_CONDITIONAL(SUPPORT_BOEHM, test x$support_boehm = xyes)
2021 if test "x$support_boehm" = "xyes"; then
2023         AC_ARG_ENABLE(parallel-mark, [  --enable-parallel-mark     Enables Boehm GC Parallel Marking], enable_parallel_mark=$enableval, enable_parallel_mark=$parallel_mark)
2024         if test x$enable_parallel_mark = xyes; then
2025                 libgc_configure_args="$libgc_configure_args --enable-parallel-mark"
2026         fi
2028         gc_msg=""
2029         LIBGC_CPPFLAGS=
2030         LIBGC_LIBS=
2031         LIBGC_STATIC_LIBS=
2032         libgc_dir=
2033         case "x$libgc" in
2034                 xincluded)
2035                         if test "x$support_boehm" = "xyes"; then
2036                                 libgc_dir=libgc
2037                         fi
2039                         LIBGC_CPPFLAGS='-I$(top_srcdir)/libgc/include'
2040                         LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
2041                         LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
2043                         BOEHM_DEFINES="-DHAVE_BOEHM_GC"
2045                         if test x$target_win32 = xyes; then
2046                                 BOEHM_DEFINES="$BOEHM_DEFINES -DGC_NOT_DLL"
2047                                 CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DGC_BUILD -DGC_NOT_DLL"
2048                         fi
2050                         gc_msg="Included Boehm GC with typed GC"
2051                         if test x$enable_parallel_mark = xyes; then
2052                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC and Parallel Mark)", [GC description])
2053                                 gc_msg="$gc_msg and parallel mark"
2054                         else
2055                                 AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "Included Boehm (with typed GC)", [GC description])
2056                         fi
2057                         ;;
2059                 xboehm|xbohem|xyes)
2060                         AC_MSG_WARN("External Boehm is no longer supported")
2061                         ;;
2063                 xsgen)
2064                         AC_MSG_WARN("Use --with-sgen instead, --with-libgc= controls Boehm configuration")
2065                         ;;
2067                 xnone)
2068                         AC_MSG_WARN("Compiling mono without GC.")
2069                         AC_DEFINE_UNQUOTED(DEFAULT_GC_NAME, "none", [GC description])
2070                         AC_DEFINE(HAVE_NULL_GC,1,[No GC support.])
2071                         gc_msg="none"
2072                         ;;
2073                 *)
2074                         AC_MSG_ERROR([Invalid argument $libgc to --with-libgc.])
2075                         ;;
2076         esac
2078         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])
2079         if test "x$large_heap" = "xyes"; then
2080            CPPFLAGS="$CPPFLAGS -DLARGE_CONFIG"
2081         fi
2083         AC_SUBST(LIBGC_CPPFLAGS)
2084         AC_SUBST(LIBGC_LIBS)
2085         AC_SUBST(LIBGC_STATIC_LIBS)
2086         AC_SUBST(libgc_dir)
2087         AC_SUBST(BOEHM_DEFINES)
2090 AM_CONDITIONAL(SUPPORT_NULLGC, test "x$libgc" = "xnone")
2093 dnl End of Boehm GC Configuration
2096 dnl *************************************
2097 dnl *** Checks for zero length arrays ***
2098 dnl *************************************
2099 AC_MSG_CHECKING(whether $CC supports zero length arrays)
2100 AC_TRY_COMPILE([
2101         struct s {
2102                 int  length;
2103                 char data [0];
2104         };
2105 ], [], [
2106         AC_MSG_RESULT(yes)
2107         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 0, [Length of zero length arrays])
2108 ], [
2109         AC_MSG_RESULT(no)
2110         AC_DEFINE_UNQUOTED(MONO_ZERO_LEN_ARRAY, 1, [Length of zero length arrays])
2113 dnl ***********************************
2114 dnl *** Checks for signals
2115 dnl ***********************************
2116 AC_CHECK_HEADERS(signal.h)
2117 AC_CHECK_FUNCS(sigaction)
2118 AC_CHECK_FUNCS(kill)
2119 AC_CHECK_FUNCS(signal)
2121 # signal() is declared inline in Android headers
2122 # so we need to workaround it by overriding the check.
2123 if test x$platform_android = xyes; then
2124         AC_DEFINE(HAVE_SIGNAL,1)
2127 # `target_ios=yes` does not detect watch devices and fails when cross-compiling
2128 AC_MONO_APPLE_TARGET(TARGET_OS_IPHONE, [mono_native_platform_ios=yes])
2130 if test x$host_win32 = xno; then
2131         dnl *************************************
2132         dnl *** Checks for time capabilities ***
2133         dnl *************************************
2135         AC_MSG_CHECKING(for CLOCK_MONOTONIC)
2136         AC_TRY_COMPILE([#include <time.h>], [
2137                 const int foo = CLOCK_MONOTONIC;
2138         ],[
2139                 AC_MSG_RESULT(yes)
2140                 AC_DEFINE(HAVE_CLOCK_MONOTONIC, 1, [CLOCK_MONOTONIC])
2141         ], [
2142                 AC_MSG_RESULT(no)
2143         ])
2145         AC_MSG_CHECKING(for CLOCK_MONOTONIC_COARSE)
2146         AC_TRY_COMPILE([#include <time.h>], [
2147                 const int foo = CLOCK_MONOTONIC_COARSE;
2148         ],[
2149                 AC_MSG_RESULT(yes)
2150                 AC_DEFINE(HAVE_CLOCK_MONOTONIC_COARSE, 1, [CLOCK_MONOTONIC_COARSE])
2151         ], [
2152                 AC_MSG_RESULT(no)
2153         ])
2155         AC_MSG_CHECKING(for CLOCK_REALTIME)
2156         AC_TRY_COMPILE([#include <time.h>], [
2157                 const int foo = CLOCK_REALTIME;
2158         ],[
2159                 AC_MSG_RESULT(yes)
2160                 AC_DEFINE(HAVE_CLOCK_REALTIME, 1, [CLOCK_REALTIME])
2161         ], [
2162                 AC_MSG_RESULT(no)
2163         ])
2165         AC_CHECK_FUNC(mach_absolute_time, [AC_DEFINE(HAVE_MACH_ABSOLUTE_TIME, 1, [mach_absolute_time])])
2166         AC_CHECK_FUNC(gethrtime, [AC_DEFINE(HAVE_GETHRTIME, 1, [gethrtime])])
2167         AC_CHECK_FUNC(read_real_time, [AC_DEFINE(HAVE_READ_REAL_TIME, 1, [read_real_time])])
2168         AC_CHECK_FUNC(mach_timebase_info, [AC_DEFINE(HAVE_MACH_TIMEBASE_INFO, 1, [mach_timebase_info])])
2169         AC_CHECK_FUNC(futimes,            [AC_DEFINE(HAVE_FUTIMES, 1, [futimes])])
2170         AC_CHECK_FUNC(futimens,           [AC_DEFINE(HAVE_FUTIMENS, 1, [futimens])])
2172         dnl hires monotonic clock support
2173         AC_SEARCH_LIBS(clock_gettime, rt)
2174         AC_CHECK_FUNCS(clock_nanosleep)
2176         dnl dynamic loader support
2177         AC_CHECK_FUNC(dlopen, DL_LIB="",
2178                 AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", dl_support=no)
2179         )
2180         if test x$dl_support = xno; then
2181                 AC_MSG_WARN([No dynamic loading support available])
2182         else
2183                 LIBS="$LIBS $DL_LIB"
2184                 dnl from glib's configure.ac
2185                 if test "x$cross_compiling" = "xyes"; then
2186                    AC_MSG_RESULT(cross compiling, assuming no)
2187                    mono_cv_uscore=no
2188                 else
2189                         AC_CACHE_CHECK([for preceeding underscore in symbols],
2190                           mono_cv_uscore,[
2191                           AC_TRY_RUN([#include <dlfcn.h>
2192                           int mono_underscore_test (void) { return 42; }
2193                           int main() {
2194                             void *f1 = (void*)0, *f2 = (void*)0, *handle;
2195                             handle = dlopen ((void*)0, 0);
2196                             if (handle) {
2197                               f1 = dlsym (handle, "mono_underscore_test");
2198                               f2 = dlsym (handle, "_mono_underscore_test");
2199                             } return (!f2 || f1);
2200                           }],
2201                                 [mono_cv_uscore=yes],
2202                                 [mono_cv_uscore=no],
2203                           [])
2204                   ])
2205                 fi
2206                 if test "x$mono_cv_uscore" = "xyes"; then
2207                         AC_DEFINE(MONO_DL_NEED_USCORE, 1, [Does dlsym require leading underscore.])
2208                 fi
2209                 AC_CHECK_FUNC(dlerror)
2210         fi
2212         dnl ******************************************************************
2213         dnl *** Checks for the IKVM JNI interface library                  ***
2214         dnl ******************************************************************
2215         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])
2217         ikvm_native_dir=
2218         if test x$with_ikvm_native = xyes; then
2219                 ikvm_native_dir=ikvm-native
2220                 jdk_headers_found="IKVM Native"
2221         fi
2223         AC_SUBST(ikvm_native_dir)
2225         AC_CHECK_HEADERS(execinfo.h)
2227         AC_CHECK_HEADERS(sys/auxv.h sys/resource.h)
2229         AC_CHECK_FUNCS(getgrgid_r)
2230         AC_CHECK_FUNCS(getgrnam_r)
2231         AC_CHECK_FUNCS(getresuid)
2232         AC_CHECK_FUNCS(setresuid)
2233         AC_CHECK_FUNCS(kqueue)
2234         # IBM provides a compatibility library for i offering this function.
2235         # BSDs and others, have execinfo in base or packages.
2236         AC_SEARCH_LIBS(backtrace_symbols, execinfo util)
2237         # Two-step so it sets it in config.h
2238         AC_CHECK_FUNCS(backtrace_symbols)
2239         AC_CHECK_FUNCS(mkstemp)
2240         AC_CHECK_FUNCS(mmap)
2241         AC_CHECK_FUNCS(madvise)
2242         AC_CHECK_FUNCS(getrusage)
2243         AC_CHECK_FUNCS(getpriority)
2244         AC_CHECK_FUNCS(setpriority)
2245         AC_CHECK_FUNCS(dl_iterate_phdr)
2246         AC_CHECK_FUNCS(dladdr)
2247         AC_CHECK_FUNCS(sysconf)
2248         AC_CHECK_FUNCS(getrlimit)
2249         AC_CHECK_FUNCS(prctl)
2250         AC_CHECK_FUNCS(arc4random)
2251         AC_CHECK_FUNCS(nl_langinfo)
2253         AC_CHECK_FUNCS(sched_getaffinity)
2254         AC_CHECK_FUNCS(sched_setaffinity)
2255         AC_CHECK_FUNCS(sched_getcpu)
2257         if test x$platform_android != xyes; then
2258                 AC_CHECK_FUNCS(getpwnam_r)
2259                 AC_CHECK_FUNCS(getpwuid_r)
2260         fi
2262         AC_CHECK_FUNCS(readlink)
2263         AC_CHECK_FUNCS(chmod)
2264         AC_CHECK_FUNCS(lstat)
2265         AC_CHECK_FUNCS(getdtablesize)
2267         AC_CHECK_FUNCS(ftruncate)
2268         AC_CHECK_FUNCS(msync)
2270         AC_CHECK_FUNCS(gethostname getpeername)
2271         AC_CHECK_FUNCS(utime utimes)
2273         AC_CHECK_FUNCS(openlog closelog)
2274         AC_CHECK_FUNCS(atexit)
2275         AC_CHECK_FUNCS(popen)
2277         AC_FUNC_STRERROR_R()
2279         dnl ****************************************************************
2280         dnl *** Check for sched_setaffinity from glibc versions before   ***
2281         dnl *** 2.3.4. The older versions of the function only take 2    ***
2282         dnl *** parameters, not 3.                                       ***
2283         dnl ***                                                          ***
2284         dnl *** Because the interface change was not made in a minor     ***
2285         dnl *** version rev, the __GLIBC__ and __GLIBC_MINOR__ macros    ***
2286         dnl *** won't always indicate the interface sched_affinity has.  ***
2287         dnl ****************************************************************
2288         AC_MSG_CHECKING(for sched_setaffinity from glibc < 2.3.4)
2289         AC_TRY_COMPILE([#include <sched.h>], [
2290             int mask = 1; 
2291             sched_setaffinity(0, &mask);
2292         ], [
2293                 # Yes, we have it...
2294                 AC_MSG_RESULT(yes)
2295                 AC_DEFINE(GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY, 1, [Have GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY])
2296         ], [
2297                 # We have the new, three-parameter version
2298                 AC_MSG_RESULT(no)
2299         ])
2300         AC_TRY_COMPILE([#include <sched.h>], [
2301              CPU_COUNT((void *) 0);
2302         ], [
2303                 AC_MSG_RESULT(yes)
2304                 AC_DEFINE(GLIBC_HAS_CPU_COUNT, 1, [GLIBC has CPU_COUNT macro in sched.h])
2305         ], [
2306                 # We have the new, three-parameter version
2307                 AC_MSG_RESULT(no)
2308         ])
2310         dnl ******************************************************************
2311         dnl *** Check for large file support                               ***
2312         dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
2313         dnl ******************************************************************
2314         
2315         # Check that off_t can represent 2**63 - 1 correctly, working around
2316         # potential compiler bugs.  Defines LARGE_FILE_SUPPORT, adds $1 to
2317         # CPPFLAGS and sets $large_offt to yes if the test succeeds
2318         large_offt=no
2319         AC_DEFUN([LARGE_FILES], [
2320                 large_CPPFLAGS=$CPPFLAGS
2321                 CPPFLAGS="$CPPFLAGS $1"
2322                 AC_TRY_COMPILE([
2323                         #include <sys/types.h>
2324                         #include <limits.h>
2325                 ], [
2326                         /* Lifted this compile time assert method from: http://www.jaggersoft.com/pubs/CVu11_3.html */
2327                         #define COMPILE_TIME_ASSERT(pred) \
2328                                 switch(0){case 0:case pred:;}
2329                         COMPILE_TIME_ASSERT(sizeof(off_t) * CHAR_BIT == 64);
2330                 ], [
2331                         AC_MSG_RESULT(ok)
2332                         AC_DEFINE(HAVE_LARGE_FILE_SUPPORT, 1, [Have large file support])
2333                         large_CPPFLAGS="$large_CPPFLAGS $1"
2334                         large_offt=yes
2335                 ], [
2336                         AC_MSG_RESULT(no)
2337                 ])
2338                 CPPFLAGS=$large_CPPFLAGS
2339         ])
2341         AC_MSG_CHECKING(if off_t is 64 bits wide)
2342         LARGE_FILES("")
2343         if test $large_offt = no; then
2344                 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
2345                 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
2346         fi
2347         if test $large_offt = no; then
2348                 AC_MSG_WARN([No 64 bit file size support available])
2349         fi
2350         
2351         dnl *****************************
2352         dnl *** Checks for libsocket  ***
2353         dnl *****************************
2354         AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
2356         case "$host" in
2357                 *-*-*freebsd*)
2358                         dnl *****************************
2359                         dnl *** Checks for libinotify ***
2360                         dnl *****************************
2361                         AC_CHECK_LIB(inotify, inotify_init, LIBS="$LIBS -linotify")
2362         esac
2364         dnl *****************************
2365         dnl *** Checks for IPPROTO_IP ***
2366         dnl *****************************
2367         AC_MSG_CHECKING(for IPPROTO_IP)
2368         AC_TRY_COMPILE([#include <netinet/in.h>], [
2369                 int level = IPPROTO_IP;
2370         ], [
2371                 # Yes, we have it...
2372                 AC_MSG_RESULT(yes)
2373                 AC_DEFINE(HAVE_IPPROTO_IP, 1, [Have IPPROTO_IP])
2374         ], [
2375                 # We'll have to use getprotobyname
2376                 AC_MSG_RESULT(no)
2377         ])
2379         dnl *******************************
2380         dnl *** Checks for IPPROTO_IPV6 ***
2381         dnl *******************************
2382         AC_MSG_CHECKING(for IPPROTO_IPV6)
2383         AC_TRY_COMPILE([#include <netinet/in.h>], [
2384                 int level = IPPROTO_IPV6;
2385         ], [
2386                 # Yes, we have it...
2387                 AC_MSG_RESULT(yes)
2388                 AC_DEFINE(HAVE_IPPROTO_IPV6, 1, [Have IPPROTO_IPV6])
2389         ], [
2390                 # We'll have to use getprotobyname
2391                 AC_MSG_RESULT(no)
2392         ])
2394         dnl ******************************
2395         dnl *** Checks for IPPROTO_TCP ***
2396         dnl ******************************
2397         AC_MSG_CHECKING(for IPPROTO_TCP)
2398         AC_TRY_COMPILE([#include <netinet/in.h>], [
2399                 int level = IPPROTO_TCP;
2400         ], [
2401                 # Yes, we have it...
2402                 AC_MSG_RESULT(yes)
2403                 AC_DEFINE(HAVE_IPPROTO_TCP, 1, [Have IPPROTO_TCP])
2404         ], [
2405                 # We'll have to use getprotobyname
2406                 AC_MSG_RESULT(no)
2407         ])
2409         dnl *****************************
2410         dnl *** Checks for SOL_IP     ***
2411         dnl *****************************
2412         AC_MSG_CHECKING(for SOL_IP)
2413         AC_TRY_COMPILE([#include <netdb.h>], [
2414                 int level = SOL_IP;
2415         ], [
2416                 # Yes, we have it...
2417                 AC_MSG_RESULT(yes)
2418                 AC_DEFINE(HAVE_SOL_IP, 1, [Have SOL_IP])
2419         ], [
2420                 # We'll have to use getprotobyname
2421                 AC_MSG_RESULT(no)
2422         ])
2424         dnl *****************************
2425         dnl *** Checks for SOL_IPV6     ***
2426         dnl *****************************
2427         AC_MSG_CHECKING(for SOL_IPV6)
2428         AC_TRY_COMPILE([#include <netdb.h>], [
2429                 int level = SOL_IPV6;
2430         ], [
2431                 # Yes, we have it...
2432                 AC_MSG_RESULT(yes)
2433                 AC_DEFINE(HAVE_SOL_IPV6, 1, [Have SOL_IPV6])
2434         ], [
2435                 # We'll have to use getprotobyname
2436                 AC_MSG_RESULT(no)
2437         ])
2439         dnl *****************************
2440         dnl *** Checks for SOL_TCP    ***
2441         dnl *****************************
2442         AC_MSG_CHECKING(for SOL_TCP)
2443         AC_TRY_COMPILE([#include <netdb.h>], [
2444                 int level = SOL_TCP;
2445         ], [
2446                 # Yes, we have it...
2447                 AC_MSG_RESULT(yes)
2448                 AC_DEFINE(HAVE_SOL_TCP, 1, [Have SOL_TCP])
2449         ], [
2450                 # We'll have to use getprotobyname
2451                 AC_MSG_RESULT(no)
2452         ])
2454         dnl *****************************
2455         dnl *** Checks for IP_PKTINFO ***
2456         dnl *****************************
2457         AC_MSG_CHECKING(for IP_PKTINFO)
2458         AC_TRY_COMPILE([#include <linux/in.h>], [
2459                 int level = IP_PKTINFO;
2460         ], [
2461                 # Yes, we have it...
2462                 AC_MSG_RESULT(yes)
2463                 AC_DEFINE(HAVE_IP_PKTINFO, 1, [Have IP_PKTINFO])
2464         ], [
2465                 AC_MSG_RESULT(no)
2466         ])
2468         dnl *****************************
2469         dnl *** Checks for IPV6_PKTINFO ***
2470         dnl *****************************
2471         AC_MSG_CHECKING(for IPV6_PKTINFO)
2472         AC_TRY_COMPILE([#include <netdb.h>], [
2473                 int level = IPV6_PKTINFO;
2474         ], [
2475                 # Yes, we have it...
2476                 AC_MSG_RESULT(yes)
2477                 AC_DEFINE(HAVE_IPV6_PKTINFO, 1, [Have IPV6_PKTINFO])
2478         ], [
2479                 AC_MSG_RESULT(no)
2480         ])
2482         dnl **********************************
2483         dnl *** Checks for IP_DONTFRAG     ***
2484         dnl **********************************
2485         AC_MSG_CHECKING(for IP_DONTFRAG)
2486         AC_TRY_COMPILE([#include <netinet/in.h>], [
2487                 int level = IP_DONTFRAG;
2488         ], [
2489                 # Yes, we have it...
2490                 AC_MSG_RESULT(yes)
2491                 AC_DEFINE(HAVE_IP_DONTFRAG, 1, [Have IP_DONTFRAG])
2492         ], [
2493                 AC_MSG_RESULT(no)
2494         ])
2496         dnl **********************************
2497         dnl *** Checks for IP_DONTFRAGMENT ***
2498         dnl **********************************
2499         AC_MSG_CHECKING(for IP_DONTFRAGMENT)
2500         AC_TRY_COMPILE([#include <Ws2ipdef.h>], [
2501                 int level = IP_DONTFRAGMENT;
2502         ], [
2503                 # Yes, we have it...
2504                 AC_MSG_RESULT(yes)
2505                 AC_DEFINE(HAVE_IP_DONTFRAGMENT, 1, [Have IP_DONTFRAGMENT])
2506         ], [
2507                 AC_MSG_RESULT(no)
2508         ])
2510         dnl **********************************
2511         dnl *** Checks for IP_MTU_DISCOVER ***
2512         dnl **********************************
2513         AC_MSG_CHECKING(for IP_MTU_DISCOVER)
2514         AC_TRY_COMPILE([#include <linux/in.h>], [
2515                 int level = IP_MTU_DISCOVER;
2516         ], [
2517                 # Yes, we have it...
2518                 AC_MSG_RESULT(yes)
2519                 AC_DEFINE(HAVE_IP_MTU_DISCOVER, 1, [Have IP_MTU_DISCOVER])
2520         ], [
2521                 AC_MSG_RESULT(no)
2522         ])
2524         dnl **********************************
2525         dnl *** Checks for  IP_PMTUDISC_DO ***
2526         dnl **********************************
2527         AC_MSG_CHECKING(for IP_PMTUDISC_DO)
2528         AC_TRY_COMPILE([#include <linux/in.h>], [
2529                 int level = IP_PMTUDISC_DO;
2530         ], [
2531                 # Yes, we have it...
2532                 AC_MSG_RESULT(yes)
2533                 AC_DEFINE(HAVE_IP_PMTUDISC_DO, 1, [Have IP_PMTUDISC_DO])
2534         ], [
2535                 AC_MSG_RESULT(no)
2536         ])
2538         dnl *********************************
2539         dnl *** Check for struct ip_mreqn ***
2540         dnl *********************************
2541         AC_MSG_CHECKING(for struct ip_mreqn)
2542         AC_TRY_COMPILE([#include <netinet/in.h>], [
2543                 struct ip_mreqn mreq;
2544                 mreq.imr_address.s_addr = 0;
2545         ], [
2546                 # Yes, we have it...
2547                 AC_MSG_RESULT(yes)
2548                 AC_DEFINE(HAVE_STRUCT_IP_MREQN, 1, [Have struct ip_mreqn])
2549         ], [
2550                 # We'll just have to try and use struct ip_mreq
2551                 AC_MSG_RESULT(no)
2552                 AC_MSG_CHECKING(for struct ip_mreq)
2553                 AC_TRY_COMPILE([#include <netinet/in.h>], [
2554                         struct ip_mreq mreq;
2555                         mreq.imr_interface.s_addr = 0;
2556                 ], [
2557                         # Yes, we have it...
2558                         AC_MSG_RESULT(yes)
2559                         AC_DEFINE(HAVE_STRUCT_IP_MREQ, 1, [Have struct ip_mreq])
2560                 ], [
2561                         # No multicast support
2562                         AC_MSG_RESULT(no)
2563                 ])
2564         ])
2565         
2566         dnl **********************************
2567         dnl *** Check for getaddrinfo ***
2568         dnl **********************************
2569         AC_MSG_CHECKING(for getaddrinfo)
2570                 AC_TRY_LINK([
2571                 #include <stdio.h>
2572                 #include <netdb.h>
2573         ], [
2574                 getaddrinfo(NULL,NULL,NULL,NULL);
2575         ], [
2576                 # Yes, we have it...
2577                 AC_MSG_RESULT(yes)
2578                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
2579         ], [
2580                 AC_MSG_RESULT(no)
2581         ])
2583         dnl **********************************
2584         dnl *** Check for gethostbyname2_r ***
2585         dnl **********************************
2586         AC_MSG_CHECKING(for gethostbyname2_r)
2587                 AC_TRY_LINK([
2588                 #include <stdio.h>
2589                 #include <netdb.h>
2590         ], [
2592                 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
2593         ], [
2594                 # Yes, we have it...
2595                 AC_MSG_RESULT(yes)
2596                 AC_DEFINE(HAVE_GETHOSTBYNAME2_R, 1, [Have gethostbyname2_r])
2597         ], [
2598                 AC_MSG_RESULT(no)
2599         ])
2601         dnl **********************************
2602         dnl *** Check for gethostbyname2 ***
2603         dnl **********************************
2604         AC_MSG_CHECKING(for gethostbyname2)
2605                 AC_TRY_LINK([
2606                 #include <stdio.h>
2607                 #include <netdb.h>
2608         ], [
2609                 gethostbyname2(NULL,0);
2610         ], [
2611                 # Yes, we have it...
2612                 AC_MSG_RESULT(yes)
2613                 AC_DEFINE(HAVE_GETHOSTBYNAME2, 1, [Have gethostbyname2])
2614         ], [
2615                 AC_MSG_RESULT(no)
2616         ])
2618         dnl **********************************
2619         dnl *** Check for gethostbyname ***
2620         dnl **********************************
2621         AC_MSG_CHECKING(for gethostbyname)
2622                 AC_TRY_LINK([
2623                 #include <stdio.h>
2624                 #include <netdb.h>
2625         ], [
2626                 gethostbyname(NULL);
2627         ], [
2628                 # Yes, we have it...
2629                 AC_MSG_RESULT(yes)
2630                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
2631         ], [
2632                 AC_MSG_RESULT(no)
2633         ])
2635         dnl **********************************
2636         dnl *** Check for getprotobyname ***
2637         dnl **********************************
2638         AC_MSG_CHECKING(for getprotobyname)
2639                 AC_TRY_LINK([
2640                 #include <stdio.h>
2641                 #include <netdb.h>
2642         ], [
2643                 getprotobyname(NULL);
2644         ], [
2645                 # Yes, we have it...
2646                 AC_MSG_RESULT(yes)
2647                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
2648         ], [
2649                 AC_MSG_RESULT(no)
2650         ])
2652         dnl **********************************
2653         dnl *** Check for getprotobyname_r ***
2654         dnl **********************************
2655         AC_MSG_CHECKING(for getprotobyname_r)
2656                 AC_TRY_LINK([
2657                 #include <stdio.h>
2658                 #include <netdb.h>
2659         ], [
2660                 getprotobyname_r(NULL, NULL, NULL, 0, NULL);
2661         ], [
2662                 # Yes, we have it...
2663                 AC_MSG_RESULT(yes)
2664                 AC_DEFINE(HAVE_GETPROTOBYNAME_R, 1, [Have getprotobyname_r])
2665         ], [
2666                 AC_MSG_RESULT(no)
2667         ])
2669         dnl **********************************
2670         dnl *** Check for getnameinfo ***
2671         dnl **********************************
2672         AC_MSG_CHECKING(for getnameinfo)
2673                 AC_TRY_LINK([
2674                 #include <stdio.h>
2675                 #include <netdb.h>
2676         ], [
2677                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
2678         ], [
2679                 # Yes, we have it...
2680                 AC_MSG_RESULT(yes)
2681                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
2682         ], [
2683                 AC_MSG_RESULT(no)
2684         ])
2687         dnl **********************************
2688         dnl *** Check for inet_ntop ***
2689         dnl **********************************
2690         AC_MSG_CHECKING(for inet_ntop)
2691                 AC_TRY_LINK([
2692                 #include <stdio.h>
2693                 #include <arpa/inet.h>
2694         ], [
2695                 inet_ntop (0, NULL, NULL, 0);
2696         ], [
2697                 # Yes, we have it...
2698                 AC_MSG_RESULT(yes)
2699                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
2700         ], [
2701                 AC_MSG_RESULT(no)
2702         ])
2704         dnl *****************************
2705         dnl *** Checks for libnsl     ***
2706         dnl *****************************
2707         AC_CHECK_FUNC(gethostbyaddr, , AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl"))
2709         AC_CHECK_FUNCS(inet_pton inet_aton)
2711         dnl *****************************
2712         dnl *** Checks for libxnet    ***
2713         dnl *****************************
2714         case "${host}" in
2715                 *solaris* )
2716                         AC_MSG_CHECKING(for Solaris XPG4 support)
2717                         if test -f /usr/lib/libxnet.so; then
2718                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
2719                                 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
2720                                 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
2721                                 LIBS="$LIBS -lxnet"
2722                                 AC_MSG_RESULT(yes)
2723                         else
2724                                 AC_MSG_RESULT(no)
2725                         fi
2727                         if test "$GCC" = "yes"; then
2728                                 CFLAGS="$CFLAGS -Wno-char-subscripts"
2729                         fi
2730                 ;;
2731         esac
2733         dnl *****************************
2734         dnl *** Checks for libpthread ***
2735         dnl *****************************
2736 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
2737 # and libpthread does not exist
2739         case "${host}" in
2740                 *-*-*haiku*)
2741                         dnl Haiku has pthread in libroot (libc equiv)
2742                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS")
2743                 ;;
2744                 *-*-*freebsd*)
2745                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2746                 ;;
2747                 *-*-*openbsd*)
2748                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
2749                 ;;
2750                 *)
2751                         AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
2752                 ;;
2753         esac
2754         AC_CHECK_HEADERS(pthread.h)
2755         AC_CHECK_HEADERS(pthread_np.h)
2756         AC_CHECK_FUNCS(pthread_mutex_timedlock)
2757         AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np pthread_getname_np pthread_setname_np pthread_cond_timedwait_relative_np)
2758         AC_CHECK_FUNCS(pthread_kill)
2759         AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
2760         AC_TRY_COMPILE([ #include <pthread.h>], [
2761                 pthread_mutexattr_t attr;
2762                 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
2763         ], [
2764                 AC_MSG_RESULT(ok)
2765         ], [
2766                 AC_MSG_RESULT(no)
2767                 AC_ERROR(Posix system lacks support for recursive mutexes)
2768         ])
2769         AC_CHECK_FUNCS(pthread_attr_setstacksize)
2770         AC_CHECK_FUNCS(pthread_attr_getstack pthread_attr_getstacksize)
2771         AC_CHECK_FUNCS(pthread_get_stacksize_np pthread_get_stackaddr_np)
2772         dnl check that pthread_mutexattr_setprotocol is declared
2773         AC_CHECK_DECLS([pthread_mutexattr_setprotocol], [], [], [[#include <pthread.h>]])
2774         AC_CHECK_FUNCS(mincore mlock munlock)
2776         dnl ***********************************
2777         dnl *** Checks for working __thread ***
2778         dnl ***********************************
2779         AC_MSG_CHECKING(for working __thread)
2780         if test "x$with_tls" != "x__thread"; then
2781                 AC_MSG_RESULT(disabled)
2782         elif test "x$cross_compiling" = "xyes"; then
2783                 AC_MSG_RESULT(cross compiling, assuming yes)
2784         else
2785                 AC_TRY_RUN([
2786                         #if defined(__APPLE__) && defined(__clang__)
2787                         #error "__thread does not currently work with clang on Mac OS X"
2788                         #endif
2789                         
2790                         #include <unistd.h>
2791                         #include <pthread.h>
2792                         __thread int i;
2793                         static int res1, res2;
2795                         void thread_main (void *arg)
2796                         {
2797                                 i = arg;
2798                                 sleep (1);
2799                                 if (arg == 1)
2800                                         res1 = (i == arg);
2801                                 else
2802                                         res2 = (i == arg);
2803                         }
2805                         int main () {
2806                                 pthread_t t1, t2;
2808                                 i = 5;
2810                                 pthread_create (&t1, NULL, thread_main, 1);
2811                                 pthread_create (&t2, NULL, thread_main, 2);
2813                                 pthread_join (t1, NULL);
2814                                 pthread_join (t2, NULL);
2816                                 return !(res1 + res2 == 2);
2817                         }
2818                 ], [
2819                                 AC_MSG_RESULT(yes)
2820                 ], [
2821                                 AC_MSG_RESULT(no)
2822                                 with_tls=pthread
2823                 ])
2824         fi
2826         dnl **************************************
2827         dnl *** Checks for working sigaltstack ***
2828         dnl **************************************
2829         AC_MSG_CHECKING(for working sigaltstack)
2830         if test "x$with_sigaltstack" != "xyes"; then
2831                 AC_MSG_RESULT(disabled)
2832         elif test "x$cross_compiling" = "xyes"; then
2833                 AC_MSG_RESULT(cross compiling, assuming no)
2834                 with_sigaltstack=no
2835         else
2836                 AC_TRY_RUN([
2837                         #include <stdio.h>
2838                         #include <stdlib.h>
2839                         #include <unistd.h>
2840                         #include <signal.h>
2841                         #include <pthread.h>
2842                         #include <sys/wait.h>
2843                         #if defined(__FreeBSD__) || defined(__NetBSD__)
2844                         #define SA_STACK SA_ONSTACK
2845                         #endif
2846                         static void
2847                         sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
2848                         {
2849                                 exit (0);
2850                         }
2852                         volatile char*__ptr = NULL;
2853                         static void *
2854                         loop (void *ignored)
2855                         {
2856                                 *__ptr = 0;
2857                                 return NULL;
2858                         }
2860                         static void
2861                         child ()
2862                         {
2863                                 struct sigaction sa;
2864                                 stack_t sas;
2865                                 pthread_t id;
2866                                 pthread_attr_t attr;
2868                                 sa.sa_sigaction = sigsegv_signal_handler;
2869                                 sigemptyset (&sa.sa_mask);
2870                                 sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
2871                                 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
2872                                         perror ("sigaction");
2873                                         return;
2874                                 }
2876                                 /* x86 darwin deliver segfaults using SIGBUS */
2877                                 if (sigaction (SIGBUS, &sa, NULL) == -1) {
2878                                         perror ("sigaction");
2879                                         return;
2880                                 }
2881                                 sas.ss_sp = malloc (SIGSTKSZ);
2882                                 sas.ss_size = SIGSTKSZ;
2883                                 sas.ss_flags = 0;
2884                                 if (sigaltstack (&sas, NULL) == -1) {
2885                                         perror ("sigaltstack");
2886                                         return;
2887                                 }
2889                                 pthread_attr_init (&attr);
2890                                 if (pthread_create(&id, &attr, loop, &attr) != 0) {
2891                                         printf ("pthread_create\n");
2892                                         return;
2893                                 }
2895                                 sleep (100);
2896                         }
2898                         int
2899                         main ()
2900                         {
2901                                 pid_t son;
2902                                 int status;
2903                                 int i;
2905                                 son = fork ();
2906                                 if (son == -1) {
2907                                         return 1;
2908                                 }
2910                                 if (son == 0) {
2911                                         child ();
2912                                         return 0;
2913                                 }
2915                                 for (i = 0; i < 300; ++i) {
2916                                         waitpid (son, &status, WNOHANG);
2917                                         if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
2918                                                 return 0;
2919                                         usleep (10000);
2920                                 }
2922                                 kill (son, SIGKILL);
2923                                 return 1;
2924                         }
2926                 ], [
2927                                 AC_MSG_RESULT(yes)
2928                                 AC_DEFINE(HAVE_WORKING_SIGALTSTACK, 1, [Have a working sigaltstack])
2929                 ], [
2930                                 with_sigaltstack=no
2931                                 AC_MSG_RESULT(no)
2932                 ])
2933         fi
2935         dnl ********************************
2936         dnl *** Checks for semaphore lib ***
2937         dnl ********************************
2938         # 'Real Time' functions on Solaris
2939         # posix4 on Solaris 2.6
2940         # pthread (first!) on Linux
2941         AC_SEARCH_LIBS(sem_init, pthread rt posix4) 
2943         AC_SEARCH_LIBS(shm_open, pthread rt posix4) 
2944         AC_CHECK_FUNCS(shm_open)
2946         dnl ********************************
2947         dnl ***  Checks for gettext lib  ***
2948         dnl ********************************
2949         # This is needed for some hackery for AIX;
2950         # Mono itself doesn't use it, but DllMap includes it
2951         AC_SEARCH_LIBS([gettext], [intl])
2953         dnl ********************************
2954         dnl *** Checks for timezone stuff **
2955         dnl ********************************
2956         AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
2957                 AC_TRY_COMPILE([
2958                         #include <time.h>
2959                         ], [
2960                         struct tm tm;
2961                         tm.tm_gmtoff = 1;
2962                         ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
2963         if test $ac_cv_struct_tm_gmtoff = yes; then
2964                 AC_DEFINE(HAVE_TM_GMTOFF, 1, [Have tm_gmtoff])
2965         else
2966                 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
2967                         AC_TRY_COMPILE([
2968                                 #include <time.h>
2969                         ], [
2970                                 timezone = 1;
2971                         ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
2972                 if test $ac_cv_var_timezone = yes; then
2973                         AC_DEFINE(HAVE_TIMEZONE, 1, [Have timezone variable])
2974                 else
2975                         AC_ERROR(unable to find a way to determine timezone)
2976                 fi
2977         fi
2979         dnl *********************************
2980         dnl *** Checks for math functions ***
2981         dnl *********************************
2982         AC_SEARCH_LIBS(sqrtf, m)
2984         dnl ****************************************************************
2985         dnl *** Checks for working poll() (macosx defines it but doesn't ***
2986         dnl *** have it in the library (duh))                            ***
2987         dnl ****************************************************************
2988         AC_CHECK_FUNCS(poll)
2990         dnl **********************************
2991         dnl *** epoll                      ***
2992         dnl **********************************
2993         AC_CHECK_HEADERS(sys/epoll.h)
2994         haveepoll=no
2995         AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
2996         if test "x$haveepoll" = "xyes" -a "x$ac_cv_header_sys_epoll_h" = "xyes"; then
2997                 AC_DEFINE(HAVE_EPOLL, 1, [epoll supported])
2998         fi
3000         havekqueue=no
3002         AC_CHECK_HEADERS(sys/event.h)
3003         AC_CHECK_FUNCS(kqueue, [havekqueue=yes], )
3005         dnl **************************************
3006         dnl * Darwin has a race that prevents us from using reliably:
3007         dnl * http://lists.apple.com/archives/darwin-dev/2011/Jun/msg00016.html
3008         dnl * Since kqueue is mostly used for scaling large web servers, 
3009         dnl * and very few folks run Mono on large web servers on OSX, falling
3010         dnl * back 
3011         dnl **************************************
3012         if test "x$havekqueue" = "xyes" -a "x$ac_cv_header_sys_event_h" = "xyes"; then
3013                 if test "x$host_darwin" = "xno"; then
3014                         AC_DEFINE(USE_KQUEUE_FOR_THREADPOOL, 1, [Use kqueue for the threadpool])
3015                 fi
3016         fi
3018         dnl ******************************
3019         dnl *** Checks for SIOCGIFCONF ***
3020         dnl ******************************
3021         AC_CHECK_HEADERS(sys/ioctl.h)
3022         AC_CHECK_HEADERS(net/if.h, [], [],
3023            [
3024            #ifdef HAVE_SYS_TYPES_H
3025            # include <sys/types.h>
3026            #endif
3027            #ifdef HAVE_SYS_SOCKET_H
3028            # include <sys/socket.h>
3029            #endif
3030            ])
3031         AC_MSG_CHECKING(for ifreq)
3032         AC_TRY_COMPILE([
3033                 #include <stdio.h>
3034                 #include <sys/ioctl.h>
3035                 #include <net/if.h>
3036                 ], [
3037                 struct ifconf ifc;
3038                 struct ifreq *ifr;
3039                 void *x;
3040                 ifc.ifc_len = 0;
3041                 ifc.ifc_buf = NULL;
3042                 x = (void *) &ifr->ifr_addr;
3043                 ],[
3044                         AC_MSG_RESULT(yes)
3045                         AC_DEFINE(HAVE_SIOCGIFCONF, 1, [Can get interface list])
3046                 ], [
3047                         AC_MSG_RESULT(no)
3048                 ])
3049         dnl **********************************
3050         dnl ***     Checks for sin_len     ***
3051         dnl **********************************
3052         AC_MSG_CHECKING(for sockaddr_in.sin_len)
3053         AC_TRY_COMPILE([
3054                 #include <netinet/in.h>
3055                 ], [
3056                 struct sockaddr_in saddr;
3057                 saddr.sin_len = sizeof (saddr);
3058                 ],[
3059                         AC_MSG_RESULT(yes)
3060                         AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [sockaddr_in has sin_len])
3061                 ], [
3062                         AC_MSG_RESULT(no)
3063                 ])      
3064         dnl **********************************
3065         dnl ***    Checks for sin6_len     ***
3066         dnl **********************************
3067         AC_MSG_CHECKING(for sockaddr_in6.sin6_len)
3068         AC_TRY_COMPILE([
3069                 #include <netinet/in.h>
3070                 ], [
3071                 struct sockaddr_in6 saddr6;
3072                 saddr6.sin6_len = sizeof (saddr6);
3073                 ],[
3074                         AC_MSG_RESULT(yes)
3075                         AC_DEFINE(HAVE_SOCKADDR_IN6_SIN_LEN, 1, [sockaddr_in6 has sin6_len])
3076                 ], [
3077                         AC_MSG_RESULT(no)
3078                 ])
3079         dnl **********************************
3080         dnl *** Check for getifaddrs       ***
3081         dnl **********************************
3082         AC_MSG_CHECKING(for getifaddrs)
3083                 AC_TRY_LINK([
3084                 #include <stdio.h>
3085                 #include <sys/types.h>
3086                 #include <sys/socket.h>
3087                 #ifdef HAVE_NET_IF_H
3088                 #include <net/if.h>
3089                 #endif
3090                 #include <ifaddrs.h>
3091         ], [
3092                 getifaddrs(NULL);
3093         ], [
3094                 # Yes, we have it...
3095                 AC_MSG_RESULT(yes)
3096                 AC_DEFINE(HAVE_GETIFADDRS, 1, [Have getifaddrs])
3097         ], [
3098                 AC_MSG_RESULT(no)
3099         ])
3100         dnl **********************************
3101         dnl *** Check for if_nametoindex   ***
3102         dnl **********************************
3103         AC_MSG_CHECKING(for if_nametoindex)
3104                 AC_TRY_LINK([
3105                 #include <stdio.h>
3106                 #include <sys/types.h>
3107                 #include <sys/socket.h>
3108                 #include <net/if.h>
3109         ], [
3110                 if_nametoindex(NULL);
3111         ], [
3112                 # Yes, we have it...
3113                 AC_MSG_RESULT(yes)
3114                 AC_DEFINE(HAVE_IF_NAMETOINDEX, 1, [Have if_nametoindex])
3115         ], [
3116                 AC_MSG_RESULT(no)
3117         ])
3118         dnl **********************************
3119         dnl *** Check for access ***
3120         dnl **********************************
3121         AC_MSG_CHECKING(for access)
3122                 AC_TRY_LINK([
3123                 #include <unistd.h>
3124         ], [
3125                 access(NULL,0);
3126         ], [
3127                 # Yes, we have it...
3128                 AC_MSG_RESULT(yes)
3129                 AC_DEFINE(HAVE_ACCESS, 1, [Have access])
3130         ], [
3131                 AC_MSG_RESULT(no)
3132         ])
3133                         
3134         dnl **********************************
3135         dnl *** Checks for proclib         ***
3136         dnl **********************************
3137         AC_CHECK_HEADER(sys/errno.h, [AC_DEFINE(HAVE_SYS_ERRNO_H, 1, Define to 1 if you have the <sys/errno.h> header file.)])
3138         dnl **********************************
3139         dnl *** Checks for MonoPosixHelper ***
3140         dnl **********************************
3141         AC_CHECK_HEADERS(checklist.h)
3142         AC_CHECK_HEADERS(pathconf.h)
3143         AC_CHECK_HEADERS(fstab.h)
3144         AC_CHECK_HEADERS(attr/xattr.h)
3145         AC_CHECK_HEADERS(sys/extattr.h)
3146         AC_CHECK_HEADERS(sys/sendfile.h)
3147         AC_CHECK_HEADERS(sys/statvfs.h)
3148         AC_CHECK_HEADERS(sys/statfs.h)
3149         AC_CHECK_HEADERS(sys/vfstab.h)
3150         AC_CHECK_HEADERS(sys/xattr.h)
3151         AC_CHECK_HEADERS(sys/mman.h)
3152         AC_CHECK_HEADERS(sys/param.h)
3153         AC_CHECK_HEADERS(sys/mount.h, [], [],
3154                 [
3155                 #ifdef HAVE_SYS_PARAM_H
3156                 # include <sys/param.h>
3157                 #endif
3158                 ])
3159         AC_CHECK_HEADERS(sys/mount.h)
3160         AC_CHECK_FUNCS(confstr)
3161         AC_CHECK_FUNCS(seekdir telldir)
3162         AC_CHECK_FUNCS(getdomainname)
3163         AC_CHECK_FUNCS(setdomainname)
3164         AC_CHECK_FUNCS(endgrent getgrent fgetgrent setgrent)
3165         AC_CHECK_FUNCS(setgroups)
3166         AC_CHECK_FUNCS(endpwent getpwent fgetpwent setpwent)
3167         AC_CHECK_FUNCS(getfsstat)
3168         AC_CHECK_FUNCS(lutimes futimes)
3169         AC_CHECK_FUNCS(mremap)
3170         AC_CHECK_FUNCS(remap_file_pages)
3171         AC_CHECK_FUNCS(posix_fadvise)
3172         AC_CHECK_FUNCS(posix_fallocate)
3173         AC_CHECK_FUNCS(posix_madvise)
3174         AC_CHECK_FUNCS(vsnprintf)
3175         AC_CHECK_FUNCS(sendfile)
3176         AC_CHECK_FUNCS(gethostid sethostid)
3177         AC_CHECK_FUNCS(sethostname)
3178         AC_CHECK_FUNCS(statfs)
3179         AC_CHECK_FUNCS(fstatfs)
3180         AC_CHECK_FUNCS(statvfs)
3181         AC_CHECK_FUNCS(fstatvfs)
3182         AC_CHECK_FUNCS(stime)
3183         AC_CHECK_FUNCS(ttyname_r)
3184         AC_CHECK_FUNCS(psignal)
3185         AC_CHECK_FUNCS(getlogin_r)
3186         AC_CHECK_FUNCS(lockf)
3187         AC_CHECK_FUNCS(swab)
3188         AC_CHECK_FUNCS(setusershell endusershell)
3189         AC_CHECK_FUNCS(futimens utimensat)
3190         AC_CHECK_FUNCS(fstatat mknodat readlinkat)
3191         AC_CHECK_FUNCS(readv writev preadv pwritev)
3192         AC_CHECK_FUNCS(setpgid)
3193         AC_CHECK_FUNCS(system)
3194         AC_CHECK_FUNCS(fork execv execve)
3195         AC_CHECK_FUNCS(waitpid)
3196         AC_CHECK_FUNCS(accept4)
3197         AC_CHECK_FUNCS(localtime_r)
3198         AC_CHECK_FUNCS(mkdtemp)
3199         AC_CHECK_SIZEOF(size_t)
3200         AC_CHECK_TYPES([blksize_t], [AC_DEFINE(HAVE_BLKSIZE_T)], , 
3201                 [#include <sys/types.h>
3202                  #include <sys/stat.h>
3203                  #include <unistd.h>])
3204         AC_CHECK_TYPES([blkcnt_t], [AC_DEFINE(HAVE_BLKCNT_T)], ,
3205                 [#include <sys/types.h>
3206                  #include <sys/stat.h>
3207                  #include <unistd.h>])
3208         AC_CHECK_TYPES([suseconds_t], [AC_DEFINE(HAVE_SUSECONDS_T)], ,
3209                 [#include <sys/time.h>])
3210         AC_CHECK_TYPES([struct cmsghdr], [AC_DEFINE(HAVE_STRUCT_CMSGHDR)], ,
3211                 [#include <sys/socket.h>])
3212         AC_CHECK_TYPES([struct flock], [AC_DEFINE(HAVE_STRUCT_FLOCK)], ,
3213                 [#include <unistd.h>
3214                  #include <fcntl.h>])
3215         AC_CHECK_TYPES([struct iovec], [AC_DEFINE(HAVE_STRUCT_IOVEC)], ,
3216                 [#include <sys/uio.h>])
3217         AC_CHECK_TYPES([struct linger], [AC_DEFINE(HAVE_STRUCT_LINGER)], ,
3218                 [#include <sys/socket.h>])
3219         AC_CHECK_TYPES([struct pollfd], [AC_DEFINE(HAVE_STRUCT_POLLFD)], ,
3220                 [#include <sys/poll.h>])
3221         AC_CHECK_TYPES([struct sockaddr], [AC_DEFINE(HAVE_STRUCT_SOCKADDR)], ,
3222                 [#include <sys/socket.h>])
3223         AC_CHECK_TYPES([struct sockaddr_storage], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE)], ,
3224                 [#include <sys/socket.h>])
3225         AC_CHECK_TYPES([struct sockaddr_in], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN)], ,
3226                 [#include <netinet/in.h>])
3227         AC_CHECK_TYPES([struct sockaddr_in6], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_IN6)], ,
3228                 [#include <netinet/in.h>])
3229         AC_CHECK_TYPES([struct sockaddr_un], [AC_DEFINE(HAVE_STRUCT_SOCKADDR_UN)], ,
3230                 [#include <sys/un.h>])
3231         AC_CHECK_TYPES([struct stat], [AC_DEFINE(HAVE_STRUCT_STAT)], ,
3232                 [#include <sys/types.h>
3233                  #include <sys/stat.h>
3234                  #include <unistd.h>])
3235         AC_CHECK_TYPES([struct timespec], [AC_DEFINE(HAVE_STRUCT_TIMESPEC)], ,
3236                 [#include <time.h>])
3237         AC_CHECK_TYPES([struct timeval], [AC_DEFINE(HAVE_STRUCT_TIMEVAL)], ,
3238                 [#include <sys/time.h>
3239                  #include <sys/types.h>
3240                  #include <utime.h>])
3241         AC_CHECK_TYPES([struct timezone], [AC_DEFINE(HAVE_STRUCT_TIMEZONE)], ,
3242                 [#include <sys/time.h>])
3243         AC_CHECK_TYPES([struct utimbuf], [AC_DEFINE(HAVE_STRUCT_UTIMBUF)], ,
3244                 [#include <sys/types.h>
3245                  #include <utime.h>])
3246         AC_CHECK_MEMBERS(
3247                 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,, 
3248                 [#include <sys/types.h>
3249                  #include <dirent.h>])
3250         AC_CHECK_MEMBERS(
3251                 [struct passwd.pw_gecos],,, 
3252                 [#include <sys/types.h>
3253                  #include <pwd.h>])
3254         AC_CHECK_MEMBERS(
3255                 [struct statfs.f_flags],,, 
3256                 [#include <sys/types.h>
3257                  #include <sys/vfs.h>])
3258         AC_CHECK_MEMBERS(
3259                 [struct stat.st_atim, struct stat.st_mtim, struct stat.st_atimespec, struct stat.st_ctim],,, 
3260                 [#include <sys/types.h>
3261                  #include <sys/stat.h>
3262                  #include <unistd.h>])
3264         dnl Favour xattr through glibc, but use libattr if we have to
3265         AC_CHECK_FUNC(lsetxattr, ,
3266                 AC_CHECK_LIB(attr, lsetxattr, XATTR_LIB="-lattr",)
3267         )
3268         AC_SUBST(XATTR_LIB)
3270         dnl kinfo_proc.kp_proc works on darwin but fails on other simil-bsds
3271         AC_CHECK_MEMBERS(
3272                 [struct kinfo_proc.kp_proc],,, 
3273                 [#include <sys/types.h>
3274                  #include <sys/param.h>
3275                  #include <sys/sysctl.h>
3276                  #include <sys/proc.h>
3277                  ])
3279         dnl *********************************
3280         dnl *** Checks for Windows compilation ***
3281         dnl *********************************
3282         AC_CHECK_HEADERS(sys/time.h)
3283         AC_CHECK_HEADERS(sys/param.h)
3284         AC_CHECK_HEADERS(dirent.h)
3286         dnl ******************************************
3287         dnl *** Checks for OSX and iOS compilation ***
3288         dnl ******************************************
3289         AC_CHECK_HEADERS(CommonCrypto/CommonDigest.h)
3291         dnl *********************************
3292         dnl *** Check for Console 2.0 I/O ***
3293         dnl *********************************
3294         AC_CHECK_HEADERS([curses.h])
3295         AC_CHECK_HEADERS([term.h], [], [],
3296         [#if HAVE_CURSES_H
3297          #include <curses.h>
3298          #endif
3299         ])
3300         AC_CHECK_HEADERS([termios.h])
3302         dnl *********************************
3303         dnl *** Checks for random         ***
3304         dnl *********************************
3305         if test x$host_darwin = xno; then
3306                 AC_CHECK_HEADERS(sys/random.h)
3307                 AC_CHECK_FUNCS(getrandom getentropy)
3308         fi
3310         dnl *********************************
3311         dnl *** Checks for Mono.Native    ***
3312         dnl *********************************
3314         # Translated from CMake in external/corefx/src/Native/Unix/configure.cmake, keep in sync!
3315         # Note: check_c_source_compiles in CMake is AC_TRY_LINK in autoconf
3317         AC_MSG_CHECKING(for linux/in.h)
3318         AC_TRY_COMPILE([
3319                 #include <sys/socket.h>
3320                 #include <linux/in.h>
3321         ], [
3322         ],[
3323                 AC_MSG_RESULT(yes)
3324                 AC_DEFINE(HAVE_LINUX_IN_H, 1, [linux/in.h])
3325         ], [
3326                 AC_MSG_RESULT(no)
3327         ])
3329         AC_CHECK_HEADERS([linux/if_packet.h])
3331         AC_MSG_CHECKING(for struct in_pktinfo)
3332         AC_TRY_COMPILE([
3333                 #ifdef HAVE_LINUX_IN_H
3334                 #include <sys/socket.h>
3335                 #include <linux/in.h>
3336                 #else
3337                 #include <netinet/in.h>
3338                 #endif
3339         ], [
3340                 struct in_pktinfo pktinfo;
3341         ],[
3342                 AC_MSG_RESULT(yes)
3343                 AC_DEFINE(HAVE_IN_PKTINFO, 1, [struct in_pktinfo])
3344         ], [
3345                 AC_MSG_RESULT(no)
3346         ])
3348         AC_MSG_CHECKING(for struct ip_mreqn)
3349         AC_TRY_COMPILE([
3350                 #if HAVE_LINUX_IN_H
3351                 #include <sys/socket.h>
3352                 #include <linux/in.h>
3353                 #else
3354                 #include <netinet/in.h>
3355                 #endif
3356         ], [
3357                 struct ip_mreqn mreqn;
3358         ],[
3359                 AC_MSG_RESULT(yes)
3360                 AC_DEFINE(HAVE_IP_MREQN, 1, struct ip_mreqn)
3361         ], [
3362                 AC_MSG_RESULT(no)
3363         ])
3365         if test x$host_darwin = xno; then
3366                 AC_CHECK_TYPES([struct flock64], [AC_DEFINE(HAVE_FLOCK64, 1, struct flock64)], , [#include <fcntl.h>])
3367         fi
3369         AC_CHECK_DECL(O_CLOEXEC,         [AC_DEFINE(HAVE_O_CLOEXEC, 1, [O_CLOEXEC])], [], [[#include <fcntl.h>]])
3370         AC_CHECK_DECL(F_DUPFD_CLOEXEC,   [AC_DEFINE(HAVE_F_DUPFD_CLOEXEC, 1, [F_DUPFD_CLOEXEC])], [], [[#include <fcntl.h>]])
3372         # AC_CHECK_FUNC(getifaddrs,           [AC_DEFINE(HAVE_GETIFADDRS, 1, [getifaddrs])]) # already done above
3373         AC_CHECK_FUNC(Qp2getifaddrs,     [AC_DEFINE(HAVE_QP2GETIFADDRS, 1, [Qp2getifaddrs])])
3375         AC_CHECK_FUNC(lseek64,           [AC_DEFINE(HAVE_LSEEK64, 1, [lseek64])])
3376         AC_CHECK_FUNC(mmap64,            [AC_DEFINE(HAVE_MMAP64, 1, [mmap64])])
3377         AC_CHECK_FUNC(ftruncate64,       [AC_DEFINE(HAVE_FTRUNCATE64, 1, [ftruncate64])])
3378         AC_CHECK_FUNC(posix_fadvise64,   [AC_DEFINE(HAVE_POSIX_FADVISE64, 1, [posix_fadvise64])])
3380         if test "x$mono_native_platform_ios" = "xno"; then
3381                 # On iOS, `stat64()` is deprecated and there is no `struct stat64` and `stat()`
3382                 # is either 32-bit or 64-bit based on the device / simulator that you're running on.
3383                 AC_CHECK_FUNC(stat64,            [AC_DEFINE(HAVE_STAT64, 1, [stat64])])
3384         fi
3386         AC_CHECK_DECL(pipe2,             [AC_DEFINE(HAVE_PIPE2, 1, [pipe2])])
3387         AC_CHECK_FUNC(getmntinfo,        [AC_DEFINE(HAVE_GETMNTINFO, 1, [getmntinfo])], [], [[#include <unistd.h>]])
3388         AC_CHECK_FUNC(strcpy_s,          [AC_DEFINE(HAVE_STRCPY_S, 1, [strcpy_s])])
3389         AC_CHECK_FUNC(strlcpy,           [AC_DEFINE(HAVE_STRLCPY, 1, [strlcpy])])
3390         AC_CHECK_FUNC(posix_fadvise,     [AC_DEFINE(HAVE_POSIX_ADVISE, 1, [posix_fadvise])]) # the define is called HAVE_POSIX_ADVISE in corefx, not a typo
3391         AC_CHECK_FUNC(ioctl,             [AC_DEFINE(HAVE_IOCTL, 1, [ioctl])])
3392         AC_CHECK_FUNC(sched_getaffinity, [AC_DEFINE(HAVE_SCHED_GETAFFINITY, 1, [sched_getaffinity])])
3393         AC_CHECK_FUNC(sched_setaffinity, [AC_DEFINE(HAVE_SCHED_SETAFFINITY, 1, [sched_setaffinity])])
3395         if test "x$platform_android" != "xyes"; then
3396                 AC_CHECK_FUNC(arc4random_buf,    [AC_DEFINE(HAVE_ARC4RANDOM_BUF, 1, [arc4random_buf])])
3397         fi
3399         AC_CHECK_DECL(TIOCGWINSZ,        [AC_DEFINE(HAVE_TIOCGWINSZ, 1, [TIOCGWINSZ])], [], [[#include <sys/ioctl.h>]])
3400         AC_CHECK_FUNC(tcgetattr,         [AC_DEFINE(HAVE_TCGETATTR, 1, [tcgetattr])])
3401         AC_CHECK_FUNC(tcsetattr,         [AC_DEFINE(HAVE_TCSETATTR, 1, [tcsetattr])])
3402         AC_CHECK_DECL(ECHO,              [AC_DEFINE(HAVE_ECHO, 1, [ECHO])], [], [[#include <termios.h>]])
3403         AC_CHECK_DECL(ICANON,            [AC_DEFINE(HAVE_ICANON, 1, [ICANON])], [], [[#include <termios.h>]])
3404         AC_CHECK_DECL(TCSANOW,           [AC_DEFINE(HAVE_TCSANOW, 1, [TCSANOW])], [], [[#include <termios.h>]])
3406         AC_CHECK_MEMBER(struct stat.st_birthtimespec,
3407                 [AC_DEFINE(HAVE_STAT_BIRTHTIME, 1, [struct stat.st_birthtimespec])],
3408                 [],
3409                 [#include <sys/types.h>
3410                 #include <sys/stat.h>])
3411         AC_CHECK_MEMBER(struct stat.st_atimespec,
3412                 [AC_DEFINE(HAVE_STAT_TIMESPEC, 1, [struct stat.st_atimespec])],
3413                 [],
3414                 [#include <sys/types.h>
3415                 #include <sys/stat.h>])
3416         AC_CHECK_MEMBER(struct stat.st_atim,
3417                 [AC_DEFINE(HAVE_STAT_TIM, 1, [struct stat.st_atim])],
3418                 [],
3419                 [#include <sys/types.h>
3420                 #include <sys/stat.h>])
3421         AC_CHECK_MEMBER(struct stat.st_atimensec,
3422                 [AC_DEFINE(HAVE_STAT_NSEC, 1, [struct stat.st_atimensec])],
3423                 [],
3424                 [#include <sys/types.h>
3425                 #include <sys/stat.h>])
3426         AC_CHECK_MEMBER(struct dirent.d_namlen,       [AC_DEFINE(HAVE_DIRENT_NAME_LEN, 1, [struct dirent.d_namlen])], [], [#include <dirent.h>])
3427         AC_CHECK_MEMBER(struct statfs.f_fstypename,   [AC_DEFINE(HAVE_STATFS_FSTYPENAME, 1, [struct statfs.f_fstypename])], [], [#include <sys/mount.h>])
3428         AC_CHECK_MEMBER(struct statvfs.f_fstypename,  [AC_DEFINE(HAVE_STATVFS_FSTYPENAME, 1, [struct statvfs.f_fstypename])], [], [#include <sys/mount.h>])
3430         AC_MSG_CHECKING(for struct statfs)
3431         AC_TRY_COMPILE([
3432                 #if defined(HAVE_STATFS_FSTYPENAME) || defined(HAVE_STATVFS_FSTYPENAME)
3433                 #include <sys/mount.h>
3434                 #else
3435                 #include <sys/statfs.h>
3436                 #endif
3437         ], [
3438                 struct statfs;
3439         ],[
3440                 AC_MSG_RESULT(yes)
3441                 AC_DEFINE(HAVE_STATFS, 1, [struct statfs])
3442         ], [
3443                 AC_MSG_RESULT(no)
3444         ])
3446         if test "x$ac_cv_func_strerror_r_char_p" = "xyes" ; then
3447                 AC_DEFINE(HAVE_GNU_STRERROR_R, 1, [char* strerror(int errnum, char *buf, size_t buflen)])
3448         fi
3450         AC_MSG_CHECKING(for readdir_r)
3451         AC_TRY_LINK([
3452                 #include <dirent.h>
3453         ], [
3454                 DIR* dir;
3455                 struct dirent* entry;
3456                 struct dirent* result;
3457                 readdir_r(dir, entry, &result);
3458         ],[
3459                 AC_MSG_RESULT(yes)
3460                 AC_DEFINE(HAVE_READDIR_R, 1, [readdir_r])
3461         ], [
3462                 AC_MSG_RESULT(no)
3463         ])
3465         AC_MSG_CHECKING(for kevent with void *data)
3466         AC_TRY_LINK([
3467                 #include <sys/types.h>
3468                 #include <sys/event.h>
3469         ], [
3470                 struct kevent event;
3471                 void* data;
3472                 EV_SET(&event, 0, EVFILT_READ, 0, 0, 0, data);
3473         ],[
3474                 AC_MSG_RESULT(yes)
3475                 AC_DEFINE(KEVENT_HAS_VOID_UDATA, 1, [kevent with void *data])
3476         ], [
3477                 AC_MSG_RESULT(no)
3478         ])
3480         AC_CHECK_MEMBER(struct fd_set.fds_bits,   [AC_DEFINE(HAVE_FDS_BITS, 1, [struct fd_set.fds_bits])], [], [[#include <sys/select.h>]])
3481         AC_CHECK_MEMBER(struct fd_set.__fds_bits, [AC_DEFINE(HAVE_PRIVATE_FDS_BITS, 1, [struct fd_set.__fds_bits])], [], [[#include <sys/select.h>]])
3483         AC_MSG_CHECKING(for sendfile with 4 arguments)
3484         AC_TRY_LINK([
3485                 #include <sys/sendfile.h>
3486         ], [
3487                 #if defined(TARGET_ANDROID)
3488                 #if !defined(__ANDROID_API__)
3489                 #error No definition for __ANDROID_API__ even though we're targeting TARGET_ANDROID
3490                 #elif __ANDROID_API__ < 21
3491                 #error sendfile is not supported on this Android API level
3492                 #endif
3493                 #endif
3495                 int result = sendfile(0, 0, 0, 0);
3496         ],[
3497                 AC_MSG_RESULT(yes)
3498                 AC_DEFINE(HAVE_SENDFILE_4, 1, [sendfile with 4 arguments])
3499         ], [
3500                 AC_MSG_RESULT(no)
3501         ])
3503         ORIG_CFLAGS="$CFLAGS"
3504         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
3506         AC_MSG_CHECKING(for sendfile with 6 arguments)
3507         AC_TRY_LINK([
3508                 #include <stdlib.h>
3509                 #include <sys/types.h>
3510                 #include <sys/socket.h>
3511                 #include <sys/uio.h>
3512         ], [
3513                 int result = sendfile(0, 0, 0, NULL, NULL, 0);
3514         ],[
3515                 AC_MSG_RESULT(yes)
3516                 AC_DEFINE(HAVE_SENDFILE_6, 1, [sendfile with 6 arguments])
3517         ], [
3518                 AC_MSG_RESULT(no)
3519         ])
3521         CFLAGS="$ORIG_CFLAGS"
3523         AC_CHECK_FUNC(fcopyfile,     [AC_DEFINE(HAVE_FCOPYFILE, 1, [fcopyfile])])
3524         AC_CHECK_FUNC(epoll_create1, [AC_DEFINE(HAVE_EPOLL, 1, [epoll_create1])])
3525         AC_CHECK_FUNC(accept4,       [AC_DEFINE(HAVE_ACCEPT4, 1, [accept4])])
3526         AC_CHECK_FUNC(kqueue,        [AC_DEFINE(HAVE_KQUEUE, 1, [kqueue])])
3528         ORIG_CFLAGS="$CFLAGS"
3529         CFLAGS="$CFLAGS -Werror=sign-conversion"
3531         AC_MSG_CHECKING(for getnameinfo with signed flags)
3532         AC_TRY_LINK([
3533                 #include <sys/types.h>
3534                 #include <netdb.h>
3535         ], [
3536                 const struct sockaddr *addr;
3537                 socklen_t addrlen;
3538                 char *host;
3539                 socklen_t hostlen;
3540                 char *serv;
3541                 socklen_t servlen;
3542                 int flags;
3543                 int result = getnameinfo(addr, addrlen, host, hostlen, serv, servlen, flags);
3544         ],[
3545                 AC_MSG_RESULT(yes)
3546                 AC_DEFINE(HAVE_GETNAMEINFO_SIGNED_FLAGS, 1, [getnameinfo with signed flags])
3547         ], [
3548                 AC_MSG_RESULT(no)
3549         ])
3551         CFLAGS="$ORIG_CFLAGS"
3553         if test "x$host_linux" = "xyes"; then
3554                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 1, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3555         else
3556                 AC_DEFINE(HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO, 0, [HAVE_SUPPORT_FOR_DUAL_MODE_IPV4_PACKET_INFO])
3557         fi
3559         # HAVE_CLOCK_MONOTONIC check already done above
3560         # HAVE_CLOCK_REALTIME check already done above
3561         # HAVE_MACH_ABSOLUTE_TIME check already done above
3562         # HAVE_MACH_TIMEBASE_INFO check already done above
3563         # HAVE_FUTIMES check already done above
3564         # HAVE_FUTIMENS check already done above
3566         ORIG_CFLAGS="$CFLAGS"
3567         CFLAGS="$CFLAGS -Werror=sign-conversion"
3569         AC_MSG_CHECKING(for bind with unsigned addrlen)
3570         AC_TRY_LINK([
3571                 #include <sys/socket.h>
3572         ], [
3573                 int fd;
3574                 struct sockaddr* addr;
3575                 socklen_t addrLen;
3576                 bind(fd, addr, addrLen);
3577         ],[
3578                 AC_MSG_RESULT(yes)
3579                 AC_DEFINE(BIND_ADDRLEN_UNSIGNED, 1, [bind with unsigned addrlen])
3580         ], [
3581                 AC_MSG_RESULT(no)
3582         ])
3584         AC_MSG_CHECKING(for struct ipv6_mreq with unsigned ipv6mr_interface)
3585         AC_TRY_LINK([
3586                 #include <netinet/in.h>
3587                 #include <netinet/tcp.h>
3588         ], [
3589                 struct ipv6_mreq opt;
3590                 unsigned int index = 0;
3591                 opt.ipv6mr_interface = index;
3592         ],[
3593                 AC_MSG_RESULT(yes)
3594                 AC_DEFINE(IPV6MR_INTERFACE_UNSIGNED, 1, [struct ipv6_mreq with unsigned ipv6mr_interface])
3595         ], [
3596                 AC_MSG_RESULT(no)
3597         ])
3599         AC_MSG_CHECKING(for inotify_rm_watch with unsigned wd)
3600         AC_TRY_LINK([
3601                 #include <sys/inotify.h>
3602         ], [
3603                 intptr_t fd;
3604                 uint32_t wd;
3605                 int result = inotify_rm_watch(fd, wd);
3606         ],[
3607                 AC_MSG_RESULT(yes)
3608                 AC_DEFINE(INOTIFY_RM_WATCH_WD_UNSIGNED, 1, [inotify_rm_watch with unsigned wd])
3609         ], [
3610                 AC_MSG_RESULT(no)
3611         ])
3613         CFLAGS="$ORIG_CFLAGS"
3615         AC_MSG_CHECKING(for shm_open that works well enough with mmap)
3616         if test "x$ac_cv_func_shm_open" = "xno" -o "x$ac_cv_func_shm_open_working_with_mmap" = "xno" ; then
3617                 AC_MSG_RESULT(no)
3618         elif test "x$cross_compiling" = "xyes"; then
3619                 AC_MSG_RESULT(cross compiling, assuming yes)
3620                 AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3621         else
3622                 AC_TRY_RUN([
3623                         #include <sys/mman.h>
3624                         #include <fcntl.h>
3625                         #include <unistd.h>
3627                         int main ()
3628                         {
3629                         #ifdef __PASE__
3630                                 /* IBM i doesn't implement this and returns SIGILL */
3631                                 return -1;
3632                         #endif
3633                                 int fd = shm_open("/mono_configure_shm_open", O_CREAT | O_RDWR, 0777);
3634                                 if (fd == -1)
3635                                         return -1;
3637                                 shm_unlink("/mono_configure_shm_open");
3639                                 // NOTE: PROT_EXEC and MAP_PRIVATE don't work well with shm_open
3640                                 //       on at least the current version of Mac OS X
3642                                 if (mmap(NULL, 1, PROT_EXEC, MAP_PRIVATE, fd, 0) == MAP_FAILED)
3643                                         return -1;
3645                                 return 0;
3646                         }
3647                 ],[
3648                         AC_MSG_RESULT(yes)
3649                         AC_DEFINE(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP, 1, [shm_open that works well enough with mmap])
3650                 ], [
3651                         AC_MSG_RESULT(no)
3652                 ])
3653         fi
3655         AC_MSG_CHECKING(for getpriority with int who)
3656         AC_TRY_LINK([
3657                 #include <sys/resource.h>
3658         ], [
3659                 int which;
3660                 int who;
3661                 int result = getpriority(which, who);
3662         ],[
3663                 AC_MSG_RESULT(yes)
3664                 AC_DEFINE(PRIORITY_REQUIRES_INT_WHO, 1, [getpriority with int who])
3665         ], [
3666                 AC_MSG_RESULT(no)
3667         ])
3669         AC_MSG_CHECKING(for kevent with int parameters)
3670         AC_TRY_LINK([
3671                 #include <sys/types.h>
3672                 #include <sys/event.h>
3673         ], [
3674                 int kg;
3675                 const struct kevent* chagelist;
3676                 int nchanges;
3677                 struct kevent* eventlist;
3678                 int nevents;
3679                 const struct timespec* timeout;
3680                 int result = kevent(kg, chagelist, nchanges, eventlist, nevents, timeout);
3681         ],[
3682                 AC_MSG_RESULT(yes)
3683                 AC_DEFINE(KEVENT_REQUIRES_INT_PARAMS, 1, [kevent with int parameters])
3684         ], [
3685                 AC_MSG_RESULT(no)
3686         ])
3688         AC_CHECK_FUNCS(mkstemps)
3689         # AC_CHECK_FUNCS(mkstemp) # already done above
3691         if test "x$ac_cv_func_mkstemps" != "xyes" -a "x$ac_cv_func_mkstemp" != "xyes"; then
3692                 AC_MSG_ERROR([Cannot find mkstemps or mkstemp on this platform])
3693         fi
3695         AC_MSG_CHECKING(for tcp/var.h)
3696         AC_TRY_LINK([
3697                 #include <sys/types.h>
3698                 #include <sys/socketvar.h>
3699                 #include <netinet/ip.h>
3700                 #include <netinet/tcp.h>
3701                 #include <netinet/tcp_var.h>
3702         ], [
3703         ],[
3704                 AC_MSG_RESULT(yes)
3705                 AC_DEFINE(HAVE_TCP_VAR_H, 1, [tcp/var.h])
3706         ], [
3707                 AC_MSG_RESULT(no)
3708         ])
3710         AC_CHECK_HEADERS([sys/cdefs.h])
3712         AC_MSG_CHECKING(for TCPSTATE enum in netinet/tcp.h)
3713         AC_TRY_LINK([
3714                 #ifdef HAVE_SYS_CDEFS_H
3715                 #include <sys/cdefs.h>
3716                 #endif
3717                 #include <netinet/tcp.h>
3718         ], [
3719                 int result = TCP_ESTABLISHED;
3720         ],[
3721                 AC_MSG_RESULT(yes)
3722                 AC_DEFINE(HAVE_TCP_H_TCPSTATE_ENUM, 1, [TCPSTATE enum in netinet/tcp.h])
3723         ], [
3724                 AC_MSG_RESULT(no)
3725         ])
3727         AC_CHECK_DECL(TCPS_ESTABLISHED, [AC_DEFINE(HAVE_TCP_FSM_H, 1, [HAVE_TCP_FSM_H])], [], [[#include <netinet/tcp_fsm.h>]])
3729         AC_MSG_CHECKING(for struct rt_msghdr)
3730         AC_TRY_COMPILE([
3731                 #include <sys/types.h>
3732                 #include <net/route.h>
3733         ], [
3734                 struct rt_msghdr;
3735         ],[
3736                 AC_MSG_RESULT(yes)
3737                 AC_DEFINE(HAVE_RT_MSGHDR, 1, [struct rt_msghdr])
3738         ], [
3739                 AC_MSG_RESULT(no)
3740         ])
3742         AC_CHECK_HEADERS([sys/sysctl.h])
3743         AC_CHECK_HEADERS([linux/rtnetlink.h])
3745         AC_CHECK_FUNC(getpeereid,    [AC_DEFINE(HAVE_GETPEEREID, 1, [getpeereid])])
3746         #AC_CHECK_FUNC(getdomainname, [AC_DEFINE(HAVE_GETDOMAINNAME, 1, [getdomainname])]) # already done above
3747         AC_CHECK_FUNC(uname,         [AC_DEFINE(HAVE_UNAME, 1, [uname])])
3749         ORIG_CFLAGS="$CFLAGS"
3750         CFLAGS="$CFLAGS -Werror=shorten-64-to-32"
3752         AC_MSG_CHECKING(for getdomainname with size_t namelen)
3753         AC_TRY_LINK([
3754                 #include <unistd.h>
3755         ], [
3756                 size_t namelen = 20;
3757                 char name[20];
3758                 int result = getdomainname(name, namelen);
3759         ],[
3760                 AC_MSG_RESULT(yes)
3761                 AC_DEFINE(HAVE_GETDOMAINNAME_SIZET, 1, [getdomainname with size_t namelen])
3762         ], [
3763                 AC_MSG_RESULT(no)
3764         ])
3766         CFLAGS="$ORIG_CFLAGS"
3768         AC_CHECK_FUNC(inotify_init, [AC_DEFINE(HAVE_INOTIFY_INIT, 1, [inotify_init])])
3769         AC_CHECK_FUNC(inotify_add_watch, [AC_DEFINE(HAVE_INOTIFY_ADD_WATCH, 1, [inotify_add_watch])])
3770         AC_CHECK_FUNC(inotify_rm_watch, [AC_DEFINE(HAVE_INOTIFY_RM_WATCH, 1, [inotify_rm_watch])])
3772         if test "x$ac_cv_func_inotify_init" = "xyes" -a "x$ac_cv_func_inotify_add_watch" = "xyes" -a "x$ac_cv_func_inotify_rm_watch" = "xyes"; then
3773                 AC_DEFINE(HAVE_INOTIFY, 1, [HAVE_INOTIFY])
3774         elif test "x$host_linux" = "xyes"; then
3775                 AC_MSG_ERROR([Cannot find inotify functions on a Linux platform.])
3776         fi
3778         # HAVE_CURLM_ADDED_ALREADY check skipped because we don't use libcurl in mono
3779         # HAVE_CURL_HTTP_VERSION_2TLS check skipped because we don't use libcurl in mono
3780         # HAVE_CURLPIPE_MULTIPLEX check skipped because we don't use libcurl in mono
3781         # HAVE_CURL_SSLVERSION_TLSv1_012 check skipped because we don't use libcurl in mono
3783         enable_gss=no;
3784         AC_MSG_CHECKING(for GSS/GSS.h)
3785         AC_TRY_COMPILE([
3786                         #include <GSS/GSS.h>
3787         ], [
3788         ],[
3789                         AC_MSG_RESULT(yes)
3790                         AC_DEFINE(HAVE_GSSFW_HEADERS, 1, [GSS/GSS.h])
3791                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3792                         enable_gss=yes
3793                         AC_DEFINE(ENABLE_GSS, 1, [ENABLE_GSS])
3794         ], [
3795                         AC_MSG_RESULT(no)
3796         ])
3798         AC_MSG_CHECKING(for gssapi/gssapi_ext.h)
3799         AC_TRY_COMPILE([
3800                         #include <gssapi/gssapi_ext.h>
3801         ], [
3802         ],[
3803                         AC_MSG_RESULT(yes)
3804                         enable_gss=yes
3805                         AC_DEFINE(ENABLE_GSS, 1, [ENABLE_GSS])
3806         ], [
3807                         AC_MSG_RESULT(no)
3808         ])
3810         AC_MSG_CHECKING(for GSS_SPNEGO_MECHANISM)
3811         AC_TRY_COMPILE([
3812                         #include <gssapi/gssapi_ext.h>
3813                         #include <gssapi/gssapi_krb5.h>
3814                         gss_OID_set_desc gss_mech_spnego_OID_set_desc = {.count = 1, .elements = GSS_SPNEGO_MECHANISM};
3815         ], [
3816         ],[
3817                         AC_MSG_RESULT(yes)
3818                         AC_DEFINE(HAVE_GSS_SPNEGO_MECHANISM, 1, [GSS_SPNEGO_MECHANISM])
3819         ], [
3820                         AC_MSG_RESULT(no)
3821         ])
3823         AM_CONDITIONAL(ENABLE_GSS, test x$enable_gss = xyes)
3825         AC_CHECK_HEADERS([crt_externs.h])
3827         AC_MSG_CHECKING(for _NSGetEnviron)
3828         AC_TRY_LINK([
3829                 #include <crt_externs.h>
3830         ], [
3831                 char **result = *(_NSGetEnviron());
3832         ],[
3833                 AC_MSG_RESULT(yes)
3834                 AC_DEFINE(HAVE_NSGETENVIRON, 1, [_NSGetEnviron])
3835         ], [
3836                 AC_MSG_RESULT(no)
3837         ])
3839         AC_CHECK_DECL(IN_EXCL_UNLINK, [AC_DEFINE(HAVE_IN_EXCL_UNLINK, 1, [IN_EXCL_UNLINK])], [], [[#include <sys/inotify.h>]])
3841         # *** End of Mono.Native checks ***
3842 else
3843         AM_CONDITIONAL(ENABLE_GSS, false)
3845         dnl *********************************
3846         dnl *** Checks for Windows compilation ***
3847         dnl *********************************
3848         AC_CHECK_HEADERS(winternl.h)
3850         jdk_headers_found=no
3851         AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
3852         AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
3853         AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
3854         AC_CHECK_LIB(winmm, main, LIBS="$LIBS -lwinmm", AC_ERROR(bad mingw install?))
3855         AC_CHECK_LIB(oleaut32, main, LIBS="$LIBS -loleaut32", AC_ERROR(bad mingw install?))
3856         AC_CHECK_LIB(advapi32, main, LIBS="$LIBS -ladvapi32", AC_ERROR(bad mingw install?))
3857         AC_CHECK_LIB(version, main, LIBS="$LIBS -lversion", AC_ERROR(bad mingw install?))
3859         dnl *********************************
3860         dnl *** Check for struct ip_mreqn ***
3861         dnl *********************************
3862         AC_MSG_CHECKING(for struct ip_mreqn)
3863         AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3864                 struct ip_mreqn mreq;
3865                 mreq.imr_address.s_addr = 0;
3866         ], [
3867                 # Yes, we have it...
3868                 AC_MSG_RESULT(yes)
3869                 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
3870         ], [
3871                 # We'll just have to try and use struct ip_mreq
3872                 AC_MSG_RESULT(no)
3873                 AC_MSG_CHECKING(for struct ip_mreq)
3874                 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
3875                         struct ip_mreq mreq;
3876                         mreq.imr_interface.s_addr = 0;
3877                 ], [
3878                         # Yes, we have it...
3879                         AC_MSG_RESULT(yes)
3880                         AC_DEFINE(HAVE_STRUCT_IP_MREQ)
3881                 ], [
3882                         # No multicast support
3883                         AC_MSG_RESULT(no)
3884                 ])
3885         ])
3887         dnl **********************************
3888         dnl *** Check for getaddrinfo ***
3889         dnl **********************************
3890         AC_MSG_CHECKING(for getaddrinfo)
3891                 AC_TRY_LINK([
3892                 #include <stdio.h>
3893                 #include <winsock2.h>
3894                 #include <ws2tcpip.h>
3895         ], [
3896                 getaddrinfo(NULL,NULL,NULL,NULL);
3897         ], [
3898                 # Yes, we have it...
3899                 AC_MSG_RESULT(yes)
3900                 AC_DEFINE(HAVE_GETADDRINFO, 1, [Have getaddrinfo])
3901         ], [
3902                 AC_MSG_RESULT(no)
3903         ])
3905         dnl **********************************
3906         dnl *** Check for gethostbyname ***
3907         dnl **********************************
3908         AC_MSG_CHECKING(for gethostbyname)
3909                 AC_TRY_LINK([
3910                 #include <stdio.h>
3911                 #include <winsock2.h>
3912                 #include <ws2tcpip.h>
3913         ], [
3914                 gethostbyname(NULL);
3915         ], [
3916                 # Yes, we have it...
3917                 AC_MSG_RESULT(yes)
3918                 AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [Have gethostbyname])
3919         ], [
3920                 AC_MSG_RESULT(no)
3921         ])
3923         dnl **********************************
3924         dnl *** Check for getprotobyname ***
3925         dnl **********************************
3926         AC_MSG_CHECKING(for getprotobyname)
3927                 AC_TRY_LINK([
3928                 #include <stdio.h>
3929                 #include <winsock2.h>
3930                 #include <ws2tcpip.h>
3931         ], [
3932                 getprotobyname(NULL);
3933         ], [
3934                 # Yes, we have it...
3935                 AC_MSG_RESULT(yes)
3936                 AC_DEFINE(HAVE_GETPROTOBYNAME, 1, [Have getprotobyname])
3937         ], [
3938                 AC_MSG_RESULT(no)
3939         ])
3941         dnl **********************************
3942         dnl *** Check for getnameinfo ***
3943         dnl **********************************
3944         AC_MSG_CHECKING(for getnameinfo)
3945                 AC_TRY_LINK([
3946                 #include <stdio.h>
3947                 #include <winsock2.h>
3948                 #include <ws2tcpip.h>
3949         ], [
3950                 getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);
3951         ], [
3952                 # Yes, we have it...
3953                 AC_MSG_RESULT(yes)
3954                 AC_DEFINE(HAVE_GETNAMEINFO, 1, [Have getnameinfo])
3955         ], [
3956                 AC_MSG_RESULT(no)
3957         ])
3959         dnl **********************************
3960         dnl *** Check for inet_ntop ***
3961         dnl **********************************
3962         AC_MSG_CHECKING(for inet_ntop)
3963                 AC_TRY_LINK([
3964                 #include <stdio.h>
3965                 #include <winsock2.h>
3966                 #include <ws2tcpip.h>
3967         ], [
3968                 inet_ntop (0, NULL, NULL, 0);
3969         ], [
3970                 # Yes, we have it...
3971                 AC_MSG_RESULT(yes)
3972                 AC_DEFINE(HAVE_INET_NTOP, 1, [Have inet_ntop])
3973         ], [
3974                 AC_MSG_RESULT(no)
3975         ])
3977         dnl **********************************
3978         dnl *** Check for inet_pton ***
3979         dnl **********************************
3980         AC_MSG_CHECKING(for inet_pton)
3981                 AC_TRY_LINK([
3982                 #include <stdio.h>
3983                 #include <winsock2.h>
3984                 #include <ws2tcpip.h>
3985         ], [
3986                 #ifndef inet_pton
3987                 (void) inet_pton;
3988                 #endif
3989                 inet_pton (0, NULL, NULL);
3990         ], [
3991                 # Yes, we have it...
3992                 AC_MSG_RESULT(yes)
3993                 AC_DEFINE(HAVE_INET_PTON, 1, [Have inet_pton])
3994         ], [
3995                 AC_MSG_RESULT(no)
3996         ])
3999 dnl socklen_t check
4000 AC_MSG_CHECKING(for socklen_t)
4001 AC_TRY_COMPILE([
4002 #include <sys/types.h>
4003 #include <sys/socket.h>
4005   socklen_t foo;
4007 ac_cv_c_socklen_t=yes
4008         AC_DEFINE(HAVE_SOCKLEN_T, 1, [Have socklen_t])
4009         AC_MSG_RESULT(yes)
4011         AC_MSG_RESULT(no)
4014 AC_CHECK_FUNCS(execvp)
4016 dnl ****************************
4017 dnl *** Look for /dev/random ***
4018 dnl ****************************
4020 AC_MSG_CHECKING([if usage of random device is requested])
4021 AC_ARG_ENABLE(dev-random,
4022 [  --disable-dev-random    disable the use of the random device (enabled by default)],
4023 try_dev_random=$enableval, try_dev_random=yes)
4025 AC_MSG_RESULT($try_dev_random)
4027 case "{$build}" in
4029 dnl IBM i does not have /dev/random, use unblocking only
4031     *-*-os400*)
4032     NAME_DEV_RANDOM="/dev/urandom"
4033     ;;
4035 dnl Win32 does not have /dev/random, they have their own method...
4037     *-mingw*|*-*-cygwin*)
4038     ac_cv_have_dev_random=no
4039     ;;
4041 dnl Everywhere else, it's /dev/random
4043     *)
4044     NAME_DEV_RANDOM="/dev/random"
4045     ;;
4046 esac
4048 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM", [Name of /dev/random])
4050 dnl Now check if the device actually exists
4052 if test "x$try_dev_random" = "xyes"; then
4053     AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
4054     [if test -r "$NAME_DEV_RANDOM" ; then
4055         ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
4056     if test "x$ac_cv_have_dev_random" = "xyes"; then
4057         AC_DEFINE(HAVE_CRYPT_RNG, 1, [Have /dev/random])
4058     fi
4059 else
4060     AC_MSG_CHECKING(for random device)
4061     ac_cv_have_dev_random=no
4062     AC_MSG_RESULT(has been disabled)
4065 if test "x$host_win32" = "xyes"; then
4066     AC_DEFINE(HAVE_CRYPT_RNG)
4069 if test "x$ac_cv_have_dev_random" = "xno" \
4070     && test "x$host_win32" = "xno"; then
4071     AC_MSG_WARN([[
4073 *** A system-provided entropy source was not found on this system.
4074 *** Because of this, the System.Security.Cryptography random number generator
4075 *** will throw a NotImplemented exception.
4077 *** If you are seeing this message, and you know your system DOES have an
4078 *** entropy collection in place, please report an issue on GitHub and
4079 *** provide information about the system and how to access the random device.
4081 *** Otherwise you can install either egd or prngd and set the environment
4082 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
4083 ***]])
4086 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)
4088 AC_MSG_CHECKING([if big-arrays are to be enabled])
4089 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)
4090 if test "x$enable_big_arrays" = "xyes" ; then
4091     if  test "x$ac_cv_sizeof_void_p" = "x8"; then
4092         AC_DEFINE(MONO_BIG_ARRAYS,1,[Enable the allocation and indexing of arrays greater than Int32.MaxValue])
4093     else
4094         AC_MSG_ERROR([The allocation and indexing of arrays greater than Int32.MaxValue is not supported on this platform.])
4095     fi
4097 AC_MSG_RESULT($enable_big_arrays)
4099 dnl **************
4100 dnl *** DTRACE ***
4101 dnl **************
4103 AC_ARG_ENABLE(dtrace,[  --enable-dtrace Enable DTrace probes], enable_dtrace=$enableval, enable_dtrace=$has_dtrace)
4105 if test "x$enable_dtrace" = "xyes"; then
4106    if test "x$has_dtrace" = "xno"; then
4107           AC_MSG_ERROR([DTrace probes are not supported on this platform.])
4108    fi
4109    AC_PATH_PROG(DTRACE, [dtrace], [no], [$PATH:/usr/sbin])
4110    if test "x$DTRACE" = "xno"; then
4111           AC_MSG_RESULT([dtrace utility not found, dtrace support disabled.])
4112           enable_dtrace=no
4113    elif ! $DTRACE -h -s $srcdir/data/mono.d > /dev/null 2>&1; then
4114           AC_MSG_RESULT([dtrace doesn't support -h option, dtrace support disabled.])
4115           enable_dtrace=no
4116    fi
4119 dtrace_g=no
4120 if test "x$enable_dtrace" = "xyes"; then
4121         AC_DEFINE(ENABLE_DTRACE, 1, [Enable DTrace probes])
4122         DTRACEFLAGS=
4123         if test "x$ac_cv_sizeof_void_p" = "x8"; then
4124                 case "$host" in
4125                         powerpc-*-darwin*)
4126                         DTRACEFLAGS="-arch ppc64"
4127                         ;;
4128                         i*86-*-darwin*)
4129                         DTRACEFLAGS="-arch x86_64"
4130                         ;;
4131                         *)
4132                         DTRACEFLAGS=-64
4133                         ;;
4134                 esac
4135         else
4136                 case "$host" in
4137                         powerpc-*-darwin*)
4138                         DTRACEFLAGS="-arch ppc"
4139                         ;;
4140                         i*86-*-darwin*)
4141                         DTRACEFLAGS="-arch i386"
4142                         ;;
4143                         *)
4144                         DTRACEFLAGS=-32
4145                         ;;
4146                 esac
4147         fi
4148         AC_SUBST(DTRACEFLAGS)
4149         case "$host" in
4150                 *-*-solaris*)
4151                 dtrace_g=yes
4152                 ;;
4153         esac
4154         AC_CHECK_HEADERS([sys/sdt.h])
4156 AM_CONDITIONAL(ENABLE_DTRACE, [test x$enable_dtrace = xyes])
4157 AM_CONDITIONAL(DTRACE_G_REQUIRED, [test x$dtrace_g = xyes])
4159 dnl **************************
4160 dnl *** AOT cross offsets  ***
4161 dnl **************************
4163 AC_ARG_WITH(cross-offsets, [  --with-cross-offsets=<offsets file path>    Explicit AOT cross offsets file],
4164     AC_DEFINE_UNQUOTED(MONO_OFFSETS_FILE, "$withval", [AOT cross offsets file]))
4166 dnl **************
4167 dnl ***  LLVM  ***
4168 dnl **************
4170 AC_ARG_ENABLE(llvm,[  --enable-llvm     Enable the LLVM back-end], enable_llvm=$enableval, enable_llvm=default)
4171 AC_ARG_ENABLE(loadedllvm,[  --enable-loadedllvm Load the LLVM back-end dynamically], enable_llvm=$enableval && enable_loadedllvm=$enableval, enable_loadedllvm=no)
4172 AC_ARG_ENABLE(llvm-version-check,[  --enable-llvm-version-check Check that the LLVM matches the version expected by mono], enable_llvm_version_check=$enableval, enable_llvm_version_check=no)
4173 AC_ARG_ENABLE(llvm-runtime,[  --enable-llvm-runtime     Enable runtime support for llvmonly code], enable_llvm_runtime=$enableval, enable_llvm_runtime=no)
4174 AC_ARG_ENABLE(llvm-asserts,[  --enable-llvm-asserts Enable llvm asserts (option to LLVM in CMake)], enable_llvm_asserts=$enableval, enable_llvm_asserts=no)
4176 AC_ARG_WITH(llvm, [  --with-llvm=<llvm prefix>    Enable the LLVM back-end], enable_llvm=yes,)
4178 if test "x$enable_llvm" = "xdefault"; then
4179    enable_llvm=$enable_llvm_default
4182 enable_llvm_msvc_only="no"
4183 if test "x$enable_llvm" = "xyes"; then
4184         if test "x$host_win32" = "xyes"; then
4185                 if test "x$cross_compiling" = "xno"; then
4186                         case "$target" in
4187                         x86_64*)
4188                                 AC_MSG_WARN("LLVM for host=Windows and target=Windows is only supported on x64 MSVC builds. Disabling LLVM for GCC build.")
4189                                 enable_llvm_msvc_only="yes"
4190                                 ;;
4191                         i686*)
4192                                 AC_MSG_ERROR("LLVM for host=Windows and target=Windows is only supported for x64 builds.")
4193                                 ;;
4194                         esac
4195                 fi
4196                 if test "x$enable_loadedllvm" = "xyes"; then
4197                         AC_MSG_WARN("Loadable LLVM currently not supported on Windows. Disabling feature.")
4198                         enable_loadedllvm=no
4199                 fi
4200         fi
4203 internal_llvm="no"
4204 if test "x$enable_llvm" = "xyes"; then
4205         if test "x$with_llvm" != "x"; then
4206                 EXTERNAL_LLVM_CONFIG=$with_llvm/bin/llvm-config
4207                 if test x$host_win32 = xyes; then
4208                         EXTERNAL_LLVM_CONFIG=$EXTERNAL_LLVM_CONFIG.exe
4209                 fi
4210                 if test ! -x $EXTERNAL_LLVM_CONFIG; then
4211                         AC_MSG_ERROR([LLVM executable $EXTERNAL_LLVM_CONFIG not found.])
4212                 fi
4213         else
4214                 internal_llvm=yes
4215         fi
4217         LLVM_CODEGEN_LIBS="x86codegen"
4218         case "$target" in
4219         arm*)
4220                 LLVM_CODEGEN_LIBS="armcodegen"
4221                 ;;
4222         aarch64*)
4223                 LLVM_CODEGEN_LIBS="aarch64codegen"
4224                 ;;
4225         powerpc*)
4226                 LLVM_CODEGEN_LIBS="powerpccodegen"
4227                 ;;
4228         esac
4229         if test "x$host" != "x$target"; then
4230                 # No need for jit libs
4231                 LLVM_CODEGEN_LIBS=
4232         fi
4234         AC_SUBST(LLVM_CODEGEN_LIBS)
4235         AC_SUBST(EXTERNAL_LLVM_CONFIG)
4237         if test "x$host_win32" = "xyes" && test "x$cross_compiling" = "xno" &&  test "x$internal_llvm" = "xno"; then
4238                 EXTERNAL_LLVM_CONFIG_WIN32=$(cygpath -m $EXTERNAL_LLVM_CONFIG)
4239                 AC_SUBST(EXTERNAL_LLVM_CONFIG_WIN32)
4240         fi
4241         if test "x$enable_llvm_msvc_only" != "xyes"; then
4242                 AC_DEFINE(ENABLE_LLVM, 1, [Enable the LLVM back end])
4243         else
4244                 AC_DEFINE(ENABLE_LLVM_MSVC_ONLY, 1, [Enable the LLVM back end])
4245         fi
4246 fi # ENABLE_LLVM
4248 # AC_DEFINE necessary for correct restore behavior on Linux
4249 AM_CONDITIONAL(INTERNAL_LLVM, [test "x$internal_llvm" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4250 if test "x$internal_llvm" != "xno"; then
4251         if test "x$enable_llvm_msvc_only" != "xyes"; then
4252                 AC_DEFINE(INTERNAL_LLVM, 1, [LLVM used is being build during mono build])
4253         else
4254                 AC_DEFINE(INTERNAL_LLVM_MSVC_ONLY, 1, [LLVM used is being build during mono build])
4255         fi
4258 AM_CONDITIONAL(INTERNAL_LLVM_ASSERTS, [test "x$enable_llvm_asserts" != "xno" && test "x$enable_llvm_msvc_only" != "xyes"])
4259 if test "x$enable_llvm_asserts" != "xno"; then
4260         if test "x$enable_llvm_msvc_only" != "xyes"; then
4261                 AC_DEFINE(INTERNAL_LLVM_ASSERTS, 1, [Build LLVM with assertions])
4262         else
4263                 AC_DEFINE(INTERNAL_LLVM_ASSERTS_MSVC_ONLY, 1, [Build LLVM with assertions])
4264         fi
4267 AM_CONDITIONAL(ENABLE_LLVM, [test x$enable_llvm = xyes && test x$enable_llvm_msvc_only != xyes])
4269 AM_CONDITIONAL(LOADED_LLVM, [test x$enable_loadedllvm = xyes && test x$enable_llvm_msvc_only != xyes])
4270 if test "x$enable_loadedllvm" = "xyes"; then
4271         if test "x$enable_llvm_msvc_only" != "xyes"; then
4272                 AC_DEFINE(MONO_LLVM_LOADED, 1, [The LLVM back end is dynamically loaded])
4273         fi
4276 if test "x$enable_llvm" = "xyes"; then
4277         enable_llvm_runtime=yes
4280 AM_CONDITIONAL(ENABLE_LLVM_RUNTIME, [test x$enable_llvm_runtime = xyes && test x$enable_llvm_msvc_only != xyes])
4281 if test "x$enable_llvm_runtime" = "xyes"; then
4282         if test "x$enable_llvm_msvc_only" != "xyes"; then
4283                 AC_DEFINE(ENABLE_LLVM_RUNTIME, 1, [Runtime support code for llvm enabled])
4284         else
4285                 AC_DEFINE(ENABLE_LLVM_RUNTIME_MSVC_ONLY, 1, [Runtime support code for llvm enabled])
4286         fi
4289 TARGET="unknown"
4290 ACCESS_UNALIGNED="yes"
4292 LIBC="libc.so.6"
4293 INTL="libc.so.6"
4294 SQLITE="libsqlite.so.0"
4295 SQLITE3="libsqlite3.so.0"
4296 ODBC="libodbc.so.2"
4297 X11="libX11.so"
4298 GDKX11="libgdk-x11-2.0.so.0"
4299 GTKX11="libgtk-x11-2.0.so.0"
4300 XINERAMA="libXinerama.so.1"
4302 sizeof_register="SIZEOF_VOID_P"
4304 jit_wanted=true
4305 boehm_supported=true
4306 BTLS_SUPPORTED=no
4307 BTLS_PLATFORM=
4308 INTERP_CFLAGS=""
4310 case "$host" in
4311         wasm32*)
4312                 TARGET=WASM
4313                 arch_target=wasm
4314                 BTLS_SUPPORTED=no
4315                 ACCESS_UNALIGNED="no"
4316                 with_tls=pthread
4317                 target_wasm=yes
4318                 if test "x$mono_cv_clang" = "xyes"; then
4319                    INTERP_CFLAGS="-mllvm -join-liveintervals=false"
4320                    AC_SUBST(INTERP_CFLAGS)
4321                 fi
4322                 ;;
4323         mips*)
4324                 TARGET=MIPS;
4325                 arch_target=mips;
4326                 with_tls=pthread;
4327                 ACCESS_UNALIGNED="no"
4329                 AC_MSG_CHECKING(for mips n32)
4330                 AC_TRY_COMPILE([],[
4331                 #if _MIPS_SIM != _ABIN32
4332                 #error Not mips n32
4333                 #endif
4334                 ],[
4335                 AC_MSG_RESULT(yes)
4336                 sizeof_register=8
4337                 ],[
4338                 AC_MSG_RESULT(no)
4339                 ])
4340                 ;;
4341         i*86-*-*)
4342                 TARGET=X86;
4343                 arch_target=x86;
4344                 case $host_os in
4345                   solaris*)
4346                         LIBC="libc.so"
4347                         INTL="libintl.so"
4348                         if test "x$ac_cv_sizeof_void_p" = "x8"; then
4349                                 TARGET=AMD64
4350                                 arch_target=amd64
4351                         fi
4353                         # On solaris 10 x86, gcc prints a warning saying 'visibility attribute not supported on this configuration; ignored', but linking fails. A test case:
4354                         # int astruct __attribute__ ((visibility ("hidden")));
4355                         # void foo ()
4356                         # {
4357                         #       void *p = &astruct;
4358                         # }
4359                         # gcc -fPIC --shared -o libfoo.so foo.c
4360                         # yields:
4361                         # foo.c:6: warning: visibility attribute not supported in this configuration; ignored
4362                         # ld: fatal: relocation error: R_386_GOTOFF: file /var/tmp//ccxYR96k.o: symbol astruct: relocation must bind locally
4363                         have_visibility_hidden=no
4364                         ;;
4365                   mingw*|cygwin*)
4366                         have_visibility_hidden=no
4367                         BTLS_SUPPORTED=no
4368                         BTLS_PLATFORM=i386
4369                         ;;
4370                   haiku*)
4371                         LIBC=libroot.so
4372                         ;;
4373                   linux*)
4374                         AOT_SUPPORTED="yes"
4375                         BTLS_SUPPORTED=yes
4376                         BTLS_PLATFORM=i386
4377                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4378                         ;;
4379                   darwin*)
4380                         AOT_SUPPORTED="yes"
4381                         BTLS_SUPPORTED=yes
4382                         BTLS_PLATFORM=i386
4383                         ;;
4384                   openbsd*|freebsd*|kfreebsd-gnu*)
4385                         AOT_SUPPORTED="yes"
4386                         BTLS_SUPPORTED=yes
4387                         BTLS_PLATFORM=i386
4388                         ;;
4389                 esac
4390                 ;;
4391         x86_64-*-* | amd64-*-*)
4392                 TARGET=AMD64;
4393                 arch_target=amd64;
4394                 if test "x$ac_cv_sizeof_void_p" = "x4"; then
4395                         AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4396                         sizeof_register=8
4397                 fi
4398                 case $host_os in
4399                   linux*)
4400                         AOT_SUPPORTED="yes"
4401                         BTLS_SUPPORTED=yes
4402                         BTLS_PLATFORM=x86_64
4403                         AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4404                         ;;
4405                   darwin*)
4406                         AOT_SUPPORTED="yes"
4407                         BTLS_SUPPORTED=yes
4408                         BTLS_PLATFORM=x86_64
4409                         boehm_supported=false
4410                         ;;
4411                   openbsd*|freebsd*|kfreebsd-gnu*)
4412                         AOT_SUPPORTED="yes"
4413                         BTLS_SUPPORTED=yes
4414                         BTLS_PLATFORM=x86_64
4415                         ;;
4416                   mingw*|cygwin*)
4417                         BTLS_SUPPORTED=no
4418                         BTLS_PLATFORM=x86_64
4419                         ;;
4420                 esac
4421                 ;;
4422         sparc*-*-*)
4423                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4424                    TARGET=SPARC64
4425                 else
4426                         TARGET=SPARC
4427                 fi
4428                 arch_target=sparc;
4429                 ACCESS_UNALIGNED="no"
4430                 case $host_os in
4431                   linux*) ;;
4432                   *)
4433                         LIBC="libc.so"
4434                         INTL="libintl.so"
4435                 esac
4436                 if test x"$GCC" = xyes; then
4437                         # We don't support v8 cpus
4438                         CFLAGS="$CFLAGS -Wno-cast-align -mcpu=v9"
4439                 fi
4440                 if test x"$AR" = xfalse; then
4441                         AC_MSG_ERROR([The required utility 'ar' is not found in your PATH. Usually it can be found in /usr/ccs/bin.])
4442                 fi
4443                 ;;
4444         *-mingw*|*-*-cygwin*)
4445                 # When this is enabled, it leads to very strange crashes at runtime (gcc-3.4.4)
4446                 have_visibility_hidden=no
4447                 INTL="intl"
4448                 case "$host" in
4449                         x86_64*mingw*)
4450                                 # Old Boehm fails to compile for x86_64-mingw.
4451                                 # It is trivial to fix, but just silently drop it.
4452                                 boehm_supported=false
4453                                 ;;
4454                 esac
4455                 ;;
4456         macppc-*-openbsd* | powerpc*-*-linux* | powerpc-*-openbsd* | \
4457         powerpc-*-sysv* | powerpc-*-darwin* | powerpc-*-netbsd* | \
4458         powerpc-*-freebsd* | powerpc*-*-aix* | powerpc*-*-os400* )
4459                 if test "x$ac_cv_sizeof_void_p" = "x8"; then
4460                         TARGET=POWERPC64;
4461                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__ -D__mono_ppc64__"
4462                         if ! (echo $CC | grep -q -- 'clang'); then
4463                                 CFLAGS="$CFLAGS -mminimal-toc"
4464                         fi
4465                 else
4466                         TARGET=POWERPC;
4467                         CPPFLAGS="$CPPFLAGS -D__mono_ppc__"
4468                 fi
4469                 arch_target=ppc;
4470                 case $host_os in
4471                   aix*|os400*)
4472                         BTLS_SUPPORTED=yes
4473                         BTLS_PLATFORM=powerpc
4474                         ;;
4475                   linux*)
4476                         BTLS_SUPPORTED=yes
4477                         BTLS_PLATFORM=powerpc
4478                         ;;
4479                 esac
4480                 ;;
4481         armv7k-*-darwin*)
4482                 TARGET=ARM;
4483                 TARGET_SYS=WATCHOS
4484                 arch_target=arm;
4485                 arm_fpu=VFP_HARD
4486                 ACCESS_UNALIGNED="no"
4487                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4488                 ;;
4490         arm*-darwin*)
4491                 TARGET=ARM;
4492                 arch_target=arm;
4493                 ACCESS_UNALIGNED="no"
4494                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4495                 ;;
4496         arm*-linux*)
4497                 TARGET=ARM;
4498                 arch_target=arm;
4499                 ACCESS_UNALIGNED="no"
4500                 AOT_SUPPORTED="yes"
4501                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4502                 BTLS_SUPPORTED=yes
4503                 BTLS_PLATFORM=arm
4504                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4505                 case "$target" in
4506                 arm*-linux*-gnueabi)
4507                         BTLS_PLATFORM=armsoft
4508                         ;;
4509                 esac
4510                 ;;
4511         arm*-netbsd*-eabi*)
4512                 TARGET=ARM;
4513                 arch_target=arm;
4514                 ACCESS_UNALIGNED="no"
4515                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4516                 ;;
4517         aarch64-*darwin*ilp32)
4518                 TARGET=ARM6432
4519                 arch_target=arm64
4520                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4521                 sizeof_register=8
4522                 # assuming no other target other than watchOS is using aarch64*darwin triple
4523                 TARGET_SYS=WATCHOS
4524                 ;;
4525         aarch64-*)
4526                 # https://lkml.org/lkml/2012/7/15/133
4527                 TARGET=ARM64
4528                 arch_target=arm64
4529                 boehm_supported=false
4530                 AOT_SUPPORTED="yes"
4531                 BTLS_SUPPORTED=yes
4532                 BTLS_PLATFORM=aarch64
4533                 AC_CHECK_HEADER(stdalign.h,[],[BTLS_SUPPORTED=no])
4534                 ;;
4535         s390x-*-linux*)
4536                 TARGET=S390X;
4537                 arch_target=s390x;
4538                 ACCESS_UNALIGNED="yes"
4539                 BTLS_SUPPORTED=yes
4540                 BTLS_PLATFORM=s390x
4541                 CFLAGS="$CFLAGS -mbackchain -D__USE_STRING_INLINES"
4542                 ;;
4543         riscv32-*)
4544                 TARGET=RISCV32
4545                 ACCESS_UNALIGNED=no
4546                 AOT_SUPPORTED=no
4547                 BTLS_SUPPORTED=yes
4548                 BTLS_PLATFORM=riscv32
4549                 arch_target=riscv32
4550                 boehm_supported=false
4551                 ;;
4552         riscv64*)
4553                 TARGET=RISCV64
4554                 ACCESS_UNALIGNED=no
4555                 AOT_SUPPORTED=no
4556                 BTLS_SUPPORTED=yes
4557                 BTLS_PLATFORM=riscv64
4558                 arch_target=riscv64
4559                 boehm_supported=false
4560                 ;;
4561 esac
4563 HOST=$TARGET
4565 if test "x$host" != "x$target"; then
4566    AC_DEFINE(MONO_CROSS_COMPILE,1,[The runtime is compiled for cross-compiling mode])
4567    enable_mcs_build=no
4568    enable_support_build=no
4569    BTLS_SUPPORTED=no
4570    # Can't use tls, since it depends on the runtime detection of tls offsets
4571    # in mono-compiler.h
4572    with_tls=pthread
4573    target_mach=no
4574    case "$target" in
4575    wasm32*)
4576                 TARGET=WASM
4577                 arch_target=wasm
4578                 AC_DEFINE(TARGET_WASM, 1, [Target wasm])
4579                 ;;
4580    arm*-darwin*)
4581                 TARGET=ARM;
4582                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4583                 case "$target" in
4584                 armv7k-*)
4585                         arm_fpu=VFP_HARD
4586                         AC_DEFINE(TARGET_WATCHOS, 1, [...])
4587                         ;;
4588                 esac            
4589                 ;;
4590    powerpc64-ps3-linux-gnu)
4591                 TARGET=POWERPC64
4592                 arch_target=powerpc64
4593                 AC_DEFINE(TARGET_PS3, 1, [...])
4594                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4595                 # uses this define
4596                 AC_DEFINE(__mono_ppc64__, 1, [...])
4597                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4598                 sizeof_register=8
4599                 target_byte_order=G_BIG_ENDIAN
4600                 ;;
4601    powerpc64-xbox360-linux-gnu)
4602                 TARGET=POWERPC64
4603                 arch_target=powerpc64
4604                 AC_DEFINE(TARGET_XBOX360, 1, [...])
4605                 # It would be better to just use TARGET_POWERPC64, but lots of code already
4606                 # uses this define
4607                 sizeof_register=8
4608                 target_byte_order=G_BIG_ENDIAN
4609                 ;;
4610    arm*-linux-*)
4611                 TARGET=ARM;
4612                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4613                 ;;
4614    arm*-netbsd*-eabi*)
4615                 TARGET=ARM;
4616                 CPPFLAGS="$CPPFLAGS -D__ARM_EABI__"
4617                 ;;
4618    i686*-linux-*)
4619                 TARGET=X86;
4620                 ;;
4621    i*86-apple-*)
4622                 TARGET=X86;
4623                 ;;
4624    x86_64*-linux-*)
4625                 TARGET=AMD64;
4626                 ;;
4627    x86_64-ps4-freebsd)
4628                 TARGET=AMD64;
4629                 AC_DEFINE(TARGET_PS4, 1, [...])
4630                 AC_DEFINE(DISABLE_HW_TRAPS, 1, [...])
4631                 CPPFLAGS="$CPPFLAGS"
4632                 target_win32=no
4633                 ;;
4634         aarch64*darwin*_ilp32)
4635                 TARGET=ARM6432;
4636                 AC_DEFINE(MONO_ARCH_ILP32, 1, [64 bit mode with 4 byte longs and pointers])
4637                 sizeof_register=8
4638                 AC_DEFINE(TARGET_WATCHOS, 1, [...])
4639                 ;;
4640         aarch64-*)
4641                 TARGET=ARM64
4642                 ;;
4643         riscv32*)
4644                 TARGET=RISCV32
4645                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4646                 AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4647                 arch_target=riscv32
4648                 target_mach=no
4649                 with_tls=pthread
4650                 ;;
4651         riscv64*)
4652                 TARGET=RISCV64
4653                 AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4654                 AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4655                 arch_target=riscv64
4656                 target_mach=no
4657                 with_tls=pthread
4658                 ;;
4659         x86_64-google-fuchsia)
4660                 TARGET=AMD64
4661                 target_win32=nop
4662                 AC_DEFINE(HOST_FUCHSIA,1,[Targeting the Fuchsia platform])
4663                 ;;
4664         *)
4665                 AC_MSG_ERROR([Cross compiling is not supported for target $target])
4666         esac
4668         case "$target" in
4669         *-darwin*)
4670                 target_mach=yes
4671                 ;;
4672         *-linux-android*)
4673                 AC_DEFINE(TARGET_ANDROID, 1, [...])
4674                 ;;
4675         esac
4678 case "$TARGET" in
4679 WASM)
4680         AC_DEFINE(TARGET_WASM, 1, [...])
4681         arch_target=wasm
4682         ;;
4683 X86)
4684         AC_DEFINE(TARGET_X86, 1, [...])
4685         arch_target=x86
4686         ;;
4687 AMD64)
4688         AC_DEFINE(TARGET_AMD64, 1, [...])
4689         arch_target=amd64
4690         ;;
4691 ARM)
4692         AC_DEFINE(TARGET_ARM, 1, [...])
4693         arch_target=arm
4694         ACCESS_UNALIGNED="no"
4695         ;;
4696 ARM64|ARM6432)
4697         AC_DEFINE(TARGET_ARM64, 1, [...])
4698         arch_target=arm64
4699         ;;
4700 POWERPC)
4701         AC_DEFINE(TARGET_POWERPC, 1, [...])
4702         ;;
4703 POWERPC64)
4704         AC_DEFINE(TARGET_POWERPC, 1, [...])
4705         AC_DEFINE(TARGET_POWERPC64, 1, [...])
4706         ;;
4707 S390X)
4708         AC_DEFINE(TARGET_S390X, 1, [...])
4709         ;;
4710 MIPS)
4711         AC_DEFINE(TARGET_MIPS, 1, [...])
4712         ;;
4713 SPARC)
4714         AC_DEFINE(TARGET_SPARC, 1, [...])
4715         ;;
4716 SPARC64)
4717         AC_DEFINE(TARGET_SPARC64, 1, [...])
4718         ;;
4719 RISCV32)
4720         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4721         AC_DEFINE([TARGET_RISCV32], [1], [Target is 32-bit RISC-V])
4722         ;;
4723 RISCV64)
4724         AC_DEFINE([TARGET_RISCV], [1], [Target is RISC-V])
4725         AC_DEFINE([TARGET_RISCV64], [1], [Target is 64-bit RISC-V])
4726         ;;
4727 esac
4729 case "$TARGET" in
4730 *32* | ARM | X86 | POWERPC | MIPS | SPARC | WASM | ARM6432)
4731     target_sizeof_void_p=4
4732     ;;
4733 *64* | S390X)
4734     target_sizeof_void_p=8
4735     ;;
4737     AC_MSG_ERROR([unknown target])
4738     ;;
4739 esac
4741 case "$HOST" in
4742 WASM)
4743         AC_DEFINE(HOST_WASM, 1, [...])
4744         ;;
4745 X86)
4746         AC_DEFINE(HOST_X86, 1, [...])
4747         ;;
4748 AMD64)
4749         AC_DEFINE(HOST_AMD64, 1, [...])
4750         ;;
4751 ARM)
4752         AC_DEFINE(HOST_ARM, 1, [...])
4753         ;;
4754 ARM64)
4755         AC_DEFINE(HOST_ARM64, 1, [...])
4756         ;;
4757 POWERPC)
4758         AC_DEFINE(HOST_POWERPC, 1, [...])
4759         ;;
4760 POWERPC64)
4761         AC_DEFINE(HOST_POWERPC, 1, [...])
4762         AC_DEFINE(HOST_POWERPC64, 1, [...])
4763         ;;
4764 S390X)
4765         AC_DEFINE(HOST_S390X, 1, [...])
4766         ;;
4767 MIPS)
4768         AC_DEFINE(HOST_MIPS, 1, [...])
4769         ;;
4770 SPARC)
4771         AC_DEFINE(HOST_SPARC, 1, [...])
4772         ;;
4773 SPARC64)
4774         AC_DEFINE(HOST_SPARC64, 1, [...])
4775         ;;
4776 RISCV32)
4777         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4778         AC_DEFINE([HOST_RISCV32], [1], [Host is 32-bit RISC-V])
4779         ;;
4780 RISCV64)
4781         AC_DEFINE([HOST_RISCV], [1], [Host is RISC-V])
4782         AC_DEFINE([HOST_RISCV64], [1], [Host is 64-bit RISC-V])
4783         ;;
4784 esac
4786 MONO_ARCH_GSHAREDVT_SUPPORTED=0
4787 case "$HOST" in
4788 X86 | AMD64 | ARM | ARM64)
4789         MONO_ARCH_GSHAREDVT_SUPPORTED=1 # keep in sync with mini-{x86,amd64,arm,arm64}.h
4790         ;;
4791 esac
4793 AM_CONDITIONAL(MONO_ARCH_GSHAREDVT_SUPPORTED, test $MONO_ARCH_GSHAREDVT_SUPPORTED = 1)
4794 AM_CONDITIONAL(TARGET_WASM, test $arch_target = wasm)
4796 dnl *************
4797 dnl *** VTUNE ***
4798 dnl *************
4800 AC_ARG_ENABLE(vtune,[  --enable-vtune   Enable the VTUNE back-end], enable_vtune=$enableval, enable_vtune=no)
4801 AC_ARG_WITH(vtune, [  --with-vtune=<vtune prefix>       Enable jit vtune profiling], enable_vtune=yes,)
4803 AM_CONDITIONAL(HAVE_VTUNE, test x$enable_vtune = xyes)
4805 if test "x$enable_vtune" = "xyes"; then
4806         if test "x$with_vtune" = "x"; then
4807                 VTUNE_PATH=/opt/intel/vtune_amplifier_xe
4808         else
4809                 VTUNE_PATH=$with_vtune
4810         fi
4811         VTUNE_INCLUDE=$VTUNE_PATH/include
4812         case "$TARGET" in
4813         X86)
4814                 VTUNE_LIB=$VTUNE_PATH/lib32
4815                 ;;
4816         AMD64)
4817                 VTUNE_LIB=$VTUNE_PATH/lib64
4818                 ;;
4819         *)
4820                 AC_MSG_ERROR([Unsupported target $TARGET for VTUNE.])
4821                 ;;
4822         esac
4823         if test ! -f $VTUNE_INCLUDE/jitprofiling.h; then
4824                 AC_MSG_ERROR([VTUNE $VTUNE_INCLUDE/jitprofiling.h not found.])
4825         fi
4826         if test ! -f $VTUNE_LIB/libjitprofiling.a; then
4827                 AC_MSG_ERROR([VTUNE $VTUNE_LIB/libjitprofiling.a not found.])
4828         fi
4830         VTUNE_CFLAGS=-I$VTUNE_INCLUDE
4831         VTUNE_LIBS="-L/$VTUNE_LIB/ -ljitprofiling"
4833         AC_SUBST(VTUNE_LIBS)
4834         AC_SUBST(VTUNE_CFLAGS)
4836 dnl Use GCC atomic ops if they work on the target.
4837 if test x$GCC = "xyes"; then
4838         case $TARGET in
4839         X86 | AMD64 | ARM | ARM64 | ARM6432 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64 | RISCV32 | RISCV64)
4840                 AC_DEFINE(USE_GCC_ATOMIC_OPS, 1, [...])
4841                 ;;
4842         esac
4845 if test "x$target_mach" = "xyes"; then
4847    if test "x$TARGET_SYS" = "xWATCHOS"; then
4848           AC_DEFINE(TARGET_WATCHOS,1,[The JIT/AOT targets WatchOS])
4849           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4850           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_WATCHOS"
4851           BTLS_SUPPORTED=no
4852    elif test "x$TARGET" = "xARM" -o "x$TARGET" = "xARM64" -o "x$TARGET" = "xARM6432"; then
4853           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4854           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4855           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4856           BTLS_SUPPORTED=no
4857           target_ios=yes
4858    else
4859        AC_TRY_COMPILE([#include "TargetConditionals.h"],[
4860        #if TARGET_IPHONE_SIMULATOR == 1 || TARGET_OS_IPHONE == 1
4861        #error fail this for ios
4862        #endif
4863        ], [
4864                   AC_DEFINE(TARGET_OSX,1,[The JIT/AOT targets OSX])
4865           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_OSX"
4866           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_OSX"
4867           target_osx=yes
4868        ], [
4869           AC_DEFINE(TARGET_IOS,1,[The JIT/AOT targets iOS])
4870           CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DTARGET_IOS"
4871           CFLAGS_FOR_LIBGC="$CFLAGS_FOR_LIBGC -DTARGET_IOS"
4872           BTLS_SUPPORTED=no
4873                   target_ios=yes
4874        ])
4875         fi
4876    AC_DEFINE(TARGET_MACH,1,[The JIT/AOT targets Apple platforms])
4879 AM_CONDITIONAL(TARGET_OSX, test x$target_osx = xyes)
4881 AC_SUBST(SIZEOF_VOID_P,[$ac_cv_sizeof_void_p])
4883 if test "x$target_byte_order" = "xG_BIG_ENDIAN"; then
4884    AC_DEFINE(TARGET_BYTE_ORDER,G_BIG_ENDIAN,[byte order of target])
4885 elif test "x$target_byte_order" = "xG_LITTLE_ENDIAN"; then
4886    AC_DEFINE(TARGET_BYTE_ORDER,G_LITTLE_ENDIAN,[byte order of target])
4887 else
4888    AC_DEFINE(TARGET_BYTE_ORDER,G_BYTE_ORDER,[byte order of target])
4891 AC_DEFINE_UNQUOTED(TARGET_SIZEOF_VOID_P,${target_sizeof_void_p},[wordsize of target])
4893 if test "x$sizeof_register" = "x4"; then
4894   AC_DEFINE(SIZEOF_REGISTER,4,[size of target machine integer registers])
4895 elif test "x$sizeof_register" = "x8"; then
4896   AC_DEFINE(SIZEOF_REGISTER,8,[size of target machine integer registers])
4897 else
4898   AC_DEFINE_UNQUOTED(SIZEOF_REGISTER,${target_sizeof_void_p},[size of target machine integer registers])
4901 # zlib/configure detects visibility support similarly and defines HAVE_HIDDEN
4902 # on the compiler command line (not config.h).
4903 if test "x$have_visibility_hidden" = "xyes"; then
4904    AC_DEFINE(HAVE_VISIBILITY_HIDDEN, 1, [Support for the visibility ("hidden") attribute])
4905    ZLIB_CFLAGS="$ZLIB_CFLAGS -DHAVE_HIDDEN"
4908 if test "x$have_deprecated" = "xyes"; then
4909    AC_DEFINE(HAVE_DEPRECATED, 1, [Support for the deprecated attribute])
4912 dnl 
4913 dnl Simple Generational checks (sgen)
4915 SGEN_DEFINES=
4916 AC_ARG_WITH(sgen,                    [  --with-sgen=yes,no             Extra Generational GC, default=yes],[buildsgen=$with_sgen],[buildsgen=yes])
4917 AC_ARG_WITH(sgen-default-concurrent, [  --with-sgen-default-concurrent=yes,no             Use Concurrent GC, default=no],[],[with_sgen_default_concurrent=no])
4918 if test x$buildsgen = xyes; then
4919    AC_DEFINE(HAVE_MOVING_COLLECTOR, 1, [Moving collector])
4920    SGEN_DEFINES="-DHAVE_SGEN_GC"
4922         conc_gc_msg=""
4923    if test x$with_sgen_default_concurrent != xno; then
4924        AC_DEFINE(HAVE_CONC_GC_AS_DEFAULT, 1, [Defaults to concurrent GC])
4925            conc_gc_msg=" (concurrent by default)"
4926    fi
4928    if test "x$gc_msg" = "x"; then
4929       gc_msg="sgen$conc_gc_msg"
4930    else
4931       gc_msg="sgen$conc_gc_msg and $gc_msg"
4932    fi
4934 AC_SUBST(SGEN_DEFINES)
4935 AM_CONDITIONAL(SUPPORT_SGEN, test x$buildsgen = xyes)
4937 jit_status="Building and using the JIT"
4939 libsuffix=".so"
4941 case "$host" in
4942      *-*-aix*)
4943         dnl on AIX/PASE, shared libraries can be and usually are inside archives
4944         dnl so, we specify them by libfoo.a(libfoo.so.0) for libtool's conventions,
4945         dnl or libfoo.a(shr[_64].o) for the AIX system convention,
4946         dnl or lib.so[.0](shr[_64].o) for libtool's hybrid convention
4947         dnl we may hardcode 64-bit names at times, but we don't do 32-bit AIX
4948         LIBC="libc.a(shr_64.o)"
4949         # Thanks, I hate it! This is crumbly, especially the one-liner.
4950         AC_MSG_CHECKING([how to dlopen libintl])
4951         AC_LINK_IFELSE([AC_LANG_SOURCE([
4952                 /* XXX: Check for libintl header/gettext func better? */
4953                 #include <libintl.h>
4955                 int main (void) {
4956                         gettext("Dummy for autoconf");
4957                         return 1;
4958                 }
4959         ])],
4960         [
4961         INTL="$(dump -X64 -Hp conftest$EXEEXT | grep libintl | cut -c 38- | tr -s " " | awk '{print $1"("$2")"}')"
4962         AC_MSG_RESULT([yes, $INTL])
4963         ],
4964         [
4965         INTL="libintl.a(libintl.so.8)"
4966         AC_MSG_RESULT([no, falling back to $INTL])
4967         ])
4968         SQLITE3="libsqlite3.a(libsqlite3.so.0)"
4969         # it's very tempting to set a libsuffix, but it depends on the soname value
4970         ;;
4971      *-*-os400*)
4972         dnl However, IBM's packages for i try to be more "normal" than the AIX world, naming wise.
4973         dnl The library archives has "normal" .so names, but they're members with predictable "shr" names for fat libraries.
4974         LIBC="libc.a(shr_64.o)"
4975         INTL="libintl.so(shr_64.o)"
4976         SQLITE3="libsqlite3.so(shr_64.o)"
4977         # likewise, it's safer to assume ".so(shr_64.o)" due to official IBM packages being built this way, but as with AIX, others may not be guaranteed
4978         # it may be worth revisiting this in the future
4979         ;;
4980      *-*-darwin*)
4981         libsuffix=".dylib"
4982         LIBC="libc.dylib"
4983         INTL="libintl.dylib"
4984         SQLITE="libsqlite.0.dylib"
4985         SQLITE3="libsqlite3.0.dylib"
4986         X11="libX11.dylib"
4987         GDKX11="libgdk-x11-2.0.dylib"
4988         GTKX11="libgtk-x11-2.0.dylib"
4989         ;;
4990      *-*-*netbsd*)
4991         LIBC="libc.so"
4992         INTL="libintl.so"
4993         SQLITE="libsqlite.so"
4994         SQLITE3="libsqlite3.so"
4995         ;;
4996      *-*-kfreebsd*-gnu)
4997         LIBC="libc.so.0.1"
4998         INTL="libc.so.0.1"
4999         X11="libX11.so.6"
5000         ;;
5001     *-*-*freebsd*)
5002         LIBC="libc.so.7"
5003         INTL="libintl.so"
5004         SQLITE="libsqlite.so"
5005         SQLITE3="libsqlite3.so"
5006         ;;
5007     *-*-*openbsd*)
5008         LIBC="libc.so"
5009         INTL="libintl.so"
5010         SQLITE="libsqlite.so"
5011         SQLITE3="libsqlite3.so"
5012         ;;
5013     *-*-*linux*)
5014         AC_PATH_X
5015         dlsearch_path=`(libtool --config ; echo eval echo \\$sys_lib_dlsearch_path_spec) | sh`
5016         AC_MSG_CHECKING(for the soname of libX11.so)
5017         for i in $x_libraries $dlsearch_path; do
5018                 for r in 4 5 6; do
5019                         if test -f $i/libX11.so.$r; then
5020                                 X11=libX11.so.$r
5021                                 AC_MSG_RESULT($X11)
5022                         fi
5023                 done
5024         done
5025         
5026         if test "x$X11" = "xlibX11.so"; then
5027                 AC_MSG_WARN([Could not find libX11.so. Do you have X.org or XFree86 installed? Assuming libX11.so.6...]);
5028                 X11=libX11.so.6
5029         fi
5030         ;;
5031 esac
5033 AC_SUBST(libsuffix)
5035 ######################################
5036 # EGLIB CHECKS
5037 ######################################
5039 GNUC_PRETTY=
5040 GNUC_UNUSED=
5041 BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
5042 if test x$GCC = xyes; then
5043    GNUC_UNUSED='__attribute__((__unused__))'
5044    GNUC_NORETURN='__attribute__((__noreturn__))'
5045    case $host_cpu in
5046      i*86|x86_64) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
5047    esac
5049 AC_SUBST(GNUC_PRETTY)
5050 AC_SUBST(GNUC_UNUSED)
5051 AC_SUBST(GNUC_NORETURN)
5052 AC_SUBST(BREAKPOINT)
5054 AC_C_BIGENDIAN([ORDER=G_BIG_ENDIAN],[ORDER=G_LITTLE_ENDIAN])
5056 case $host in
5057 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
5058     PATHSEP='\\'
5059     SEARCHSEP=';'
5060     OS="WIN32"
5061     PIDTYPE='void *'
5062     ;;
5064     PATHSEP='/'
5065     SEARCHSEP=':'
5066     OS="UNIX"
5067     PIDTYPE='int'
5068     ;;
5069 esac
5071 case $host in
5072         *-*-solaris*)
5073         CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS"
5074         ;;
5075 esac
5077 case $target in
5078 arm*-darwin*|aarch64*-*|riscv*)
5079     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
5080     ;;
5081 i*86-*-darwin*)
5082     ORDER=G_LITTLE_ENDIAN
5083     ;;
5084 *-*-haiku*)
5085     LDFLAGS="$LDFLAGS -ltextencoding"
5086     ;;
5087 *-*-openbsd*)
5088     CFLAGS="$CFLAGS -pthread"
5089     LDFLAGS="$LDFLAGS -pthread"
5090     ;;
5091 esac
5093 AC_SUBST(ORDER)
5094 AC_SUBST(PATHSEP)
5095 AC_SUBST(SEARCHSEP)
5096 AC_SUBST(OS)
5097 AC_SUBST(PIDTYPE)
5099 # Defined for all targets/platforms using classic Windows API support.
5100 AC_DEFINE(HAVE_CLASSIC_WINAPI_SUPPORT, 1, [Use classic Windows API support])
5101 AC_DEFINE(HAVE_UWP_WINAPI_SUPPORT, 0, [Don't use UWP Windows API support])
5103 AC_CHECK_FUNCS(strlcpy stpcpy strtok_r rewinddir vasprintf)
5104 AC_CHECK_FUNCS(getrlimit)
5105 AC_CHECK_FUNCS(fork execv execve)
5106 AC_CHECK_FUNCS(waitpid)
5108 AC_ARG_WITH([overridable-allocators], [  --with-overridable-allocators  allow g_*alloc/g_free to call custom allocators set via g_mem_set_vtable])
5110 if test x$with_overridable_allocators = xyes; then
5111         AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
5112   AC_MSG_NOTICE([Overridable allocator support enabled])
5113 else
5114   AC_MSG_NOTICE([Overridable allocator support disabled])
5118 # Mono currently supports 10.6, but strndup is not available prior to 10.7; avoiding
5119 # the detection of strndup on OS X so Mono built on 10.7+ still runs on 10.6. This can be
5120 # removed once support for 10.6 is dropped.
5122 # iOS detection of strndup and getpwuid_r is faulty for some reason so let's simply avoid it
5124 if test x$target_osx = xyes; then
5125 AC_CHECK_FUNCS(getpwuid_r)
5126 elif test x$target_ios = xno; then
5127 AC_CHECK_FUNCS(strndup getpwuid_r)
5130 AC_SEARCH_LIBS(sqrtf, m)
5132 # nanosleep may not be part of libc, also search it in other libraries
5133 AC_SEARCH_LIBS(nanosleep, rt)
5135 AC_SEARCH_LIBS(dlopen, dl)
5137 # AIX/OS400 -bsymbolic
5138 # Apple -bind_at_load
5139 # The rest GNU.
5141 AX_APPEND_LINK_FLAGS([-Wl,--export-dynamic -Wl,-Bsymbolic -bsymbolic -Wl,-z,now -Wl,-bind_at_load])
5143 AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h sys/wait.h pwd.h iconv.h sys/types.h sys/resource.h)
5144 dnl giconv.c will check on HAVE_ICONV_H but we need this for link time
5145 AC_CHECK_LIB(iconv, iconv_open)
5146 AC_CHECK_HEADER(alloca.h, [HAVE_ALLOCA_H=1], [HAVE_ALLOCA_H=0])
5147 AC_SUBST(HAVE_ALLOCA_H)
5149 # Get the exact type of size_t, not just its size.
5150 # This is so we can find an exact printf format among u, lu, llu, I64u.
5151 # To avoid warnings about slight mismatches.
5152 # C99 runtime "zu" dependency is being avoided here.
5154 # We have to compile as C++ because C is too lenient
5155 # and lets the wrong thing compile, with warnings.
5157 # Note: "zu" or ifdef <something> have the advantage
5158 # of producing installable "biarch" headers. i.e. one Mac header
5159 # for Mac/x86 and Mac/amd64.
5161 AC_LANG_PUSH(C++)
5163 # Check long before int because it is the overwhelming Unix answer,
5164 # across 32bit and 64bit systems -- fewer compiler invocations in autoconf.
5166 # long ahead of int also tends to produce biarch-compatible headers except Windows.
5168 AC_MSG_CHECKING(if size_t is unsigned long)
5169 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5170         #include <stddef.h>
5171         unsigned long *a = (size_t*)0;
5172 ])], [
5173         AC_MSG_RESULT(yes)
5174         AC_SUBST(GSIZE_FORMAT, '"lu"')
5175 ], [
5176         AC_MSG_RESULT(no)
5177         AC_MSG_CHECKING(if size_t is unsigned int)
5178         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5179                 #include <stddef.h>
5180                 unsigned *a = (size_t*)0;
5181         ])], [
5182                 AC_MSG_RESULT(yes)
5183                 AC_SUBST(GSIZE_FORMAT, '"u"')
5184         ], [
5185 # At this point the majority of systems have their answer,
5186 # and we descend into non-standard or new-standard territory.
5188 # Check __int64 first because I64 on some systems predates ll, enabling
5189 # new compiler/old runtime interop, and the types always have the same size.
5190                 AC_MSG_RESULT(no)
5191                 AC_MSG_CHECKING(if size_t is unsigned __int64)
5192                 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5193                         #include <stddef.h>
5194                         unsigned __int64 *a = (size_t*)0;
5195                 ])], [
5196                         AC_MSG_RESULT(yes)
5197                         AC_SUBST(GSIZE_FORMAT, '"I64u"')
5198                 ], [
5199                         AC_MSG_RESULT(no)
5200                         AC_MSG_CHECKING(if size_t is unsigned long long)
5201                         AC_COMPILE_IFELSE([AC_LANG_SOURCE([
5202                                 #include <stddef.h>
5203                                 unsigned long long *a = (size_t*)0;
5204                         ])], [
5205                                 AC_MSG_RESULT(yes)
5206                                 AC_SUBST(GSIZE_FORMAT, '"llu"')
5207                         ], [
5208                                 AC_MSG_RESULT(no)
5209                                 AC_MSG_ERROR(Unable to determine size_t among unsigned long, int, __int64, long long)
5210                         ] )
5211                 ] )
5212         ] )
5213 ] )
5215 AC_LANG_POP
5217 # If size_t/ptrdiff_t is correct, use it. Otherwise C99 [u]intptr_t.
5218 # This provides for an exact match with functions that
5219 # take size_t like malloc and pthread_attr_getstacksize, avoiding warnings.
5220 # uintptr_t is not necessarily the same.
5222 # ptrdiff_t is preferred over ssize_t as it is C89 vs. new Posix.
5223 # ssize_t looks nicer but ptrdiff_t is wrapped up as gssize anyway.
5225 if test $ac_cv_sizeof_void_p = $ac_cv_sizeof_size_t; then
5226    GSIZE="size_t"
5227    GSSIZE="ptrdiff_t"
5228 else
5229    GSIZE="uintptr_t"
5230    GSSIZE="intptr_t"
5233 AC_SUBST(GSIZE)
5234 AC_SUBST(GSSIZE)
5235 AC_SUBST(GSIZE_FORMAT)
5238 # END OF EGLIB CHECKS
5241 AC_ARG_WITH([libgdiplus],
5242         [  --with-libgdiplus=installed|sibling|<path>   Override the libgdiplus used for System.Drawing tests (defaults to installed)],
5243         [], [with_libgdiplus=installed])
5245 # default install location
5246 libgdiplus_install_loc=libgdiplus${libsuffix}
5247 case "$host" in
5248     *-*-*linux*)
5249     libgdiplus_install_loc=libgdiplus${libsuffix}.0
5250     ;;
5251 esac
5253 case $with_libgdiplus in
5254     no)
5255     libgdiplus_loc=
5256     ;;
5258     installed)
5259     libgdiplus_loc=
5260     if test x$cross_compiling = xno; then
5261         if test x$host_darwin = xyes; then
5262             a=/Library/Frameworks/Mono.framework/Versions/Current/lib/$libgdiplus_install_loc
5263             if test -x $a; then
5264               libgdiplus_install_loc=$a
5265               libgdiplus_loc=$a
5266             fi
5267         fi
5268     fi
5269     ;;
5271     yes|sibling)
5272     libgdiplus_loc=`cd ../libgdiplus && pwd`/src/libgdiplus.la
5273     ;;
5275     /*) # absolute path, assume it is an install location
5276     libgdiplus_loc=$with_libgdiplus
5277     libgdiplus_install_loc=$with_libgdiplus
5278     ;;
5280     *)
5281     libgdiplus_loc=`pwd`/$with_libgdiplus
5282     ;;
5283 esac
5284 AC_SUBST(libgdiplus_loc)
5285 AC_SUBST(libgdiplus_install_loc)
5287 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)
5288 if test "x$icall_symbol_map" = "xyes"; then
5289    AC_DEFINE(ENABLE_ICALL_SYMBOL_MAP, 1, [Icall symbol map enabled])
5292 AC_ARG_ENABLE(icall-export,[  --enable-icall-export Export icall functions], icall_export=$enableval, icall_export=no)
5293 if test "x$icall_export" = "xyes"; then
5294    AC_DEFINE(ENABLE_ICALL_EXPORT, 1, [Icall export enabled])
5297 AC_ARG_ENABLE(icall-tables,[  --disable-icall-tables Disable the runtime lookup of icalls], icall_tables=$enableval, icall_tables=yes)
5298 if test "x$icall_tables" = "xno"; then
5299    AC_DEFINE(DISABLE_ICALL_TABLES, 1, [Icall tables disabled])
5302 AM_CONDITIONAL(DISABLE_ICALL_TABLES, test x$icall_tables = xno)
5304 if test "x$with_tls" = "x__thread"; then
5305         AC_DEFINE(MONO_KEYWORD_THREAD, __thread, [Have __thread keyword])
5306         # Pass the information to libgc
5307         CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
5308         AC_MSG_CHECKING(if the tls_model attribute is supported)
5309         AC_TRY_COMPILE([static __thread int foo __attribute__((tls_model("initial-exec")));], [
5310                 ], [
5311                         AC_MSG_RESULT(yes)
5312                         AC_DEFINE(HAVE_TLS_MODEL_ATTR, 1, [tls_model available])
5313                 ], [
5314                         AC_MSG_RESULT(no)
5315         ])
5318 if test ${TARGET} = ARM; then
5319         dnl ******************************************
5320         dnl *** Check to see what FPU is available ***
5321         dnl ******************************************
5322         AC_MSG_CHECKING(which FPU to use)
5324         #
5325         # This is a bit tricky:
5326         #
5327         # if (__ARM_PCS_VFP) {
5328         #       /* mfloat-abi=hard == VFP with hard ABI */
5329         # } elif (!__SOFTFP__) {
5330         #       /* mfloat-abi=softfp == VFP with soft ABI */
5331         # } else {
5332         #       /* mfloat-abi=soft == no VFP */
5333         # }
5334         #
5335         # The exception is iOS (w/ GCC) where none of the above
5336         # are defined (but iOS always uses the 'softfp' ABI).
5337         #
5338         # No support for FPA.
5339         #
5341         fpu=NONE
5343         # iOS GCC always uses the 'softfp' ABI.
5344         if test x"$GCC" = xyes && test x$host_darwin = xyes; then
5345                 fpu=VFP
5346         fi
5348         # Are we using the 'hard' ABI?
5349         if test x$fpu = xNONE; then
5350                 AC_TRY_COMPILE([], [
5351                         #ifndef __ARM_PCS_VFP
5352                         #error "Float ABI is not 'hard'"
5353                         #endif
5354                 ], [
5355                         fpu=VFP_HARD
5356                 ], [
5357                         fpu=NONE
5358                 ])
5359         fi
5361         # No 'hard' ABI. 'soft' or 'softfp'?
5362         if test x$fpu = xNONE; then
5363                 AC_TRY_COMPILE([], [
5364                         #ifdef __SOFTFP__
5365                         #error "Float ABI is not 'softfp'"
5366                         #endif
5367                 ], [
5368                         fpu=VFP
5369                 ], [
5370                         fpu=NONE
5371                 ])
5372         fi
5374         if test x$arm_fpu != x; then
5375            fpu=$arm_fpu
5376         fi
5378         AC_MSG_RESULT($fpu)
5379         CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu=1"
5380         unset fpu
5382         dnl *********************************************
5383         dnl *** Check which ARM version(s) we can use ***
5384         dnl *********************************************
5385         AC_MSG_CHECKING(which ARM version to use)
5387         AC_TRY_COMPILE([], [
5388                 #if !defined(__ARM_ARCH_5T__) && !defined(__ARM_ARCH_5TE__) && !defined(__ARM_ARCH_5TEJ__)
5389                 #error Not on ARM v5.
5390                 #endif
5391         ], [
5392                 arm_v5=yes
5394                 arm_ver=ARMv5
5395         ], [])
5397         AC_TRY_COMPILE([], [
5398                 #if !defined(__ARM_ARCH_6J__) && !defined(__ARM_ARCH_6ZK__) && !defined(__ARM_ARCH_6K__) && !defined(__ARM_ARCH_6T2__) && !defined(__ARM_ARCH_6M__)
5399                 #error Not on ARM v6.
5400                 #endif
5401         ], [
5402                 arm_v5=yes
5403                 arm_v6=yes
5405                 arm_ver=ARMv6
5406         ], [])
5408         AC_TRY_COMPILE([], [
5409                 #if !defined(__ARM_ARCH_7A__) && !defined(__ARM_ARCH_7R__) && !defined(__ARM_ARCH_7EM__) && !defined(__ARM_ARCH_7M__) && !defined(__ARM_ARCH_7S__)
5410                 #error Not on ARM v7.
5411                 #endif
5412         ], [
5413                 arm_v5=yes
5414                 arm_v6=yes
5415                 arm_v7=yes
5417                 arm_ver=ARMv7
5418         ], [])
5420         AC_MSG_RESULT($arm_ver)
5422         if test x$arm_v5 = xyes; then
5423                 AC_DEFINE(HAVE_ARMV5, 1, [ARM v5])
5424                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV5=1"
5425         fi
5427         if test x$arm_v6 = xyes; then
5428                 AC_DEFINE(HAVE_ARMV6, 1, [ARM v6])
5429                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV6=1"
5430         fi
5432         if test x$arm_v7 = xyes; then
5433                 AC_DEFINE(HAVE_ARMV7, 1, [ARM v7])
5434                 CPPFLAGS_FOR_LIBGC="$CPPFLAGS_FOR_LIBGC -DHAVE_ARMV7=1"
5435         fi
5437         if test x$host_linux = xyes; then
5438                 RID="linux-arm"
5439                 COREARCH="arm"
5440                 if test x$fpu = xNONE; then
5441                         RID="linux-armel"
5442                         COREARCH="armel"
5443                 fi
5444         fi
5447 AC_SUBST(RID)
5448 AC_SUBST(COREARCH)
5449 AC_SUBST(CORETARGETS)
5451 if test ${TARGET} = RISCV32 -o ${TARGET} = RISCV64; then
5452         AC_ARG_WITH([riscv-fpabi], [  --with-riscv-fpabi=auto,double,soft   Select RISC-V floating point ABI (auto)], [fpabi=$withval], [fpabi=double])
5454         AC_MSG_CHECKING([which RISC-V floating point ABI to use])
5456         if test x$fpabi = xauto; then
5457                 AC_TRY_COMPILE([], [
5458                         #ifdef __riscv_float_abi_double
5459                         #error "double"
5460                         #endif
5461                 ], [
5462                         fpabi=auto
5463                 ], [
5464                         fpabi=double
5465                 ])
5466         fi
5468         if test x$fpabi = xauto; then
5469                 AC_TRY_COMPILE([], [
5470                         #ifdef __riscv_float_abi_single
5471                         #error "single"
5472                         #endif
5473                 ], [
5474                         fpabi=auto
5475                 ], [
5476                         fpabi=single
5477                 ])
5478         fi
5480         if test x$fpabi = xauto; then
5481                 AC_TRY_COMPILE([], [
5482                         #ifdef __riscv_float_abi_soft
5483                         #error "soft"
5484                         #endif
5485                 ], [
5486                         fpabi=auto
5487                 ], [
5488                         fpabi=soft
5489                 ])
5490         fi
5492         case $fpabi in
5493         double)
5494                 AC_DEFINE([RISCV_FPABI_DOUBLE], [1], [RISC-V FPABI is double-precision])
5495                 AC_MSG_RESULT([double-precision])
5496                 ;;
5497         single)
5498                 AC_DEFINE([RISCV_FPABI_SINGLE], [1], [RISC-V FPABI is single-precision])
5499                 AC_MSG_ERROR([single-precision, not supported])
5500                 ;;
5501         soft)
5502                 AC_DEFINE([RISCV_FPABI_SOFT], [1], [RISC-V FPABI is soft float])
5503                 AC_MSG_RESULT([soft float])
5504                 ;;
5505         auto)
5506                 AC_MSG_ERROR([unknown])
5507                 ;;
5508         *)
5509                 AC_MSG_ERROR([invalid option: $fpabi])
5510                 ;;
5511         esac
5514 if test ${TARGET} = unknown; then
5515         CPPFLAGS="$CPPFLAGS -DNO_PORT"
5516         AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
5519 if test "x$platform_android" = "xyes"; then
5520         case "x${TARGET}" in
5521         xARM)
5522                 case "x$arm_ver" in
5523                 xARMv5)
5524                         BTLS_SUPPORTED=yes
5525                         BTLS_PLATFORM=android-armv5
5526                         ;;
5527                 xARMv6)
5528                         BTLS_SUPPORTED=yes
5529                         BTLS_PLATFORM=android-armv6
5530                         ;;
5531                 xARMv7)
5532                         BTLS_SUPPORTED=yes
5533                         BTLS_PLATFORM=android-armv7
5534                         ;;
5535                 *)
5536                         BTLS_SUPPORTED=no
5537                         ;;
5538                 esac
5539                 ;;
5540         xARM64)
5541                 BTLS_SUPPORTED=yes
5542                 BTLS_PLATFORM=android-v8a
5543                 ;;
5544         xX86)
5545                 BTLS_SUPPORTED=yes
5546                 BTLS_PLATFORM=android-x86
5547                 ;;
5548         xAMD64)
5549                 BTLS_SUPPORTED=yes
5550                 BTLS_PLATFORM=android-x64
5551                 ;;
5552         *)
5553                 BTLS_SUPPORTED=no
5554                 ;;
5555         esac
5558 if test ${ACCESS_UNALIGNED} = no; then
5559         CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
5562 if test x$host_darwin = xyes; then
5563         AC_MSG_CHECKING([for ranlib that supports -no_warning_for_no_symbols option])
5564         AS_IF(
5565                 [$RANLIB -no_warning_for_no_symbols 2>&1 | grep -q "unknown option"],
5566                 [AC_MSG_RESULT([no])],
5567                 [
5568                         # avoid AR calling ranlib, libtool calls it anyway. suppress no symbols warning.
5569                         AR_FLAGS="Scru"
5570                         RANLIB="$RANLIB -no_warning_for_no_symbols"
5571                         AC_MSG_RESULT([yes])
5572                 ]
5573         )
5576 case "x$libgc" in
5577         xincluded)
5578                 # Pass CPPFLAGS to libgc configure
5579                 # We should use a separate variable for this to avoid passing useless and
5580                 # potentially problematic defines to libgc (like -D_FILE_OFFSET_BITS=64)
5581                 # This should be executed late so we pick up the final version of CPPFLAGS
5582                 # The problem with this approach, is that during a reconfigure, the main
5583                 # configure scripts gets invoked with these arguments, so we use separate
5584                 # variables understood by libgc's configure to pass CPPFLAGS and CFLAGS.
5585                 TMP_CPPFLAGS="$CPPFLAGS $CPPFLAGS_FOR_LIBGC"
5586                 if test x$TARGET = xSPARC -o x$TARGET = xSPARC64; then
5587                         TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-D_FILE_OFFSET_BITS=64//g'`
5588                 fi
5589                 # Don't pass -finstrument-for-thread-suspension in, 
5590                 # if these are instrumented it will be very bad news 
5591                 # (infinite recursion, undefined parking behavior, etc)
5592                 TMP_CPPFLAGS=`echo $TMP_CPPFLAGS | sed -e 's/-finstrument-for-thread-suspension//g'`
5593                 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\""
5594                 if test "x$support_boehm" = "xyes"; then
5595                         AC_CONFIG_SUBDIRS(libgc)
5596                 fi
5597                 ;;
5598 esac
5600 MALLOC_MEMPOOLS=no
5601 AC_ARG_WITH(malloc_mempools,[  --with-malloc-mempools=yes,no  Use malloc for each single mempool allocation (only for runtime debugging, defaults to no)],[
5602         if test x$with_malloc_mempools = xyes; then
5603                 MALLOC_MEMPOOLS=yes
5604                 AC_DEFINE(USE_MALLOC_FOR_MEMPOOLS,1,[Use malloc for each single mempool allocation])
5605         fi
5609 DISABLE_MCS_DOCS=default
5610 AC_ARG_WITH(mcs_docs,[  --with-mcs-docs=yes,no         If you want to build the documentation under mcs (defaults to yes)],[
5611         if test x$with_mcs_docs != xyes; then
5612                 DISABLE_MCS_DOCS=yes
5613         fi
5615 if test -n "$INSTALL_4_x_TRUE"; then :
5616         DISABLE_MCS_DOCS=yes
5618 if test "x$DISABLE_MCS_DOCS" = "xdefault"; then
5619    DISABLE_MCS_DOCS=$DISABLE_MCS_DOCS_default
5622 AC_ARG_WITH(lazy_gc_thread_creation, [  --with-lazy-gc-thread-creation=yes|no      Enable lazy runtime thread creation, embedding host must do it explicitly (defaults to no)],[
5623         if test x$with_lazy_gc_thread_creation != xno ; then
5624                 AC_DEFINE(LAZY_GC_THREAD_CREATION,1,[Enable lazy gc thread creation by the embedding host.])
5625         fi
5626 ], [with_lazy_gc_thread_creation=no])
5628 dnl *****************************
5629 dnl *** Thread suspend policy ***
5630 dnl *****************************
5632 dnl Set a default hybrid or cooperative suspend on some platforms
5634 dnl Coop default is set by the bitcode preset.
5636 dnl If coop isn't on by default, maybe hybrid should be?
5637 if test x$enable_cooperative_suspend_default != xyes; then
5638         case $HOST in
5639         X86 | AMD64)
5640                 dnl Some host/target confusion, there's no host_osx (and
5641                 dnl host_darwin would be true on iOS not just macOS).
5642                 if test x$target_osx = xyes; then
5643                         enable_hybrid_suspend_default=yes
5644                 elif test x$host_linux = xyes -o x$host_win32 = xyes; then
5645                         enable_hybrid_suspend_default=yes
5646                 fi
5647                 ;;
5648         esac
5651 dnl Now check if there were flags overriding the defaults
5653 AC_ARG_WITH(cooperative_gc,        [  --with-cooperative-gc=yes|no        Enable cooperative stop-the-world garbage collection (sgen only) (defaults to no)], [AC_MSG_WARN([--with-cooperative-gc is deprecated, use --enable-cooperative-suspend instead])], [with_cooperative_gc=default])
5654 AC_ARG_ENABLE(cooperative_suspend, [  --enable-cooperative-suspend      Enable cooperative stop-the-world garbage collection (sgen only) (defaults to no)], [], [enable_cooperative_suspend=default])
5656 if test x$enable_cooperative_suspend = xdefault -a x$with_cooperative_gc != xdefault; then
5657         enable_cooperative_suspend=$with_cooperative_gc
5660 if test x$enable_cooperative_suspend = xdefault; then
5661         enable_cooperative_suspend=$enable_cooperative_suspend_default
5664 if test x$enable_cooperative_suspend != xno; then
5665         AC_DEFINE(ENABLE_COOP_SUSPEND,1,[Enable cooperative stop-the-world garbage collection.])
5666         enable_hybrid_suspend_default=no
5669 AM_CONDITIONAL([ENABLE_COOP_SUSPEND], [test x$enable_cooperative_suspend != xno])
5671 AC_ARG_ENABLE(hybrid_suspend, [ --enable-hybrid-suspend     Enable hybrid stop-the-world garbage collection (sgen only) - cooperative suspend for threads running managed and runtime code, and preemptive suspend for threads running native and P/Invoke code (defaults to no)], [], [enable_hybrid_suspend=default])
5673 if test x$enable_hybrid_suspend = xdefault; then
5674    enable_hybrid_suspend=$enable_hybrid_suspend_default
5677 if test x$enable_hybrid_suspend != xno -a x$enable_cooperative_suspend != xno ; then
5678         AC_MSG_ERROR([Hybrid suspend and Cooperative suspend cannot be both enabled.])
5681 if test x$enable_hybrid_suspend != xno ; then
5682         AC_DEFINE(ENABLE_HYBRID_SUSPEND,1,[Enable hybrid suspend for GC stop-the-world])
5685 AM_CONDITIONAL([ENABLE_HYBRID_SUSPEND], [test x$enable_hybrid_suspend != xno])
5687 dnl End of thread suspend policy
5689 dnl ***************************
5690 dnl *** feature experiments ***
5691 dnl ***************************
5693 dnl When adding experiments, also add to mono/utils/mono-experiments.def
5694 AC_ARG_ENABLE(experiment, [ --enable-experiment=LIST       Enable experimental fatures from the comma-separate LIST.  Available experiments: null],[
5696         if test x$enable_experiment != x ; then
5697                 AC_DEFINE(ENABLE_EXPERIMENTS,1,[Enable feature experiments])
5698         fi
5699         for feature in `echo "$enable_experiment" | sed -e "s/,/ /g"`; do
5700                 eval "mono_experiment_test_enable_$feature='yes'"
5701         done
5703         if test "x$mono_experiment_test_enable_all" = "xyes"; then
5704                 eval "mono_experiment_test_enable_null='yes'"
5705                 true
5706         fi
5708         if test "x$mono_experiment_test_enable_null" = "xyes"; then
5709                 AC_DEFINE(ENABLE_EXPERIMENT_null, 1, [Enable experiment 'null'])
5710         fi
5711 ],[])
5713 dnl **********************
5714 dnl *** checked builds ***
5715 dnl **********************
5717 AC_ARG_ENABLE(checked_build, [  --enable-checked-build=LIST      To enable checked build (expensive asserts), configure with a comma-separated LIST of checked build modules and then include that same list in the environment variable MONO_CHECK_MODE at runtime. Recognized checked build modules: all, gc, metadata, thread, private_types, crash_reporting],[
5719         if test x$enable_checked_build != x ; then
5720                 AC_DEFINE(ENABLE_CHECKED_BUILD,1,[Enable checked build])
5721         fi
5722         for feature in `echo "$enable_checked_build" | sed -e "s/,/ /g"`; do
5723                 eval "mono_checked_build_test_enable_$feature='yes'"
5724         done
5726         if test "x$mono_checked_build_test_enable_all" = "xyes"; then
5727                 eval "mono_checked_build_test_enable_gc='yes'"
5728                 eval "mono_checked_build_test_enable_metadata='yes'"
5729                 eval "mono_checked_build_test_enable_thread='yes'"
5730                 eval "mono_checked_build_test_enable_private_types='yes'"
5731                 eval "mono_checked_build_test_enable_crash_reporting='yes'"
5732         fi
5734         if test "x$mono_checked_build_test_enable_gc" = "xyes"; then
5735                 AC_DEFINE(ENABLE_CHECKED_BUILD_GC, 1, [Enable GC checked build])
5736         fi
5738         if test "x$mono_checked_build_test_enable_metadata" = "xyes"; then
5739                 AC_DEFINE(ENABLE_CHECKED_BUILD_METADATA, 1, [Enable metadata checked build])
5740         fi
5742         if test "x$mono_checked_build_test_enable_thread" = "xyes"; then
5743                 AC_DEFINE(ENABLE_CHECKED_BUILD_THREAD, 1, [Enable thread checked build])
5744         fi
5746         if test "x$mono_checked_build_test_enable_private_types" = "xyes"; then
5747                 AC_DEFINE(ENABLE_CHECKED_BUILD_PRIVATE_TYPES, 1, [Enable private types checked build])
5748         fi
5750         if test "x$mono_checked_build_test_enable_crash_reporting" = "xyes"; then
5751                 # Required
5752                 with_overridable_allocators=yes
5753                 AC_DEFINE(ENABLE_OVERRIDABLE_ALLOCATORS,1,[Overridable allocator support enabled])
5755                 AC_DEFINE(ENABLE_CHECKED_BUILD_CRASH_REPORTING, 1, [Enable private types checked build])
5756         fi
5757 ], [])
5759 dnl End of checked builds
5761 AM_CONDITIONAL(NEED_VASPRINTF, test x$ac_cv_func_vasprintf = xno || test x$with_overridable_allocators = xyes)
5763 AC_CHECK_HEADER([malloc.h], 
5764                 [AC_DEFINE([HAVE_USR_INCLUDE_MALLOC_H], [1], 
5765                         [Define to 1 if you have /usr/include/malloc.h.])],,)
5767 # When --disable-shared is used, libtool transforms libmono-2.0.la into libmono-2.0.so
5768 # instead of libmono-static.a
5769 if test "x$enable_shared" = "xno" -a "x$enable_executables" = "xyes"; then
5770    LIBMONO_LA=libmini-static.la
5771 else
5772    if test x$buildsgen = xyes; then
5773       LIBMONO_LA=libmonosgen-$API_VER.la
5774    else
5775       LIBMONO_LA=libmonoboehm-$API_VER.la
5776    fi
5778 AC_SUBST(LIBMONO_LA)
5780 dnl **************
5781 dnl ***  Btls  ***
5782 dnl **************
5784 AC_ARG_ENABLE(btls, [  --disable-btls             Disable the BoringTls provider], enable_btls=$enableval, enable_btls=$BTLS_SUPPORTED)
5785 AC_ARG_ENABLE(btls-lib, [  --disable-btls-lib             Disable building the BTLS native library], enable_btls_lib=$enableval, enable_btls_lib=$BTLS_SUPPORTED)
5786 AC_ARG_WITH(btls_android_ndk, [  --with-btls-android-ndk        Android NDK for BoringTls])
5787 AC_ARG_WITH(btls_android_api, [  --with-btls-android-api        Android NDK API level for BTLS build])
5788 AC_ARG_WITH(btls_android_cmake_toolchain, [  --with-btls-android-cmake-toolchain        Path to the cmake toolchain file for Android])
5789 AC_ARG_WITH(btls_android_ndk_asm_workaround, [  --with-btls-android-ndk-asm-workaround        Work around a problem with NDK r18+ clang compiler when compiling some AES assembly for ARM])
5791 if test "x$with_btls_android_api" = "x" ; then
5792         case "$BTLS_PLATFORM" in
5793                 android-armv5)
5794                         with_btls_android_api=16" ;;
5795                 android-armv6)
5796                         with_btls_android_api=16" ;;
5797                 android-armv7)
5798                         with_btls_android_api=16 ;;
5799                 android-v8a)
5800                         with_btls_android_api=21 ;;
5801                 android-x86)
5802                         with_btls_android_api=16 ;;
5803                 android-x64)
5804                         with_btls_android_api=21 ;;
5805         esac
5808 if test "x$enable_btls" = "xno"; then
5809    enable_btls_lib=no
5812 AM_CONDITIONAL(BTLS, test x$enable_btls_lib = xyes)
5814 btls_android=no
5815 if test "x$enable_btls" = "xyes"; then
5816         AC_PATH_PROG(CMAKE, [cmake], [no], [$PATH:/Applications/CMake.app/Contents/bin:/usr/local/bin])
5817         if test "x$CMAKE" = "xno"; then
5818                 AC_MSG_ERROR("cmake not found")
5819         fi
5821         BTLS_ROOT=`cd $srcdir && pwd`/external/boringssl
5822         AC_SUBST(BTLS_ROOT)
5824         btls_arch=
5825         btls_cflags=
5826         BTLS_CMAKE_ARGS=
5828         if test "x$host_win32" = "xyes"; then
5829                 AC_CHECK_PROG(HAVE_YASM, yasm, yes, no)
5830         fi
5832         case "$BTLS_PLATFORM" in
5833         i386)
5834                 btls_arch=i386
5835                 btls_cflags="-m32"
5836                 case $host_os in
5837                         darwin*)
5838                                 btls_cflags="$btls_cflags -arch i386"
5839                                 ;;
5840                         mingw*|cygwin*)
5841                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5842                                 if test "x$HAVE_YASM" != "xyes"; then
5843                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5844                                 fi
5845                                 ;;
5846                 esac
5847                 ;;
5848         x86_64)
5849                 btls_arch=x86_64
5850                 case $host_os in
5851                         mingw*|cygwin*)
5852                                 btls_cflags="-DNOCRYPT $WIN32_CPPFLAGS"
5853                                 if test "x$HAVE_YASM" != "xyes"; then
5854                                         BTLS_CMAKE_ARGS="-DOPENSSL_NO_ASM=1"
5855                                 fi
5856                                 ;;
5857                 esac
5858                 ;;
5859         arm)
5860                 btls_arch=arm
5861                 btls_cflags="-DOPENSSL_NO_ASM=1"
5862                 ;;
5863         armsoft)
5864                 btls_arch=arm
5865                 btls_cflags="-DOPENSSL_NO_ASM=1"
5866                 ;;
5867         aarch64)
5868                 btls_arch=aarch64
5869                 btls_cflags="-march=armv8-a+crypto"
5870                 ;;
5871         s390x)
5872                 btls_arch=s390x
5873                 ;;
5874         powerpc)
5875                 btls_arch=powerpc
5876                 case $host_os in
5877                         aix*|os400*)
5878                                 btls_cflags="$btls_cflags -maix64 -mminimal-toc -pthread -D_ALL_SOURCE -D_THREAD_SAFE -D_REENTRANT"
5879                                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DCMAKE_AR=/usr/bin/ar -DCMAKE_C_ARCHIVE_CREATE=\"<CMAKE_AR> -X64 cr <TARGET> <LINK_FLAGS> <OBJECTS>\""
5880                 esac
5881                 ;;
5882         android-armv5)
5883                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5884                 ;;
5885         android-armv6)
5886                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5887                 ;;
5888         android-armv7)
5889                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"armeabi-v7a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5890                 ;;
5891         android-v8a)
5892                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"arm64-v8a\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5893                 ;;
5894         android-x86)
5895                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5896                 ;;
5897         android-x64)
5898                 BTLS_CMAKE_ARGS="-DANDROID_ABI=\"x86_64\" -DANDROID_NATIVE_API_LEVEL=$with_btls_android_api"
5899                 ;;
5900         riscv32)
5901                 btls_arch=riscv32
5902                 ;;
5903         riscv64)
5904                 btls_arch=riscv64
5905                 ;;
5906         *)
5907                 AC_MSG_ERROR(Invalid BTLS platform)
5908         esac
5910         if test "x$platform_android" = "xyes"; then
5911                 if test "x$with_btls_android_cmake_toolchain" = "x"; then
5912                    with_btls_android_cmake_toolchain="$BTLS_ROOT/util/android-cmake/android.toolchain.cmake"
5913                 fi
5915                 if test "x$with_btls_android_ndk_asm_workaround" != "x"; then
5916                    BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DENABLE_NDK_ARM_WORKAROUND=ON"
5917                 fi
5919                 btls_android=yes
5920                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DCMAKE_TOOLCHAIN_FILE=$with_btls_android_cmake_toolchain"
5921                 if test "x$with_btls_android_ndk" != "x"; then
5922                         BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DANDROID_NDK=\"$with_btls_android_ndk\""
5923                 else
5924                         AC_MSG_ERROR([Need to pass the --with-btls-android-ndk argument when building with BTLS support on Android.])
5925                 fi
5926         fi
5928         if test "x$btls_arch" != "x"; then
5929                 BTLS_CMAKE_ARGS="$BTLS_CMAKE_ARGS -DBTLS_ARCH=\"$btls_arch\""
5930         fi
5932         BTLS_CFLAGS="$CPPFLAGS_FOR_BTLS $btls_cflags"
5933         AC_SUBST(BTLS_ARCH)
5934         AC_SUBST(BTLS_CFLAGS)
5935         AC_SUBST(BTLS_PLATFORM)
5936         AC_SUBST(BTLS_CMAKE_ARGS)
5938         AC_DEFINE(HAVE_BTLS, 1, [BoringTls is supported])
5939 else
5940         enable_btls=no
5943 AM_CONDITIONAL(BTLS_ANDROID, test x$btls_android = xyes)
5945 if test x$DISABLE_MCS_DOCS = xyes; then
5946    docs_dir=""
5947 else
5948    docs_dir=docs
5950 AC_SUBST(docs_dir)
5952 ## Maybe should also disable if mcsdir is invalid.  Let's punt the issue for now.
5953 AM_CONDITIONAL(BUILD_MCS, [test x$cross_compiling = xno && test x$enable_mcs_build != xno])
5954 AM_CONDITIONAL(BUILD_SUPPORT, [test x$enable_support_build != xno])
5956 libmono_ldflags="$libmono_ldflags $LIBS"
5958 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
5959 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
5960 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
5961 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
5962 AM_CONDITIONAL(X86, test x$TARGET = xX86)
5963 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
5964 AM_CONDITIONAL(MIPS, test x$TARGET = xMIPS)
5965 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
5966 AM_CONDITIONAL(POWERPC64, test x$TARGET = xPOWERPC64)
5967 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
5968 AM_CONDITIONAL(ARM64, test x$TARGET = xARM64 -o x$TARGET = xARM6432)
5969 AM_CONDITIONAL(S390X, test x$TARGET = xS390X)
5970 AM_CONDITIONAL([RISCV], [test x$TARGET = xRISCV32 -o x$TARGET = xRISCV64])
5971 AM_CONDITIONAL([RISCV32], [test x$TARGET = xRISCV32])
5972 AM_CONDITIONAL([RISCV64], [test x$TARGET = xRISCV64])
5973 AM_CONDITIONAL(WASM, test x$TARGET = xWASM)
5974 AM_CONDITIONAL(HOST_X86, test x$HOST = xX86)
5975 AM_CONDITIONAL(HOST_AMD64, test x$HOST = xAMD64)
5976 AM_CONDITIONAL(HOST_ARM, test x$HOST = xARM)
5977 AM_CONDITIONAL(HOST_ARM64, test x$HOST = xARM64)
5978 AM_CONDITIONAL([HOST_RISCV], [test x$HOST = xRISCV32 -o x$HOST = xRISCV64])
5979 AM_CONDITIONAL([HOST_RISCV32], [test x$HOST = xRISCV32])
5980 AM_CONDITIONAL([HOST_RISCV64], [test x$HOST = xRISCV64])
5981 AM_CONDITIONAL(HOST_WASM, test x$HOST = xWASM)
5983 AM_CONDITIONAL(CROSS_COMPILE, test "x$host" != "x$target")
5985 AC_SUBST(LIBC)
5986 AC_SUBST(INTL)
5987 AC_SUBST(SQLITE)
5988 AC_SUBST(SQLITE3)
5989 AC_SUBST(ODBC)
5990 AC_SUBST(X11)
5991 AC_SUBST(GDKX11)
5992 AC_SUBST(GTKX11)
5993 AC_SUBST(XINERAMA)
5994 AC_DEFINE_UNQUOTED(MONO_ARCHITECTURE,"$arch_target",[The architecture this is running on])
5995 AC_SUBST(arch_target)
5997 #This must always be defined when building the runtime
5998 AC_DEFINE(MONO_INSIDE_RUNTIME,1, [Disable banned functions from being used by the runtime])
6000 mono_build_root=`pwd`
6001 AC_SUBST(mono_build_root)
6003 AC_ARG_ENABLE(msvc_only,[  --enable-msvc-only    Build only with Visual Studio (msvc) (defaults to no). Disable gcc build.], enable_msvc_only=$enableval, enable_msvc_only=no)
6004 if test x$host_win32 = xno; then
6005         if test x$enable_msvc_only = xyes; then
6006                 echo "Error, --enable-msvc-only only supported for Windows builds."
6007                 exit 1
6008         fi
6010 AM_CONDITIONAL(ENABLE_MSVC_ONLY, test x$enable_msvc_only = xyes)
6012 AC_ARG_ENABLE(msvc,[  --enable-msvc    Build with Visual Studio (msvc) (defaults to no)], enable_msvc=$enableval, enable_msvc=no)
6013 if test x$host_win32 = xno; then
6014         if test x$enable_msvc = xyes; then
6015                 echo "Error, --enable-msvc only supported for Windows builds."
6016                 exit 1
6017         fi
6019 if test x$enable_msvc_only = xyes; then
6020         enable_msvc=yes
6022 AM_CONDITIONAL(ENABLE_MSVC, test x$enable_msvc = xyes)
6024 if test "x$enable_msvc" = "xyes"; then
6025         if test "x$support_boehm" = "xyes"; then
6026                 echo "Error, Boehm GC is not supported when using --enable-msvc."
6027                 exit 1
6028         fi
6029         mono_msvc_build_dir='$(top_srcdir)'/msvc/build/sgen
6030         if test "x$host_cpu" = "xi686"; then
6031                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/Win32/lib/Release
6032                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/Win32/bin/Release
6033                 mono_runtime=msvc/build/sgen/Win32/bin/Release/mono-sgen.exe
6034                 mono_runtime_wrapper=$mono_runtime
6035         else
6036                 mono_msvc_build_lib_dir='$(mono_msvc_build_dir)'/x64/lib/Release
6037                 mono_msvc_build_bin_dir='$(mono_msvc_build_dir)'/x64/bin/Release
6038                 mono_runtime=msvc/build/sgen/x64/bin/Release/mono-sgen.exe
6039                 mono_runtime_wrapper=msvc/build/sgen/x64/bin/Release/mono-sgen-msvc.sh
6040         fi
6041         AC_SUBST(mono_msvc_build_dir)
6042         AC_SUBST(mono_msvc_build_lib_dir)
6043         AC_SUBST(mono_msvc_build_bin_dir)
6044 else
6045         mono_runtime=mono/mini/mono
6046         mono_runtime_wrapper=$mono_runtime
6049 AC_SUBST(mono_runtime)
6050 AC_SUBST(mono_runtime_wrapper)
6052 CSC_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/csc.exe
6053 VBCS_LOCATION=`cd $srcdir && pwd`/external/roslyn-binaries/Microsoft.Net.Compilers/3.3.0/VBCSCompiler.exe
6055 if test $csc_compiler = mcs; then
6056   CSC=$mcs_topdir/class/lib/build/mcs.exe
6057 else
6058   CSC=$CSC_LOCATION
6061 AM_CONDITIONAL([CSC_IS_ROSLYN], [test x$csc_compiler != xmcs])
6063 mono_cfg_root=$mono_build_root/runtime
6064 if test x$host_win32 = xyes; then
6065   if test "x$cross_compiling" = "xno"; then
6066     mono_cfg_dir=`cygpath -w -a $mono_cfg_root`\\etc
6067     CSC=`cygpath -m -a $CSC`
6068     CSC_LOCATION=`cygpath -m -a $CSC_LOCATION`
6069     VBCS_LOCATION=`cygpath -m -a $VBCS_LOCATION`
6070   else
6071     mono_cfg_dir=`echo $mono_cfg_root | tr '/' '\\'`\\etc
6072   fi
6073 else
6074   mono_cfg_dir=$mono_cfg_root/etc
6077 if test "x$platform_android" = "xyes"; then
6078   mono_cfg_dir=
6081 AC_SUBST(mono_cfg_dir)
6083 AC_SUBST(CSC)
6085 AC_CONFIG_FILES([po/mcs/Makefile.in])
6087 AC_CONFIG_FILES([acceptance-tests/microbench-perf.sh],[chmod +x acceptance-tests/microbench-perf.sh])
6088 AC_CONFIG_FILES([runtime/mono-wrapper],[chmod +x runtime/mono-wrapper])
6089 AC_CONFIG_FILES([runtime/monodis-wrapper],[chmod +x runtime/monodis-wrapper])
6090 AC_CONFIG_FILES([runtime/bin/mono-hang-watchdog],[chmod +x runtime/bin/mono-hang-watchdog])
6092 AC_CONFIG_COMMANDS([runtime/etc/mono/1.0/machine.config],
6093 [   depth=../../../..
6094     case $srcdir in
6095     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6096     .) reldir=$depth ;;
6097     *) reldir=$depth/$srcdir ;;
6098     esac
6099     $ac_aux_dir/install-sh -d runtime/etc/mono/1.0
6100     cd runtime/etc/mono/1.0
6101     rm -f machine.config
6102     $LN_S $reldir/data/net_1_1/machine.config machine.config
6103     cd $depth
6104 ],[LN_S='$LN_S'])
6106 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/machine.config],
6107 [   depth=../../../..
6108     case $srcdir in
6109     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6110     .) reldir=$depth ;;
6111     *) reldir=$depth/$srcdir ;;
6112     esac
6113     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
6114     cd runtime/etc/mono/2.0
6115     rm -f machine.config
6116     $LN_S $reldir/data/net_2_0/machine.config machine.config
6117     cd $depth
6118 ],[LN_S='$LN_S'])
6120 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/web.config],
6121 [   depth=../../../..
6122     case $srcdir in
6123     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6124     .) reldir=$depth ;;
6125     *) reldir=$depth/$srcdir ;;
6126     esac
6127     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
6128     cd runtime/etc/mono/2.0
6129     rm -f web.config
6130     $LN_S $reldir/data/net_2_0/web.config web.config
6131     cd $depth
6132 ],[LN_S='$LN_S'])
6134 AC_CONFIG_COMMANDS([runtime/etc/mono/browscap.ini],
6135 [   depth=../../..
6136     case $srcdir in
6137     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6138     .) reldir=$depth ;;
6139     *) reldir=$depth/$srcdir ;;
6140     esac
6141     $ac_aux_dir/install-sh -d runtime/etc/mono/
6142     cd runtime/etc/mono/
6143     rm -f browscap.ini
6144     $LN_S $reldir/data/browscap.ini browscap.ini
6145     cd $depth
6146 ],[LN_S='$LN_S'])
6148 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/Browsers/Compat.browser],
6149 [   depth=../../../../..
6150     case $srcdir in
6151     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6152     .) reldir=$depth ;;
6153     *) reldir=$depth/$srcdir ;;
6154     esac
6155     $ac_aux_dir/install-sh -d runtime/etc/mono/2.0/Browsers/
6156     cd runtime/etc/mono/2.0/Browsers
6157     rm -f Compat.browser
6158     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6159     cd $depth
6160 ],[LN_S='$LN_S'])
6162 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/Browsers/Compat.browser],
6163 [   depth=../../../../..
6164     case $srcdir in
6165     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6166     .) reldir=$depth ;;
6167     *) reldir=$depth/$srcdir ;;
6168     esac
6169     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0/Browsers/
6170     cd runtime/etc/mono/4.0/Browsers
6171     rm -f Compat.browser
6172     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6173     cd $depth
6174 ],[LN_S='$LN_S'])
6176 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/Browsers/Compat.browser],
6177 [   depth=../../../../..
6178     case $srcdir in
6179     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6180     .) reldir=$depth ;;
6181     *) reldir=$depth/$srcdir ;;
6182     esac
6183     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5/Browsers/
6184     cd runtime/etc/mono/4.5/Browsers
6185     rm -f Compat.browser
6186     $LN_S $reldir/data/Browsers/Compat.browser Compat.browser
6187     cd $depth
6188 ],[LN_S='$LN_S'])
6190 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/machine.config],
6191 [   depth=../../../..
6192     case $srcdir in
6193     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6194     .) reldir=$depth ;;
6195     *) reldir=$depth/$srcdir ;;
6196     esac
6197     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
6198     cd runtime/etc/mono/4.0
6199     rm -f machine.config
6200     $LN_S $reldir/data/net_4_0/machine.config machine.config
6201     cd $depth
6202 ],[LN_S='$LN_S'])
6204 AC_CONFIG_COMMANDS([runtime/etc/mono/4.0/web.config],
6205 [   depth=../../../..
6206     case $srcdir in
6207     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6208     .) reldir=$depth ;;
6209     *) reldir=$depth/$srcdir ;;
6210     esac
6211     $ac_aux_dir/install-sh -d runtime/etc/mono/4.0
6212     cd runtime/etc/mono/4.0
6213     rm -f web.config
6214     $LN_S $reldir/data/net_4_0/web.config web.config
6215     cd $depth
6216 ],[LN_S='$LN_S'])
6218 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/machine.config],
6219 [   depth=../../../..
6220     case $srcdir in
6221     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6222     .) reldir=$depth ;;
6223     *) reldir=$depth/$srcdir ;;
6224     esac
6225     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
6226     cd runtime/etc/mono/4.5
6227     rm -f machine.config
6228     $LN_S $reldir/data/net_4_5/machine.config machine.config
6229     cd $depth
6230 ],[LN_S='$LN_S'])
6232 AC_CONFIG_COMMANDS([runtime/etc/mono/4.5/web.config],
6233 [   depth=../../../..
6234     case $srcdir in
6235     [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
6236     .) reldir=$depth ;;
6237     *) reldir=$depth/$srcdir ;;
6238     esac
6239     $ac_aux_dir/install-sh -d runtime/etc/mono/4.5
6240     cd runtime/etc/mono/4.5
6241     rm -f web.config
6242     $LN_S $reldir/data/net_4_5/web.config web.config
6243     cd $depth
6244 ],[LN_S='$LN_S'])
6246 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])
6247 AC_CONFIG_COMMANDS([nolock-libtool], [sed -e 's/lock_old_archive_extraction=yes/lock_old_archive_extraction=no/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool])
6248 AC_CONFIG_COMMANDS([clean-llvm], [rm -f llvm/llvm_config.mk])
6251 # Mono.Native Support
6252 # -------------------
6253 # Mono.Native is the new name for both System.Native and System.Security.Cryptography.Apple.
6254 # It is built as a stand-alone shared library and not bundled with the runtime because we
6255 # may need to build two different versions of it.
6257 # Starting with macOS 10.12+ and iOS 10+, Apple introduced a new Unified API for some of the
6258 # crypto primitives that we're using as part of System.Security.Cryptography.Apple.
6260 # On Desktop, we can check at runtime whether the OS version is recent enough and switch
6261 # implementation accordingly.  We build a single `libmono-native` shared library.
6263 # However, on Mobile we cannot have any undefined symbols as this would break Bitcode.
6265 # During the mobile build, we are called with `CFLAGS` containing an explicit minium version flag,
6266 # which is eiter `-mmacosx-version-min=`, `-mios-simulator-version-min=` or `-miphoneos-version-min=`
6267 # depending on platform.
6269 # We build two versions of the shared library:
6270 # - `libmono-native-compat` is built with whichever minimum version is passed to us via `CFLAGS`.
6271 # - `libmono-native-unifed` is built with the minimum version set to macOS 10.12+ / iOS 10+.
6273 # For testing purpuses, there is a function called `mono_native_get_platform_type ()`
6274 # (see mono/native/mono-native-platform.c), which returns a `MonoNativePlatformType` enum value.
6275 # There is also `Mono.MonoNativePlatform.GetPlatformType ()` (see mcs/class/corlib/Test/Mono/MonoNativePlatform.cs).
6277 # This can be called by automated tests both to ensure that the library has been correctly installed and also
6278 # to verify that it's the correct version of it.
6281 AC_MSG_CHECKING([Mono.Native support])
6282 sed_version_pattern='[[0-9]]\{1,2\}\(\.[[0-9]]\{1,2\}\)'
6283 if test x$disable_mono_native = xyes; then
6284         mono_native=no
6285 elif test x$target_osx = xyes; then
6286         MONO_NATIVE_CC=$CC
6287         MONO_NATIVE_CXX=$CXX
6288         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6289         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6290         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6291         MONO_NATIVE_CFLAGS=$CFLAGS
6292         MONO_NATIVE_LDFLAGS=$LDFLAGS
6294         mono_native=yes
6295         MONO_NATIVE_PLATFORM=macos
6296         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_MACOS"
6298         if test x$enable_gss = xyes; then
6299                 MONO_NATIVE_LDFLAGS="$MONO_NATIVE_LDFLAGS -framework GSS"
6300         fi
6302         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer],
6303                 [!(MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12)])
6305         if test x$mono_native_compat = xyes; then
6306                 mono_native_compat=yes
6307                 mono_native_text="Mac OSX (compat + unified v10.12)"
6308                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6309                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6310                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6311                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6312                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6314                 sed_remove_mac_version_pattern="s/-mmacosx-version-min=$sed_version_pattern//g"
6315                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6316                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6317                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6318                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6319                 MONO_NATIVE_UNIFIED_LDFLAGS="`echo $LDFLAGS | sed -e $sed_remove_mac_version_pattern` -mmacosx-version-min=10.12"
6320         else
6321                 mono_native_compat=no
6322                 mono_native_text="Mac OSX"
6323         fi
6324 elif test x$mono_native_platform_ios = xyes; then
6325         AC_MONO_APPLE_TARGET(TARGET_OS_SIMULATOR, [mono_native_ios_sim=yes], [mono_native_ios_sim=no])
6327         AC_MONO_APPLE_TARGET(TARGET_OS_IOS, [
6328                 if test x$mono_native_ios_sim = xyes; then
6329                         mono_native_ios_target=ios-simulator
6330                         mono_native_text="iOS Simulator"
6331                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6332                 else
6333                         mono_native_ios_target=iphoneos
6334                         mono_native_text="iOS Device"
6335                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_IPHONE | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6336                 fi
6337                 mono_native_unified_version="10.0"
6338                 mono_native_compat_check="__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_10_0"
6339         ], [
6340                 AC_MONO_APPLE_TARGET(TARGET_OS_TV, [
6341                         if test x$mono_native_ios_sim = xyes; then
6342                                 mono_native_ios_target=tvos-simulator
6343                                 mono_native_text="AppleTV Simulator"
6344                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6345                         else
6346                                 mono_native_ios_target=tvos
6347                                 mono_native_text="AppleTV Device"
6348                                 MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_TV | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6349                         fi
6350                         mono_native_unified_version="10.0"
6351                         mono_native_compat_check="__TV_OS_VERSION_MIN_REQUIRED >= __TVOS_10_0"
6352                 ], [
6353                         AC_MONO_APPLE_TARGET(TARGET_OS_WATCH, [
6354                                 if test x$mono_native_ios_sim = xyes; then
6355                                         mono_native_ios_target=watchos-simulator
6356                                         mono_native_text="Apple Watch Simulator"
6357                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_SIMULATOR"
6358                                 else
6359                                         mono_native_ios_target=watchos
6360                                         mono_native_text="Apple Watch Device"
6361                                         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_IOS | MONO_NATIVE_PLATFORM_TYPE_WATCH | MONO_NATIVE_PLATFORM_TYPE_DEVICE"
6362                                 fi
6363                                 mono_native_unified_version="5.0"
6364                                 mono_native_compat_check="__WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_5_0"
6365                         ], [
6366                                 AC_MSG_ERROR([Unknown iOS Target])
6367                         ])
6368                 ])
6369         ])
6371         AC_MONO_APPLE_AVAILABLE(mono_native_compat, [whether we need the compatibility layer], [!($mono_native_compat_check)])
6373         if test x$with_bitcode = xyes; then
6374                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -no-undefined -fatal_warnings"
6375                 MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6376         else
6377                 mono_native_ldflags="-framework CoreFoundation -framework Foundation -fatal_warnings"
6378         fi
6380         if test x$enable_gss = xyes; then
6381                 mono_native_ldflags="$mono_native_ldflags -framework GSS"
6382         fi
6384         MONO_NATIVE_CC=$CC
6385         MONO_NATIVE_CXX=$CXX
6386         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6387         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6388         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6389         MONO_NATIVE_CFLAGS=$CFLAGS
6390         MONO_NATIVE_LDFLAGS="$LDFLAGS $mono_native_ldflags"
6392         if test x$mono_native_compat = xyes; then
6393                 mono_native_text="$mono_native_text (compat + unified v$mono_native_unified_version)"
6394                 MONO_NATIVE_COMPAT_CCASFLAGS=$MONO_NATIVE_CCASFLAGS
6395                 MONO_NATIVE_COMPAT_CPPFLAGS=$MONO_NATIVE_CPPFLAGS
6396                 MONO_NATIVE_COMPAT_CXXFLAGS=$MONO_NATIVE_CXXFLAGS
6397                 MONO_NATIVE_COMPAT_CFLAGS=$MONO_NATIVE_CFLAGS
6398                 MONO_NATIVE_COMPAT_LDFLAGS=$MONO_NATIVE_LDFLAGS
6400                 sed_remove_ios_version_pattern="s/-m\(.*\)-version-min=$sed_version_pattern//g"
6401                 MONO_NATIVE_UNIFIED_CCASFLAGS="`echo $CCASFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6402                 MONO_NATIVE_UNIFIED_CPPFLAGS="`echo $CPPFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6403                 MONO_NATIVE_UNIFIED_CXXFLAGS="`echo $CXXFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6404                 MONO_NATIVE_UNIFIED_CFLAGS="`echo $CFLAGS | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6405                 MONO_NATIVE_UNIFIED_LDFLAGS="`echo $LDFLAGS $mono_native_ldflags | sed -e $sed_remove_ios_version_pattern` -m$mono_native_ios_target-version-min=$mono_native_unified_version"
6406         fi
6408         mono_native=yes
6409         MONO_NATIVE_PLATFORM=ios
6410 elif test x$host_linux = xyes; then
6411         mono_native_text="Linux"
6412         MONO_NATIVE_CC=$CC
6413         MONO_NATIVE_CXX=$CXX
6414         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6415         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6416         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6417         MONO_NATIVE_CFLAGS=$CFLAGS
6418         MONO_NATIVE_LDFLAGS=$LDFLAGS
6419         if test x$enable_gss = xyes; then
6420                 MONO_NATIVE_LDFLAGS="$MONO_NATIVE_LDFLAGS -lgssapi_krb5"
6421         else
6422                 AC_MSG_WARN([GSS is not enabled, it requires libkrb5-dev package])
6423         fi
6424         mono_native=yes
6425         mono_native_compat=no
6426         MONO_NATIVE_PLATFORM=linux
6428         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6429 elif test x$target_wasm = xyes; then
6430         mono_native_text="wasm"
6431         MONO_NATIVE_CC=$CC
6432         MONO_NATIVE_CXX=$CXX
6433         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6434         # The system.native code uses _WASM_ to check for wasm
6435         MONO_NATIVE_CPPFLAGS="$CPPFLAGS -D_WASM_"
6436         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6437         MONO_NATIVE_CFLAGS=$CFLAGS
6438         MONO_NATIVE_LDFLAGS=$LDFLAGS
6440         mono_native=yes
6441         mono_native_compat=no
6442         MONO_NATIVE_PLATFORM=linux
6444         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_LINUX"
6445 elif case $host_os in aix*|os400*) true;; *) false;; esac; then
6446         mono_native_text="AIX"
6447         MONO_NATIVE_CC=$CC
6448         MONO_NATIVE_CXX=$CXX
6449         MONO_NATIVE_CCASFLAGS=$CCASFLAGS
6450         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6451         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6452         MONO_NATIVE_CFLAGS=$CFLAGS
6453         dnl nosymbolic- is a hack in case -G for linking is used, as -G seems
6454         dnl to change the way unresolved symbols work on library load in an
6455         dnl incompatible manner. (as references to runtime functions are
6456         dnl resolved later) Default params otherwise are that, so seems OK.
6457         dnl Likewise, we don't seem to need to cover the entire runtime with
6458         dnl it either, on both AIX and PASE. -brtl from -G does seem to spew
6459         dnl Big Scary TOC Warnings (tm) from the linker, but it doesn't seem
6460         dnl problematic with gcc's -mminimal-toc.
6461         dnl ----
6462         dnl flock in AIX exists in libbsd (not the same as freedesktop.org
6463         dnl libbsd) which Mono.Native needs.
6464         dnl Because of the way that the library is built by default, unresolved
6465         dnl references are kept and resolved at runtime. Often, the dependency
6466         dnl chain means libbsd is loaded anyways, but not necessarily. It's
6467         dnl better to explicitly link it, even though it has it shadows libc's
6468         dnl ioctl with its own. (As for the other unresolved imports, those
6469         dnl should be provided by the Mono runtime loaded.)
6470         MONO_NATIVE_LDFLAGS="$LDFLAGS -lbsd -Wl,-bnosymbolic-"
6472         mono_native=yes
6473         mono_native_compat=no
6474         MONO_NATIVE_PLATFORM=aix
6476         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_AIX"
6477 elif case $host_os in freebsd*) true;; *) false;; esac; then
6478         mono_native_text="FreeBSD"
6479         MONO_NATIVE_CC=$CC
6480         MONO_NATIVE_CXX=$CXX
6481         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6482         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6483         MONO_NATIVE_CFLAGS=$CFLAGS
6484         MONO_NATIVE_LDFLAGS=$LDFLAGS
6486         mono_native=yes
6487         mono_native_compat=no
6488         MONO_NATIVE_PLATFORM=freebsd
6489         AC_MSG_CHECKING([Mono.Native support])
6490         AC_MSG_RESULT(freebsd)
6492         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_FREEBSD"
6493 elif case $host_os in netbsd*) true;; *) false;; esac; then
6494         mono_native_text="NetBSD"
6495         MONO_NATIVE_CC=$CC
6496         MONO_NATIVE_CXX=$CXX
6497         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6498         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6499         MONO_NATIVE_CFLAGS=$CFLAGS
6500         MONO_NATIVE_LDFLAGS=$LDFLAGS
6502         mono_native=yes
6503         mono_native_compat=no
6504         MONO_NATIVE_PLATFORM=netbsd
6505         AC_MSG_CHECKING([Mono.Native support])
6506         AC_MSG_RESULT(netbsd)
6508         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_NETBSD"
6509 elif case $host_os in haiku*) true;; *) false;; esac; then
6510         mono_native_text="Haiku"
6511         MONO_NATIVE_CC=$CC
6512         MONO_NATIVE_CXX=$CXX
6513         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6514         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6515         MONO_NATIVE_CFLAGS=$CFLAGS
6516         MONO_NATIVE_LDFLAGS=$LDFLAGS
6518         mono_native=yes
6519         mono_native_compat=no
6520         MONO_NATIVE_PLATFORM=haiku
6521         AC_MSG_CHECKING([Mono.Native support])
6522         AC_MSG_RESULT(haiku)
6524         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_HAIKU"
6525 elif test x$platform_android = xyes; then
6526         mono_native_text="Android"
6527         MONO_NATIVE_CC=$CC
6528         MONO_NATIVE_CXX=$CXX
6529         MONO_NATIVE_CPPFLAGS=$CPPFLAGS
6530         MONO_NATIVE_CXXFLAGS=$CXXFLAGS
6531         MONO_NATIVE_CFLAGS=$CFLAGS
6532         MONO_NATIVE_LDFLAGS=$LDFLAGS
6533         MONO_NATIVE_LIBADD="../mini/$LIBMONO_LA"
6535         mono_native=yes
6536         mono_native_compat=no
6537         MONO_NATIVE_PLATFORM=android
6539         MONO_NATIVE_PLATFORM_TYPE="MONO_NATIVE_PLATFORM_TYPE_ANDROID"
6540 else
6541         mono_native=no
6542         mono_native_text="no"
6545 AC_MSG_RESULT($mono_native_text)
6547 if test x$mono_native_compat = xyes; then
6548         MONO_NATIVE_LIBRARY_NAME=libmono-native-compat
6549 else
6550         MONO_NATIVE_LIBRARY_NAME=libmono-native
6553 AC_SUBST(MONO_NATIVE_PLATFORM)
6554 AC_SUBST(MONO_NATIVE_CC)
6555 AC_SUBST(MONO_NATIVE_CXX)
6556 AC_SUBST(MONO_NATIVE_CCASFLAGS)
6557 AC_SUBST(MONO_NATIVE_COMPAT_CCASFLAGS)
6558 AC_SUBST(MONO_NATIVE_UNIFIED_CCASFLAGS)
6559 AC_SUBST(MONO_NATIVE_CPPFLAGS)
6560 AC_SUBST(MONO_NATIVE_COMPAT_CPPFLAGS)
6561 AC_SUBST(MONO_NATIVE_UNIFIED_CPPFLAGS)
6562 AC_SUBST(MONO_NATIVE_CXXFLAGS)
6563 AC_SUBST(MONO_NATIVE_COMPAT_CXXFLAGS)
6564 AC_SUBST(MONO_NATIVE_UNIFIED_CXXFLAGS)
6565 AC_SUBST(MONO_NATIVE_CFLAGS)
6566 AC_SUBST(MONO_NATIVE_COMPAT_CFLAGS)
6567 AC_SUBST(MONO_NATIVE_UNIFIED_CFLAGS)
6568 AC_SUBST(MONO_NATIVE_LDFLAGS)
6569 AC_SUBST(MONO_NATIVE_COMPAT_LDFLAGS)
6570 AC_SUBST(MONO_NATIVE_UNIFIED_LDFLAGS)
6571 AC_SUBST(MONO_NATIVE_LIBRARY_NAME)
6572 AC_SUBST(MONO_NATIVE_LIBADD)
6574 AM_CONDITIONAL(MONO_NATIVE, test x$mono_native = xyes)
6575 AM_CONDITIONAL(MONO_NATIVE_COMPAT, test x$mono_native_compat = xyes)
6576 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_MACOS, test x$MONO_NATIVE_PLATFORM = xmacos)
6577 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_IOS, test x$MONO_NATIVE_PLATFORM = xios)
6578 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_LINUX, test x$MONO_NATIVE_PLATFORM = xlinux)
6579 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_AIX, test x$MONO_NATIVE_PLATFORM = xaix)
6580 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_ANDROID, test x$MONO_NATIVE_PLATFORM = xandroid)
6581 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_FREEBSD, test x$MONO_NATIVE_PLATFORM = xfreebsd)
6582 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_NETBSD, test x$MONO_NATIVE_PLATFORM = xnetbsd)
6583 AM_CONDITIONAL(MONO_NATIVE_PLATFORM_HAIKU, test x$MONO_NATIVE_PLATFORM = xhaiku)
6585 MONO_NATIVE_PLATFORM_TYPE_COMPAT="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_COMPAT"
6586 MONO_NATIVE_PLATFORM_TYPE_UNIFIED="$MONO_NATIVE_PLATFORM_TYPE | MONO_NATIVE_PLATFORM_TYPE_UNIFIED"
6587 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE)
6588 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_COMPAT)
6589 AC_SUBST(MONO_NATIVE_PLATFORM_TYPE_UNIFIED)
6591 ### C++ Linker selection
6593 # We have to lie to autotools, sometimes.
6595 # If we're building with llvm compiled into Mono, set MONO_CXXLD to CXX,
6596 # otherwise to CC.  We want C linking even if we're compiling with C++ enabled
6597 # because we do not want to link inthe C++ runtime library (-lstdc++ or -lc++),
6598 # except if we're linking with LLVM which relies on it.
6600 # Explanation of the hack:
6602 # According to
6603 # https://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html,
6604 # automake chooses the linker that it used to compile a target based on the
6605 # _SOURCES for that target.  If the target is comprised of only C code, it
6606 # chooses the C linker (on Linux and OSX this is just gcc or clang called with
6607 # linker arguments and a -o).  If the target _SOURCES include at least one C++ file, 
6608 # then automake chooses the C++ linker (usually g++ or clang++ called with linker arguments and -o).
6610 # The problem for Mono is that we don't want the C++ runtime library (libstdc++
6611 # or libc++) linked in - even when Mono is written in C++, we take care not to
6612 # require the runtime library.  As a result, we don't want g++ or clang++ to do
6613 # the linking.  On the other hand if LLVM is enabled, then we _must_ use the
6614 # C++ linker - LLVM doesn't have the same restrictions.
6616 # So the trick is we set MONO_CXXLD here to $CXX or $CC and in
6617 #  mono/mini/Makefile.am.in we have CCLD=$MONO_CXXLD and CXXLD=$MONO_CXXLD which bypasses
6618 #  automake's autodetection and lets us use the linker that we want.
6620 if test "x$enable_llvm_runtime" = "xyes"; then
6621         AC_SUBST(MONO_CXXLD, [$CXX])
6622 else
6623         AC_SUBST(MONO_CXXLD, [$CC])
6626 ### Set -Werror options
6628 # Anything involving -Werror must be done late because autoconf depends on compiling with warnings to be success.
6630 if test x"$GCC" = xyes; then
6632         if test "x$with_jemalloc" != "xyes"; then
6634                 # incompatible-pointer-types requires gcc circa 5.x
6636                 ORIG_CFLAGS=$CFLAGS
6637                 CFLAGS="$CFLAGS -Wincompatible-pointer-types -Werror"
6638                 AC_MSG_CHECKING(for -Wincompatible-pointer-types option to gcc)
6639                 AC_TRY_COMPILE([],[
6640                 ], [
6641                         AC_MSG_RESULT(yes)
6642                         CFLAGS="$ORIG_CFLAGS -Werror=incompatible-pointer-types"
6643                 ], [
6644                         AC_MSG_RESULT(no)
6645                         CFLAGS=$ORIG_CFLAGS
6646                 ])
6648                 CFLAGS="$CFLAGS -Werror=return-type"
6649         fi
6651         # Implicit function declarations are not 64 bit safe
6652         # Do this late, since this causes lots of configure tests to fail
6653         CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
6654         # jay has a lot of implicit declarations
6655         JAY_CFLAGS="-Wno-implicit-function-declaration"
6658 # zlib/configure checks if this program compiles and if so
6659 # defines _LARGEFILE64_SOURCE on the compiler command line (not config.h).
6661 AC_MSG_CHECKING([for large file support])
6662 AC_COMPILE_IFELSE(
6663         [AC_LANG_SOURCE([
6664                 #include <sys/types.h>
6665                 off64_t dummy = 0;
6666         ])], [
6667                 AC_MSG_RESULT(yes)
6668                 # FIXME The ramifications of _LARGEFILE64_SOURCE are not understood.
6669                 # ZLIB_CFLAGS="$ZLIB_CFLAGS -D_LARGEFILE64_SOURCE=1"
6670         ], [
6671                 AC_MSG_RESULT(no)
6672         ])
6674 AC_SUBST(CFLAGS)
6675 AC_SUBST(CPPFLAGS)
6676 AC_SUBST(LDFLAGS)
6677 AC_SUBST(ZLIB_CFLAGS)
6679 # Update all submodules recursively to ensure everything is checked out
6680 if test "x$with_core" != "xonly"; then
6681         (cd $srcdir && scripts/update_submodules.sh)
6684 AC_OUTPUT([
6685 Makefile
6686 mono-uninstalled.pc
6687 acceptance-tests/Makefile
6688 llvm/Makefile
6689 scripts/mono-find-provides
6690 scripts/mono-find-requires
6691 mk/Makefile
6692 mono/Makefile
6693 mono/btls/Makefile
6694 mono/native/Makefile
6695 mono/utils/Makefile
6696 mono/utils/jemalloc/Makefile
6697 mono/metadata/Makefile
6698 mono/dis/Makefile
6699 mono/cil/Makefile
6700 mono/arch/Makefile
6701 mono/arch/x86/Makefile
6702 mono/arch/amd64/Makefile
6703 mono/arch/ppc/Makefile
6704 mono/arch/sparc/Makefile
6705 mono/arch/s390x/Makefile
6706 mono/arch/arm/Makefile
6707 mono/arch/arm64/Makefile
6708 mono/arch/mips/Makefile
6709 mono/arch/riscv/Makefile
6710 mono/sgen/Makefile
6711 mono/native/platform-type.c
6712 mono/native/platform-type-compat.c
6713 mono/native/platform-type-unified.c
6714 mono/tests/Makefile
6715 mono/tests/assembly-load-reference/Makefile
6716 mono/tests/tests-config
6717 mono/tests/gc-descriptors/Makefile
6718 mono/tests/testing_gac/Makefile
6719 mono/tests/fullaot-mixed/Makefile
6720 mono/tests/llvmonly-mixed/Makefile
6721 mono/unit-tests/Makefile
6722 mono/benchmark/Makefile
6723 mono/mini/Makefile
6724 mono/profiler/Makefile
6725 mono/eglib/Makefile
6726 mono/eglib/eglib-config.h
6727 mono/eglib/test/Makefile
6728 m4/Makefile
6729 ikvm-native/Makefile
6730 scripts/Makefile
6731 man/Makefile
6732 docs/Makefile
6733 data/Makefile
6734 data/net_2_0/Makefile
6735 data/net_4_0/Makefile
6736 data/net_4_5/Makefile
6737 data/net_2_0/Browsers/Makefile
6738 data/net_4_0/Browsers/Makefile
6739 data/net_4_5/Browsers/Makefile
6740 data/mint.pc
6741 data/mono-2.pc
6742 data/monosgen-2.pc
6743 data/mono.pc
6744 data/mono-cairo.pc
6745 data/mono-options.pc
6746 data/mono-lineeditor.pc
6747 data/monodoc.pc
6748 data/dotnet.pc
6749 data/dotnet35.pc
6750 data/wcf.pc
6751 data/cecil.pc
6752 data/system.web.extensions_1.0.pc
6753 data/system.web.extensions.design_1.0.pc
6754 data/system.web.mvc.pc
6755 data/system.web.mvc2.pc
6756 data/system.web.mvc3.pc
6757 data/aspnetwebstack.pc
6758 data/reactive.pc
6759 samples/Makefile
6760 support/Makefile
6761 data/config
6762 tools/Makefile
6763 tools/locale-builder/Makefile
6764 tools/sgen/Makefile
6765 tools/pedump/Makefile
6766 tools/mono-hang-watchdog/Makefile
6767 runtime/Makefile
6768 msvc/Makefile
6769 po/Makefile
6770 netcore/corerun/Makefile
6773 if test x$host_win32 = xyes; then
6774    # Get rid of 'cyg' prefixes in library names
6775    sed -e "s/\/cyg\//\/\//" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6776    # libtool seems to inherit -mno-cygwin from our CFLAGS, and uses it to compile its executable
6777    # wrapper scripts which use exec(). gcc has no problem compiling+linking this, but the resulting
6778    # executable doesn't work...
6779    sed -e "s,-mno-cygwin,,g" libtool > libtool.new; mv libtool.new libtool; chmod 755 libtool
6782 if test x$host_darwin = xyes; then
6783    # This doesn't seem to be required and it slows down parallel builds
6784    sed -e 's,lock_old_archive_extraction=yes,lock_old_archive_extraction=no,g' < libtool > libtool.new && mv libtool.new libtool && chmod +x libtool
6787 force_enable_compiler_server=no;
6789 AC_MSG_CHECKING([compiler server])
6790 AC_ARG_WITH(compiler-server, [  --with-compiler-server=yes,no,default,force      Enables or disables compiler server],[
6791    if test x$withval = xyes; then
6792        enable_compiler_server=yes;
6793    # force will bypass any automatic disables to allow you to test the compiler server
6794    #  in scenarios where it is disabled
6795    elif test x$withval = xforce; then
6796        enable_compiler_server=yes;
6797        force_enable_compiler_server=yes;
6798    elif test x$withval = xno; then
6799        enable_compiler_server=no;
6800    elif test x$withval = xdefault; then
6801        enable_compiler_server=yes;
6802    else
6803        AC_MSG_ERROR([You must supply one of "yes", "no", "default" or "force" to the --with-compiler-server option])
6804    fi
6805 ],[enable_compiler_server=yes])
6807 AC_MSG_RESULT($enable_compiler_server)
6809 if test x$enable_compiler_server = xyes; then
6810    if test x$force_enable_compiler_server = xyes; then
6811        AC_MSG_WARN([forcing compiler server to stay enabled])
6812    elif test x$host_darwin = xyes || test x$host_win32 = xyes; then
6813        AC_MSG_WARN([compiler server temporarily disabled on darwin and win32])
6814        enable_compiler_server=no;
6815    elif test x$csc_compiler = xmcs; then
6816        AC_MSG_WARN([mcs does not support the compiler server])
6817        enable_compiler_server=no;
6818    fi
6822   case $prefix in
6823   NONE) prefix=$ac_default_prefix ;;
6824   esac
6825   case $exec_prefix in
6826   NONE) exec_prefix='${prefix}' ;;
6827   esac
6829   #
6830   # If we are cross compiling, we don't build in the mcs/ tree.  Let us not clobber
6831   # any existing config.make.  This allows people to share the same source tree
6832   # with different build directories, one native and one cross
6833   #
6834   if test x$cross_compiling = xno && test x$enable_mcs_build != xno; then
6836     test -w $mcs_topdir/build || chmod +w $mcs_topdir/build
6838     echo "prefix=$prefix" > $mcs_topdir/build/config.make
6839     echo "exec_prefix=$exec_prefix" >> $mcs_topdir/build/config.make
6840     echo "sysconfdir=$sysconfdir" >> $mcs_topdir/build/config.make
6841     echo 'mono_libdir=${exec_prefix}/lib' >> $mcs_topdir/build/config.make
6842     echo "mono_build_root=$mono_build_root" >> $mcs_topdir/build/config.make
6843     echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $mcs_topdir/build/config.make
6844     echo "JAY_CFLAGS = $JAY_CFLAGS" >> $mcs_topdir/build/config.make
6845     echo "VERSION = $VERSION" >> $mcs_topdir/build/config.make
6847     case $INSTALL in
6848     [[\\/$]]* | ?:[[\\/]]* ) mcs_INSTALL=$INSTALL ;;
6849     *) mcs_INSTALL=$mono_build_root/$INSTALL ;;
6850     esac
6852     echo "INSTALL = $mcs_INSTALL" >> $mcs_topdir/build/config.make
6854     export VERSION
6855     [myver=$($AWK 'BEGIN {
6856       split (ENVIRON["VERSION"] ".0.0.0", vsplit, ".")
6857       if(length(vsplit [1]) > 4) {
6858         split (substr(ENVIRON["VERSION"], 0, 4) "." substr(ENVIRON["VERSION"], 5) ".0.0", vsplit, ".")
6859       }
6860       print vsplit [1] "." vsplit [2] "." vsplit [3] "." vsplit [4]
6861     }')]
6863     echo "MONO_VERSION = $myver" >> $mcs_topdir/build/config.make
6864     echo "MONO_CORLIB_VERSION = $MONO_CORLIB_VERSION" >> $mcs_topdir/build/config.make
6866     if test x$host_darwin = xyes; then
6867       echo "BUILD_PLATFORM = macos" >> $mcs_topdir/build/config.make
6868       echo "HOST_PLATFORM ?= macos" >> $mcs_topdir/build/config.make
6869       echo "XTEST_PLATFORM ?= osx" >> $mcs_topdir/build/config.make
6870     elif test x$host_win32 = xyes; then
6871       echo "BUILD_PLATFORM = win32" >> $mcs_topdir/build/config.make
6872       echo "HOST_PLATFORM ?= win32" >> $mcs_topdir/build/config.make
6873       echo "XTEST_PLATFORM ?= windows" >> $mcs_topdir/build/config.make
6874     elif test x$host_linux = xyes; then
6875       echo "BUILD_PLATFORM = linux" >> $mcs_topdir/build/config.make
6876       echo "HOST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6877       echo "XTEST_PLATFORM ?= linux" >> $mcs_topdir/build/config.make
6878     else
6879       echo "BUILD_PLATFORM = unix" >> $mcs_topdir/build/config.make
6880       echo "HOST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6881       echo "XTEST_PLATFORM ?= unix" >> $mcs_topdir/build/config.make
6882     fi
6884     echo "PLATFORM_AOT_PREFIX = $PLATFORM_AOT_PREFIX" >> $mcs_topdir/build/config.make
6885     if test "x$PLATFORM_AOT_SUFFIX" != "x"; then
6886       echo "PLATFORM_AOT_SUFFIX = $PLATFORM_AOT_SUFFIX" >> $mcs_topdir/build/config.make
6887     fi
6889         if test x$AOT_SUPPORTED = xyes -a x$enable_system_aot = xdefault; then
6890            enable_system_aot=yes
6891         fi
6893     if test x$host_win32 = xno -a x$enable_system_aot = xyes; then
6894       echo "ENABLE_AOT = 1" >> $mcs_topdir/build/config.make
6895     fi
6897     if test x$DISABLE_MCS_DOCS = xyes; then
6898       echo "DISABLE_MCS_DOCS = yes" >> $mcs_topdir/build/config.make
6899     fi
6901     if test x$has_extension_module != xno; then
6902         echo "EXTENSION_MODULE = 1" >> $srcdir/$mcsdir/build/config.make
6903     fi
6904     
6905     echo "DEFAULT_PROFILE = $default_profile" >> $srcdir/$mcsdir/build/config.make
6906     
6907     if test "x$test_bcl_opt" = "xyes"; then    
6908       echo "BCL_OPTIMIZE = 1" >> $srcdir/$mcsdir/build/config.make
6909     fi
6911     echo "STANDALONE_CSC_LOCATION=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6912     echo "SERVER_CSC_LOCATION?=$CSC_LOCATION" >> $srcdir/$mcsdir/build/config.make
6913     echo "VBCS_LOCATION?=$VBCS_LOCATION" >> $srcdir/$mcsdir/build/config.make
6915     if test $csc_compiler = mcs; then
6916       echo "MCS_MODE = 1" >> $srcdir/$mcsdir/build/config.make
6917     fi
6919     if test "x$AOT_BUILD_FLAGS" != "x" ; then
6920       echo "AOT_RUN_FLAGS=$AOT_RUN_FLAGS" >> $srcdir/$mcsdir/build/config.make
6921       echo "AOT_BUILD_ATTRS=$AOT_BUILD_ATTRS" >> $srcdir/$mcsdir/build/config.make
6923       if test "x$internal_llvm" != "xno" && test "x$enable_llvm_msvc_only" = "xno"; then
6924         echo "AOT_BUILD_FLAGS=$AOT_BUILD_FLAGS,$MONO_LLVM_PATH_OPTION" >> $srcdir/$mcsdir/build/config.make
6925       else
6926         echo "AOT_BUILD_FLAGS=$AOT_BUILD_FLAGS" >> $srcdir/$mcsdir/build/config.make
6927       fi
6928     fi
6930     if test "x$AOT_MODE" != "x" ; then
6931       echo "AOT_MODE=$AOT_MODE" >> $srcdir/$mcsdir/build/config.make
6932     fi
6934     if test "x$enable_btls" = "xyes"; then
6935       echo "HAVE_BTLS=1" >> $srcdir/$mcsdir/build/config.make
6936     fi
6938     if test "x$mono_native" = "xyes"; then
6939       echo "MONO_NATIVE_SUPPORTED=true" >> $srcdir/$mcsdir/build/config.make
6940     else
6941       echo "MONO_NATIVE_SUPPORTED=false" >> $srcdir/$mcsdir/build/config.make
6942     fi
6944     if test x$mono_native_compat = xyes; then
6945       echo "MONO_NATIVE_USING_COMPAT=true" >> $srcdir/$mcsdir/build/config.make
6946     else
6947       echo "MONO_NATIVE_USING_COMPAT=false" >> $srcdir/$mcsdir/build/config.make
6948     fi
6950     echo "MONO_NATIVE_PLATFORM_TYPE=$MONO_NATIVE_PLATFORM_TYPE" >> $srcdir/$mcsdir/build/config.make
6951     echo "MONO_NATIVE_PLATFORM=$MONO_NATIVE_PLATFORM" >> $srcdir/$mcsdir/build/config.make
6952     if test x$enable_compiler_server = xyes; then
6953       echo "ENABLE_COMPILER_SERVER?=1" >> $srcdir/$mcsdir/build/config.make
6954     else
6955       echo "ENABLE_COMPILER_SERVER?=0" >> $srcdir/$mcsdir/build/config.make
6956     fi
6957     echo "COMPILER_SERVER_PIPENAME?=monomake" >> $srcdir/$mcsdir/build/config.make
6959         if test x$enable_msvc_only = xyes; then
6960                 echo "ENABLE_MSVC_ONLY=1" >> $srcdir/$mcsdir/build/config.make
6961         fi
6963   fi
6967 libgdiplus_msg=${libgdiplus_loc:-assumed to be installed}
6969 btls_platform_string=
6970 if test x$enable_btls = xyes; then
6971         if test x$btls_android = xyes; then
6972                 btls_platform_string=" (android:$BTLS_PLATFORM)"
6973         else
6974                 btls_platform_string=" ($BTLS_PLATFORM)"
6975         fi
6978 thread_suspend_msg=
6979 if test x$buildsgen = xyes; then
6980         if test x$enable_cooperative_suspend != xno; then
6981                 thread_suspend_msg="Suspend:       Cooperative"
6982         elif test x$enable_hybrid_suspend != xno; then
6983                 thread_suspend_msg="Suspend:       Hybrid"
6984         else
6985                 thread_suspend_msg="Suspend:       Preemptive"
6986         fi
6989 if test "x$with_core" = "xonly"; then
6990   if test ! -d netcore; then
6991     # Out of tree builds
6992     mkdir -p netcore
6993     echo "all:" > netcore/Makefile
6994   fi
6995   echo "VERSION = $VERSION" > netcore/config.make
6996   echo "RID = $RID" >> netcore/config.make
6997   echo "COREARCH = $COREARCH" >> netcore/config.make
6998   echo "CORETARGETS = $CORETARGETS" >> netcore/config.make
6999   echo "MONO_CORLIB_VERSION = $MONO_CORLIB_VERSION" >> netcore/config.make
7001   if test x$build_darwin = xyes; then
7002     echo "HOST_PLATFORM ?= macos" >> netcore/config.make
7003   elif test x$host_darwin = xyes; then
7004     echo "HOST_PLATFORM ?= macos" >> netcore/config.make
7005   elif test x$host_win32 = xyes; then
7006     echo "HOST_PLATFORM ?= win32" >> netcore/config.make
7007   elif test x$host_linux = xyes; then
7008     echo "HOST_PLATFORM ?= linux" >> netcore/config.make
7009   else
7010     echo "HOST_PLATFORM ?= unix" >> netcore/config.make
7011   fi
7014         
7015 echo "
7016         mcs source:    $mcsdir
7017         C# Compiler:   $csc_compiler
7018         CompilerServer:$enable_compiler_server
7020    Engine:
7021         Host:          $host
7022         Target:        $target
7023         GC:            $gc_msg 
7024         $thread_suspend_msg
7025         TLS:           $with_tls
7026         SIGALTSTACK:   $with_sigaltstack
7027         Engine:        $jit_status
7028         BigArrays:     $enable_big_arrays
7029         DTrace:        $enable_dtrace
7030         LLVM Back End: $enable_llvm (dynamically loaded: $enable_loadedllvm, built in-tree: $internal_llvm, assertions: $enable_llvm_asserts, msvc only: $enable_llvm_msvc_only)
7031         Spectre:       $spectre_mitigation_status
7032         Mono.Native:   $mono_native_text
7034    Libraries:
7035         .NET 4.x:        $with_profile4_x
7036         Xamarin.Android: $with_monodroid
7037         Xamarin.iOS:     $with_monotouch
7038         Xamarin.WatchOS: $with_monotouch_watch
7039         Xamarin.TVOS:    $with_monotouch_tv
7040         Xamarin.Mac:     $with_xammac
7041         Windows AOT:     $with_winaot
7042         Orbis:           $with_orbis
7043         Unreal:          $with_unreal
7044         WebAssembly:     $with_wasm
7045         Test profiles:   AOT Full ($with_testing_aot_full), AOT Hybrid ($with_testing_aot_hybrid), AOT Full Interp ($with_testing_aot_full_interp), Windows Full AOT Interp ($with_testing_winaot_interp)
7046         JNI support:     $jdk_headers_found
7047         libgdiplus:      $libgdiplus_msg
7048         zlib:            $zlib_msg
7049         BTLS:            $enable_btls$btls_platform_string
7050         jemalloc:        $with_jemalloc (always use: $with_jemalloc_always)
7051         crash reporting: $crash_reporting (private crashes: $with_crash_privacy)
7052         .NET Core:       $with_core
7053         $disabled
7055 if test x$with_static_mono = xno -a "x$host_win32" != "xyes"; then
7056    AC_MSG_WARN([Turning off static Mono is a risk, you might run into unexpected bugs])