4 # Gross hack to enable 'make dist' on automake 1.9+tar 1.14.
5 # The extra brackets are to foil regex-based scans.
6 m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
8 AM_CONFIG_HEADER(config.h)
9 AM_INIT_AUTOMAKE(mono,1.1.3)
14 # In case of cygwin, override LN_S, irrespective of what it determines.
15 # The build uses cygwin, but the actual runtime doesn't.
17 *cygwin* ) LN_S='cp -p';;
29 if test -d $srcdir/libgc ; then
36 # These are the flags that need to be stored in the mono.pc file for
37 # compiling code that will embed Mono
41 AC_SUBST(libmono_cflags)
42 AC_SUBST(libmono_ldflags)
44 dnl if linker handles the version script
47 # Set to yes if Unix sockets cannot be created in an anonymous namespace
50 # Thread configuration inspired by sleepycat's db
51 AC_MSG_CHECKING([host platform characteristics])
54 *-*-mingw*|*-*-cygwin*)
56 AC_DEFINE(PLATFORM_WIN32,1,[Platform is Win32])
57 CC="gcc -mno-cygwin -g"
59 # So libgc configure gets -mno-cygwin
61 # latest libgc already defines GC_WIN32_THREADS
62 # CPPFLAGS="$CPPFLAGS -DGC_WIN32_THREADS -DWIN32_THREADS"
63 CPPFLAGS="$CPPFLAGS -DWIN32_THREADS"
73 CPPFLAGS="$CPPFLAGS -D_REENTRANT"
74 libmono_cflags="-D_REENTRANT"
75 LDFLAGS="$LDFLAGS -pthread"
76 libmono_ldflags="-pthread"
81 # these flags will work for all versions of -STABLE
85 if test "x$PTHREAD_CFLAGS" = "x"; then
86 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_FREEBSD_THREADS"
87 libmono_cflags="-D_THREAD_SAFE"
89 CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
90 libmono_cflags="$PTHREAD_CFLAGS"
92 if test "x$PTHREAD_LIBS" = "x"; then
93 LDFLAGS="$LDFLAGS -pthread"
94 libmono_ldflags="-pthread"
96 LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
97 libmono_ldflags="$PTHREAD_LIBS"
100 AC_DEFINE(PTHREAD_POINTER_ID)
102 libgc_threads=pthreads
103 # TLS isn't implemented at all on -STABLE
107 # older versions of -CURRENT will break with these flags but testing
108 # indicates these older versions won't run Mono anyway
112 if test "x$PTHREAD_CFLAGS" = "x"; then
113 CPPFLAGS="$CPPFLAGS -DGC_FREEBSD_THREADS"
116 CPPFLAGS="$CPPFLAGS $PTHREAD_CFLAGS -DGC_FREEBSD_THREADS"
117 libmono_cflags="$PTHREAD_CFLAGS"
119 if test "x$PTHREAD_LIBS" = "x"; then
120 LDFLAGS="$LDFLAGS -lpthread"
121 libmono_ldflags="-lpthread"
123 LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
124 libmono_ldflags="$PTHREAD_LIBS"
127 AC_DEFINE(PTHREAD_POINTER_ID)
129 libgc_threads=pthreads
130 # TLS is only partially implemented on -CURRENT (compiler support
131 # but NOT library support)
138 CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE -DGC_FREEBSD_THREADS"
139 libmono_cflags="-D_THREAD_SAFE"
140 LDFLAGS="$LDFLAGS -pthread"
141 libmono_ldflags="-pthread"
143 AC_DEFINE(PTHREAD_POINTER_ID)
145 libgc_threads=pthreads
149 CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT"
150 libmono_cflags="-D_REENTRANT"
151 libmono_ldflags="-lpthread"
153 libgc_threads=pthreads
157 CPPFLAGS="$CPPFLAGS -DGC_HPUX_THREADS -D_HPUX_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_REENTRANT"
158 CFLAGS="$CFLAGS +ESdbgasm"
159 LDFLAGS="$LDFLAGS -z"
160 libmono_cflags="-D_REENTRANT"
161 libmono_ldflags="-lpthread"
162 libgc_threads=pthreads
167 CPPFLAGS="$CPPFLAGS -DGC_SOLARIS_THREADS -DGC_SOLARIS_PTHREADS -D_REENTRANT"
169 libmono_cflags="-D_REENTRANT"
170 libgc_threads=pthreads
174 CPPFLAGS="$CPPFLAGS -no-cpp-precomp -D_THREAD_SAFE -DGC_MACOSX_THREADS"
175 libmono_cflags="-D_THREAD_SAFE"
176 LDFLAGS="$LDFLAGS -pthread"
177 libmono_ldflags="-pthread"
179 AC_DEFINE(PTHREAD_POINTER_ID)
180 AC_DEFINE(USE_MACH_SEMA)
181 no_version_script=yes
183 libgc_threads=pthreads
186 AC_MSG_WARN([*** Please add $host to configure.in checks!])
193 if test x$need_link_unlink = xyes; then
194 AC_DEFINE(NEED_LINK_UNLINK, 1, [Define if Unix sockets cannot be created in an anonymous namespace])
197 AM_CONDITIONAL(PLATFORM_WIN32, test x$platform_win32 = xyes)
199 AC_CHECK_TOOL(CC, gcc, gcc)
203 dnl We should use AM_PROG_AS, but it's not available on automake/aclocal 1.4
205 # Set ASFLAGS if not already set.
206 : ${CCASFLAGS='$(CFLAGS)'}
210 AC_CHECK_PROG(BISON, bison,yes,no)
211 if test "x$BISON" = "xno";
213 AC_MSG_ERROR([You need to install bison])
216 dnl may require a specific autoconf version
217 dnl AC_PROG_CC_FOR_BUILD
218 dnl CC_FOR_BUILD not automatically detected
221 if test "x$cross_compiling" = "xyes"; then
225 AC_SUBST(CC_FOR_BUILD)
227 AC_SUBST(BUILD_EXEEXT)
234 # Test whenever ld supports -version-script
237 if test "x$lt_cv_prog_gnu_ld" = "xno"; then
238 no_version_script=yes
241 AM_CONDITIONAL(NO_VERSION_SCRIPT, test x$no_version_script = xyes)
243 AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h semaphore.h sys/un.h)
245 AC_CHECK_HEADER(zlib.h, [have_zlib=yes], [have_zlib=no])
247 AM_CONDITIONAL(HAVE_ZLIB, test x$have_zlib = xyes)
249 # for mono/metadata/debug-symfile.c
250 AC_CHECK_HEADERS(elf.h)
253 AC_CHECK_HEADERS(wchar.h)
254 AC_CHECK_HEADERS(ieeefp.h)
255 AC_MSG_CHECKING(for isinf)
256 AC_TRY_COMPILE([#include <math.h>], [
260 AC_DEFINE(HAVE_ISINF, 1, [isinf available])
262 # We'll have to use signals
267 # not 64 bit clean in cross-compile
268 AC_CHECK_SIZEOF(void *, 4)
271 if test x"$GCC" = xyes; then
272 WARN='-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
273 # The runtime code does not respect ANSI C strict aliasing rules
274 CFLAGS="$CFLAGS -fno-strict-aliasing"
276 # The Sun Forte compiler complains about inline functions that access static variables
277 # so disable all inlining.
280 CFLAGS="$CFLAGS -Dinline="
284 CFLAGS="$CFLAGS -g $WARN"
286 # Where's the 'mcs' source tree?
287 if test -d $srcdir/mcs; then
293 mcs_topdir='$(top_srcdir)/'$mcsdir
294 mcs_topdir_from_srcdir='$(top_builddir)/'$mcsdir
296 AC_SUBST([mcs_topdir])
297 AC_SUBST([mcs_topdir_from_srcdir])
299 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
300 if test "x$PKG_CONFIG" = "xno"; then
301 AC_MSG_ERROR([You need to install pkg-config])
304 dnl for use on the build system
305 dnl pkg-config is stupid
306 BUILD_GLIB_CFLAGS=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0`
307 BUILD_GLIB_LIBS=`$PKG_CONFIG --libs glib-2.0 gthread-2.0`
308 AC_SUBST(BUILD_GLIB_CFLAGS)
309 AC_SUBST(BUILD_GLIB_LIBS)
312 AC_ARG_WITH(crosspkgdir, [ --with-crosspkgdir=/path/to/pkg-config/dir],
313 if test x$with_crosspkgdir = "x"; then
314 if test -s $PKG_CONFIG_PATH; then
315 PKG_PATH=$PKG_CONFIG_PATH
318 PKG_PATH=$with_crosspkgdir
319 PKG_CONFIG_PATH=$PKG_PATH
320 export PKG_CONFIG_PATH
324 ## Versions of dependencies
325 GLIB_REQUIRED_VERSION=1.3.11
327 PKG_CHECK_MODULES(BASE_DEPENDENCIES, glib-2.0 >= $GLIB_REQUIRED_VERSION)
329 GLIB_CFLAGS=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0`
330 GLIB_LIBS=`$PKG_CONFIG --libs glib-2.0 gthread-2.0`
331 GMODULE_CFLAGS=`$PKG_CONFIG --cflags gmodule-2.0`
332 GMODULE_LIBS=`$PKG_CONFIG --libs gmodule-2.0`
334 AC_SUBST(GLIB_CFLAGS)
336 AC_SUBST(GMODULE_CFLAGS)
337 AC_SUBST(GMODULE_LIBS)
339 if test x$platform_win32 = xyes; then
340 AC_MSG_CHECKING(for cygwin glib2-dev package)
341 if [ cygcheck --f /usr/lib/libglib-2.0.dll.a | grep -q glib2-devel ]; then
343 AC_MSG_ERROR([Mono cannot be built with the cygwin glib2-devel package installed, because that package doesn't work with -mno-cygwin. Please uninstall it then re-run configure.])
345 AC_MSG_RESULT(not found, ok)
348 AC_MSG_CHECKING(for broken gwin32.h)
349 glib_include=`$PKG_CONFIG --cflags-only-I glib-2.0 | sed -e 's/ -I.*//g' | sed -e 's/-I//g'`
350 if test -f $glib_include/glib/gwin32.h; then
351 if [ grep ftruncate $glib_include/glib/gwin32.h | grep -q define ]; then
352 AC_MSG_RESULT(failed)
354 AC_MSG_ERROR([Your version of gwin32.h is broken and will cause compilation errors when building mono. Please fix it by deleting the line: '$hashmark define ftruncate...' from '$glib_include/glib/gwin32.h' then re-run configure.])
360 AC_ARG_WITH(gc, [ --with-gc=boehm,included,none],[gc=$with_gc],[gc=$gc_default])
362 # Enable support for fast thread-local storage
363 # Some systems have broken support, so we allow to disable it.
364 AC_ARG_WITH(tls, [ --with-tls=__thread,pthread select Thread Local Storage implementation],[],[with_tls=__thread])
366 # Kept for compatibility
367 AC_ARG_WITH(nptl, [ --with-nptl=yes,no deprecated, use --with-tls instead],[],[with_nptl=default])
369 if test "x$with_nptl" != "xdefault"; then
370 if test "x$with_nptl" = "xyes"; then
371 AC_MSG_WARN([--with-nptl=yes is deprecated, use --with-tls=__thread option instead.])
374 if test "x$with_nptl" = "xno"; then
375 AC_MSG_WARN([--with-nptl=no is deprecated, use --with-tls=pthread option instead.])
380 # Enable support for using sigaltstack for SIGSEGV and stack overflow handling
381 # This does not work on some platforms (bug #55253)
382 AC_ARG_WITH(sigaltstack, [ --with-sigaltstack=yes,no enable/disable support for sigaltstack],[],[with_sigaltstack=no])
384 AC_ARG_WITH(static_mono, [ --with-static_mono=yes,no link mono statically to libmono (faster)],[],[with_static_mono=yes])
386 if test "x$enable_static" = "xno"; then
390 AM_CONDITIONAL(STATIC_MONO, test x$with_static_mono != xno)
392 AC_ARG_ENABLE(minimal, [ --enable-minimal=LIST drop support for LIST subsystems.
393 LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, reflection_emit.],
395 for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
396 eval "mono_feature_disable_$feature='yes'"
397 AC_MSG_NOTICE([Disabled support for feature: $feature])
399 disabled="Disabled: $enable_minimal"
402 if test "x$mono_feature_disable_aot" = "xyes"; then
403 AC_DEFINE(DISABLE_AOT, 1, [Disable AOT support])
406 if test "x$mono_feature_disable_profiler" = "xyes"; then
407 AC_DEFINE(DISABLE_PROFILER, 1, [Disable default profiler support])
410 if test "x$mono_feature_disable_decimal" = "xyes"; then
411 AC_DEFINE(DISABLE_DECIMAL, 1, [Disable System.Decimal support])
414 if test "x$mono_feature_disable_pinvoke" = "xyes"; then
415 AC_DEFINE(DISABLE_PINVOKE, 1, [Disable P/Invoke support])
418 if test "x$mono_feature_disable_debug" = "xyes"; then
419 AC_DEFINE(DISABLE_DEBUG, 1, [Disable runtime debugging support])
422 if test "x$mono_feature_disable_reflection_emit" = "xyes"; then
423 AC_DEFINE(DISABLE_REFLECTION_EMIT, 1, [Disable reflection emit support])
432 AC_CHECK_HEADERS(gc.h gc/gc.h, gc_headers=yes)
433 AC_CHECK_LIB(gc, GC_malloc, found_boehm="yes",,$libdl)
435 if test "x$found_boehm" != "xyes"; then
436 AC_MSG_ERROR("GC requested but libgc not found! Install libgc or run configure with --with-gc=none.")
438 if test "x$gc_headers" != "xyes"; then
439 AC_MSG_ERROR("GC requested but header files not found! You may need to install them by hand.")
442 AC_DEFINE(HAVE_BOEHM_GC)
443 AC_SUBST(HAVE_BOEHM_GC)
444 LIBGC_LIBS="-lgc $libdl"
445 LIBGC_STATIC_LIBS="$LIBGC_LIBS"
447 # AC_CHECK_FUNCS does not work for some reason...
448 AC_CHECK_LIB(gc, GC_gcj_malloc, found_gcj_malloc="yes",,$libdl)
449 if test "x$found_gcj_malloc" = "xyes"; then
450 AC_DEFINE(HAVE_GC_GCJ_MALLOC)
452 AC_CHECK_LIB(gc, GC_enable, found_gc_enable="yes",,$libdl)
453 if test "x$found_gc_enable" = "xyes"; then
454 AC_DEFINE(HAVE_GC_ENABLE)
459 AC_CONFIG_SUBDIRS(libgc)
466 LIBGC_CFLAGS='-I$(top_srcdir)/libgc/include'
467 LIBGC_LIBS='$(top_builddir)/libgc/libmonogc.la'
468 LIBGC_STATIC_LIBS='$(top_builddir)/libgc/libmonogc-static.la'
470 AC_DEFINE(HAVE_BOEHM_GC)
471 AC_SUBST(HAVE_BOEHM_GC)
474 AC_DEFINE(USE_INCLUDED_LIBGC)
476 # The included libgc contains GCJ support
477 AC_DEFINE(HAVE_GC_GCJ_MALLOC)
478 AC_DEFINE(HAVE_GC_ENABLE)
482 AC_MSG_WARN("Compiling mono without GC.")
485 AC_MSG_ERROR([Invalid argument to --with-gc.])
490 # tell libgc/configure about what we want
491 ac_configure_args="$ac_configure_args --disable-embed-check --with-libgc-threads=$libgc_threads"
493 AM_CONDITIONAL(INCLUDED_LIBGC, test x$use_included_gc = xyes)
494 AC_SUBST(LIBGC_CFLAGS)
496 AC_SUBST(LIBGC_STATIC_LIBS)
500 dnl End of libgc checks
503 if test x$platform_win32 = xno; then
505 dnl ******************************************************************
506 dnl *** Checks for the IKVM JNI interface library ***
507 dnl ******************************************************************
508 AC_ARG_WITH(ikvm-jni, [ --with-ikvm-jni=yes,no build the IKVM JNI interface library],[with_ikvm_jni=$withval],[with_ikvm_jni=yes])
509 AC_ARG_WITH(jdk, [ --with-jdk=DIRECTORY Use JDK from DIRECTORY],[with_jdk_dir=$withval],[with_jdk_dir=])
512 if test x$with_ikvm_jni = xyes; then
513 AC_MSG_CHECKING([JDK headers])
515 if test x$with_jdk_dir = x; then
516 # Try JAVA_HOME variable
517 if test x$JAVA_HOME != x; then
518 with_jdk_dir=$JAVA_HOME
523 if test -d $with_jdk_dir/include; then
524 jdk_headers_found=yes
526 if test -d $with_jdk_dir/include/linux; then
529 if test -d $with_jdk_dir/include/solaris; then
532 if test -f $with_jdk_dir/include/jni_md.h; then
533 # GNU Classpath sources
544 if test x$jdk_headers_found = xyes; then
545 AC_MSG_RESULT($with_jdk_dir/include $with_jdk_dir/include/$jdk_platform)
547 AC_MSG_RESULT(not found)
550 if test x$jdk_headers_found = xyes; then
551 ikvm_jni_dir=ikvm-jni
552 IKVM_JNI_CFLAGS="-I$with_jdk_dir/include -I$with_jdk_dir/include/$jdk_platform"
556 AC_SUBST(ikvm_jni_dir)
557 AC_SUBST(IKVM_JNI_CFLAGS)
559 AC_CHECK_FUNCS(getgrgid_r)
560 AC_CHECK_FUNCS(getgrnam_r)
561 AC_CHECK_FUNCS(getpwnam_r)
562 AC_CHECK_FUNCS(getpwuid_r)
563 AC_CHECK_FUNCS(getresuid)
564 AC_CHECK_FUNCS(setresuid)
565 AC_CHECK_FUNCS(kqueue)
567 dnl ******************************************************************
568 dnl *** Check for large file support ***
569 dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***
570 dnl ******************************************************************
572 # Check that off_t can represent 2**63 - 1 correctly, working around
573 # potential compiler bugs. Defines LARGE_FILE_SUPPORT, adds $1 to
574 # CPPFLAGS and sets $large_offt to yes if the test succeeds
576 AC_DEFUN(LARGE_FILES, [
577 large_CPPFLAGS=$CPPFLAGS
578 CPPFLAGS="$CPPFLAGS $1"
580 #include <sys/types.h>
582 #define BIG_OFF_T (((off_t)1<<62)-1+((off_t)1<<62))
585 int big_off_t=((BIG_OFF_T%2147483629==721) &&
586 (BIG_OFF_T%2147483647==1));
595 AC_DEFINE(HAVE_LARGE_FILE_SUPPORT)
596 large_CPPFLAGS="$large_CPPFLAGS $1"
601 CPPFLAGS=$large_CPPFLAGS
604 AC_MSG_CHECKING(if off_t is 64 bits wide)
606 if test $large_offt = no; then
607 AC_MSG_CHECKING(if _FILE_OFFSET_BITS=64 gives 64 bit off_t)
608 LARGE_FILES("-D_FILE_OFFSET_BITS=64")
610 if test $large_offt = no; then
611 AC_MSG_WARN([No 64 bit file size support available])
614 dnl *****************************
615 dnl *** Checks for libsocket ***
616 dnl *****************************
617 AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
619 dnl *******************************
620 dnl *** Checks for MSG_NOSIGNAL ***
621 dnl *******************************
622 AC_MSG_CHECKING(for MSG_NOSIGNAL)
623 AC_TRY_COMPILE([#include <sys/socket.h>], [
624 int f = MSG_NOSIGNAL;
628 AC_DEFINE(HAVE_MSG_NOSIGNAL)
630 # We'll have to use signals
634 dnl *****************************
635 dnl *** Checks for SOL_IP ***
636 dnl *****************************
637 AC_MSG_CHECKING(for SOL_IP)
638 AC_TRY_COMPILE([#include <netdb.h>], [
643 AC_DEFINE(HAVE_SOL_IP)
645 # We'll have to use getprotobyname
649 dnl *****************************
650 dnl *** Checks for SOL_IPV6 ***
651 dnl *****************************
652 AC_MSG_CHECKING(for SOL_IPV6)
653 AC_TRY_COMPILE([#include <netdb.h>], [
654 int level = SOL_IPV6;
658 AC_DEFINE(HAVE_SOL_IPV6)
660 # We'll have to use getprotobyname
664 dnl *****************************
665 dnl *** Checks for SOL_TCP ***
666 dnl *****************************
667 AC_MSG_CHECKING(for SOL_TCP)
668 AC_TRY_COMPILE([#include <netdb.h>], [
673 AC_DEFINE(HAVE_SOL_TCP)
675 # We'll have to use getprotobyname
679 dnl *****************************
680 dnl *** Checks for IP_PKTINFO ***
681 dnl *****************************
682 AC_MSG_CHECKING(for IP_PKTINFO)
683 AC_TRY_COMPILE([#include <netdb.h>], [
684 int level = IP_PKTINFO;
688 AC_DEFINE(HAVE_IP_PKTINFO)
693 dnl *********************************
694 dnl *** Check for struct ip_mreqn ***
695 dnl *********************************
696 AC_MSG_CHECKING(for struct ip_mreqn)
697 AC_TRY_COMPILE([#include <netinet/in.h>], [
698 struct ip_mreqn mreq;
699 mreq.imr_address.s_addr = 0;
703 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
705 # We'll just have to try and use struct ip_mreq
707 AC_MSG_CHECKING(for struct ip_mreq)
708 AC_TRY_COMPILE([#include <netinet/in.h>], [
710 mreq.imr_interface.s_addr = 0;
714 AC_DEFINE(HAVE_STRUCT_IP_MREQ)
716 # No multicast support
721 dnl **********************************
722 dnl *** Check for gethostbyname2_r ***
723 dnl **********************************
724 AC_MSG_CHECKING(for gethostbyname2_r)
725 AC_TRY_LINK([#include <netdb.h>], [
726 gethostbyname2_r(NULL,0,NULL,NULL,0,NULL,NULL);
730 AC_DEFINE(HAVE_GETHOSTBYNAME2_R)
735 dnl *****************************
736 dnl *** Checks for libnsl ***
737 dnl *****************************
738 AC_CHECK_LIB(nsl, gethostbyaddr, LIBS="$LIBS -lnsl")
740 AC_CHECK_FUNCS(inet_pton inet_aton)
742 dnl ***********************************************
743 dnl *** Checks for size of sockaddr_un.sun_path ***
744 dnl ***********************************************
745 # AC_CHECK_SIZEOF can't cope with struct members :-(
746 AC_MSG_CHECKING(size of sockaddr_un.sun_path)
747 AC_CACHE_VAL(cv_mono_sizeof_sunpath,
749 #include <sys/types.h>
754 struct sockaddr_un sock_un;
755 FILE *f=fopen("conftestval", "w");
757 fprintf(f, "%d\n", sizeof(sock_un.sun_path));
760 ], cv_mono_sizeof_sunpath=`cat conftestval`,
761 cv_mono_sizeof_sunpath=0,
762 cv_mono_sizeof_sunpath=0)])dnl
763 AC_MSG_RESULT($cv_mono_sizeof_sunpath)
764 AC_DEFINE_UNQUOTED(MONO_SIZEOF_SUNPATH, $cv_mono_sizeof_sunpath)
766 dnl *************************************
767 dnl *** Checks for zero length arrays ***
768 dnl *************************************
769 AC_MSG_CHECKING(whether $CC supports zero length arrays)
777 AC_DEFINE_UNQUOTED(MONO_ZERO_ARRAY_LENGTH, 0)
780 AC_DEFINE_UNQUOTED(MONO_ZERO_ARRAY_LENGTH, 1)
783 dnl *****************************
784 dnl *** Checks for libxnet ***
785 dnl *****************************
788 AC_MSG_CHECKING(for Solaris XPG4 support)
789 if test -f /usr/lib/libxnet.so; then
790 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
791 CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
792 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
799 if test "$GCC" = "yes"; then
800 CFLAGS="$CFLAGS -Wno-char-subscripts"
805 dnl *****************************
806 dnl *** Checks for libpthread ***
807 dnl *****************************
808 # on FreeBSD -STABLE, the pthreads functions all reside in libc_r
809 # and libpthread does not exist
813 AC_CHECK_LIB(pthread, main, LIBS="$LIBS -pthread")
816 AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
819 AC_CHECK_HEADERS(pthread.h)
820 AC_CHECK_FUNCS(pthread_mutex_timedlock)
821 AC_CHECK_FUNCS(pthread_getattr_np pthread_attr_get_np)
822 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE)
823 AC_TRY_COMPILE([ #include <pthread.h>], [
824 pthread_mutexattr_t attr;
825 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
830 AC_MSG_WARN(Using mono_mutex_t for recursive mutexes)
831 AC_DEFINE(USE_MONO_MUTEX)
833 AC_CHECK_FUNCS(pthread_attr_setstacksize)
835 dnl ***********************************
836 dnl *** Checks for working __thread ***
837 dnl ***********************************
838 AC_MSG_CHECKING(for working __thread)
839 if test "x$with_tls" != "x__thread"; then
840 AC_MSG_RESULT(disabled)
846 static int res1, res2;
848 void thread_main (void *arg)
863 pthread_create (&t1, NULL, thread_main, 1);
864 pthread_create (&t2, NULL, thread_main, 2);
866 pthread_join (t1, NULL);
867 pthread_join (t2, NULL);
869 return !(res1 + res2 == 2);
879 dnl **************************************
880 dnl *** Checks for working sigaltstack ***
881 dnl **************************************
882 AC_MSG_CHECKING(for working sigaltstack)
883 if test "x$with_sigaltstack" != "xyes"; then
884 AC_MSG_RESULT(disabled)
892 #include <sys/wait.h>
895 sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
913 struct sigaltstack sas;
917 sa.sa_sigaction = sigsegv_signal_handler;
918 sigemptyset (&sa.sa_mask);
919 sa.sa_flags = SA_SIGINFO | SA_STACK;
920 if (sigaction (SIGSEGV, &sa, NULL) == -1) {
925 sas.ss_sp = malloc (SIGSTKSZ);
926 sas.ss_size = SIGSTKSZ;
927 sas.ss_flags = SS_ONSTACK;
928 if (sigaltstack (&sas, NULL) == -1) {
933 pthread_attr_init (&attr);
934 if (pthread_create(&id, &attr, loop, &attr) != 0) {
959 for (i = 0; i < 3; ++i) {
961 waitpid (son, &status, WNOHANG);
962 if (WIFEXITED (status) && WEXITSTATUS (status) == 0)
972 AC_DEFINE(HAVE_WORKING_SIGALTSTACK)
979 dnl ********************************
980 dnl *** Checks for semaphore lib ***
981 dnl ********************************
982 # 'Real Time' functions on Solaris
983 # posix4 on Solaris 2.6
984 # pthread (first!) on Linux
985 AC_SEARCH_LIBS(sem_init, pthread rt posix4)
987 dnl ********************************
988 dnl *** Checks for timezone stuff **
989 dnl ********************************
990 AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
996 ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no))
997 if test $ac_cv_struct_tm_gmtoff = yes; then
998 AC_DEFINE(HAVE_TM_GMTOFF)
1000 AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
1005 ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
1006 if test $ac_cv_var_timezone = yes; then
1007 AC_DEFINE(HAVE_TIMEZONE)
1009 AC_ERROR(unable to find a way to determine timezone)
1013 dnl *********************************
1014 dnl *** Checks for math functions ***
1015 dnl *********************************
1017 AC_CHECK_FUNCS(finite, , AC_MSG_CHECKING(for finite in math.h)
1018 AC_TRY_LINK([#include <math.h>],
1020 AC_DEFINE(HAVE_FINITE) AC_MSG_RESULT(yes),
1022 AC_CHECK_FUNCS(isfinite, , AC_MSG_CHECKING(for isfinite in math.h)
1023 AC_TRY_LINK([#include <math.h>],
1025 AC_DEFINE(HAVE_ISFINITE) AC_MSG_RESULT(yes),
1028 dnl ****************************************************************
1029 dnl *** Checks for working poll() (macosx defines it but doesn't ***
1030 dnl *** have it in the library (duh)) ***
1031 dnl ****************************************************************
1032 AC_CHECK_FUNCS(poll)
1034 dnl *************************
1035 dnl *** Check for signbit ***
1036 dnl *************************
1037 AC_MSG_CHECKING(for signbit)
1038 AC_TRY_LINK([#include <math.h>], [
1039 int s = signbit(1.0);
1042 AC_DEFINE(HAVE_SIGNBIT)
1047 dnl *********************
1048 dnl *** Check for AIO ***
1049 dnl *********************
1050 AC_MSG_CHECKING([for SIGEV_THREAD definition])
1051 dnl Some systems (FreeBSD at least) may have aio_read
1052 dnl but don't support/define SIGEV_THREAD.
1054 #include <sys/signal.h>
1056 int x = SIGEV_THREAD;
1058 ac_cv_c_sigev_thread=yes
1064 if test "$ac_cv_c_sigev_thread" = "yes" ; then
1065 AC_CHECK_HEADERS(aio.h sys/aio.h)
1066 AC_CHECK_LIB(rt, aio_read, [ LIBS="$LIBS -lrt" ],)
1067 SIGVAL_PTR="undefined"
1068 if test "$ac_cv_header_aio_h" = "yes" -o "$ac_cv_header_sys_aio_h" = "yes" ; then
1069 AC_CHECK_MEMBER(union sigval.sigval_ptr,SIGVAL_PTR="sigval_ptr",, [
1070 #include <sys/signal.h>
1072 AC_CHECK_MEMBER(union sigval.sival_ptr,SIGVAL_PTR="sival_ptr",, [
1073 #include <sys/signal.h>
1075 if test "$SIGVAL_PTR" = "undefined" ; then
1076 AC_MSG_ERROR([Unable to detect field name in 'union sigval'])
1079 AC_DEFINE_UNQUOTED(SIGVAL_PTR,$SIGVAL_PTR,[Pointer field name in 'union sigval'])
1082 dnl **********************************
1083 dnl *** Checks for MonoPosixHelper ***
1084 dnl **********************************
1085 AC_CHECK_FUNCS(posix_fadvise)
1086 AC_CHECK_FUNCS(posix_madvise)
1087 AC_CHECK_FUNCS(posix_fallocate)
1088 AC_CHECK_FUNCS(fgetgrent)
1089 AC_CHECK_FUNCS(fgetpwent)
1090 AC_CHECK_FUNCS(fgetpwent)
1091 AC_CHECK_HEADERS(sys/sendfile.h)
1092 AC_CHECK_FUNCS(sendfile)
1093 AC_CHECK_FUNCS(sethostid)
1094 AC_CHECK_FUNCS(stime)
1095 AC_CHECK_FUNCS(strerror_r)
1096 AC_CHECK_FUNCS(ttyname_r)
1097 AC_CHECK_SIZEOF(size_t)
1099 [struct dirent.d_off, struct dirent.d_reclen, struct dirent.d_type],,,
1100 [#include <sys/types.h>
1101 #include <dirent.h>])
1103 jdk_headers_found=no
1104 AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32", AC_ERROR(bad mingw install?))
1105 AC_CHECK_LIB(psapi, main, LIBS="$LIBS -lpsapi", AC_ERROR(bad mingw install?))
1106 AC_CHECK_LIB(ole32, main, LIBS="$LIBS -lole32", AC_ERROR(bad mingw install?))
1108 dnl *********************************
1109 dnl *** Check for struct ip_mreqn ***
1110 dnl *********************************
1111 AC_MSG_CHECKING(for struct ip_mreqn)
1112 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1113 struct ip_mreqn mreq;
1114 mreq.imr_address.s_addr = 0;
1116 # Yes, we have it...
1118 AC_DEFINE(HAVE_STRUCT_IP_MREQN)
1120 # We'll just have to try and use struct ip_mreq
1122 AC_MSG_CHECKING(for struct ip_mreq)
1123 AC_TRY_COMPILE([#include <ws2tcpip.h>], [
1124 struct ip_mreq mreq;
1125 mreq.imr_interface.s_addr = 0;
1127 # Yes, we have it...
1129 AC_DEFINE(HAVE_STRUCT_IP_MREQ)
1131 # No multicast support
1138 AC_MSG_CHECKING(for socklen_t)
1140 #include <sys/types.h>
1141 #include <sys/socket.h>
1145 ac_cv_c_socklen_t=yes
1146 AC_DEFINE(HAVE_SOCKLEN_T)
1152 AC_MSG_CHECKING(for array element initalizer support)
1153 AC_TRY_COMPILE([#include <sys/socket.h>], [
1154 const int array[] = {[1] = 2,};
1156 # Yes, we have it...
1158 AC_DEFINE(HAVE_ARRAY_ELEM_INIT,1,[Supports C99 array initialization])
1160 # We'll have to use signals
1164 AC_CHECK_FUNCS(trunc, , AC_MSG_CHECKING(for trunc in math.h)
1165 # Simply calling trunc (0.0) is no good since gcc will optimize the call away
1166 AC_TRY_LINK([#include <math.h>],
1167 [ static void *p = &trunc; ],
1169 AC_DEFINE(HAVE_TRUNC)
1175 if test "x$ac_cv_truncl" != "xyes"; then
1176 AC_CHECK_LIB(sunmath, aintl, [ AC_DEFINE(HAVE_AINTL) LIBS="$LIBS -lsunmath"])
1179 dnl ****************************
1180 dnl *** Look for /dev/random ***
1181 dnl ****************************
1183 AC_MSG_CHECKING([if usage of random device is requested])
1184 AC_ARG_ENABLE(dev-random,
1185 [ --disable-dev-random disable the use of the random device],
1186 try_dev_random=$enableval, try_dev_random=yes)
1187 AC_MSG_RESULT($try_dev_random)
1191 NAME_DEV_RANDOM="/dev/srandom"
1194 dnl Win32 does not have /dev/random, they have their own method...
1196 *-*-mingw*|*-*-cygwin*)
1197 ac_cv_have_dev_random=no
1200 dnl Everywhere else, it's /dev/random
1203 NAME_DEV_RANDOM="/dev/random"
1207 AC_DEFINE_UNQUOTED(NAME_DEV_RANDOM, "$NAME_DEV_RANDOM")
1209 dnl Now check if the device actually exists
1211 if test "x$try_dev_random" = "xyes"; then
1212 AC_CACHE_CHECK(for random device, ac_cv_have_dev_random,
1213 [if test -r "$NAME_DEV_RANDOM" ; then
1214 ac_cv_have_dev_random=yes; else ac_cv_have_dev_random=no; fi])
1215 if test "x$ac_cv_have_dev_random" = "xyes"; then
1216 AC_DEFINE(HAVE_CRYPT_RNG)
1219 AC_MSG_CHECKING(for random device)
1220 ac_cv_have_dev_random=no
1221 AC_MSG_RESULT(has been disabled)
1224 if test "x$platform_win32" = "xyes"; then
1225 AC_DEFINE(HAVE_CRYPT_RNG)
1228 if test "x$ac_cv_have_dev_random" = "xno" \
1229 && test "x$platform_win32" = "xno"; then
1232 *** A system-provided entropy source was not found on this system.
1233 *** Because of this, the System.Security.Cryptography random number generator
1234 *** will throw a NotImplemented exception.
1236 *** If you are seeing this message, and you know your system DOES have an
1237 *** entropy collection in place, please contact <crichton@gimp.org> and
1238 *** provide information about the system and how to access the random device.
1240 *** Otherwise you can install either egd or prngd and set the environment
1241 *** variable MONO_EGD_SOCKET to point to the daemon's socket to use that.
1245 AC_MSG_CHECKING([if inter-process shared handles are requested])
1246 AC_ARG_ENABLE(shared-handles, [ --disable-shared-handles disable inter-process shared handles], try_shared_handles=$enableval, try_shared_handles=yes)
1247 AC_MSG_RESULT($try_shared_handles)
1248 if test "x$try_shared_handles" != "xyes"; then
1249 AC_DEFINE(DISABLE_SHARED_HANDLES)
1250 AC_SUBST(DISABLE_SHARED_HANDLES)
1258 enable_icu="no; default"
1261 AC_ARG_WITH(icu, [ --with-icu=yes/no],
1262 if test x$with_icu = xno; then
1264 AC_MSG_RESULT(Will not probe for ICU)
1266 if test x$with_icu = xyes; then
1272 AC_PATH_PROG(ICU_CONFIG, icu-config, no)
1273 if test "x$ICU_CONFIG" = "xno" -o ! -x "$ICU_CONFIG"; then
1274 AC_MSG_WARN([Only invariant locale available; install ICU for I18N support])
1275 enable_icu="no, if you want full i18n support download it from: http://oss.software.ibm.com/icu/index.html"
1277 enable_icu="yes. Version: `$ICU_CONFIG --version`"
1279 ICU_CFLAGS=`$ICU_CONFIG --cppflags`
1280 ICU_LIBS=`$ICU_CONFIG --ldflags`
1283 AC_SUBST(ICU_CFLAGS)
1286 AC_ARG_ENABLE(nunit-tests, [ --enable-nunit-tests Run the nunit tests of the class library on 'make check'])
1287 AM_CONDITIONAL(ENABLE_NUNIT_TESTS, [test x$enable_nunit_tests = xyes])
1290 ACCESS_UNALIGNED="yes"
1300 # mips-sgi-irix5.* | mips-sgi-irix6.*)
1302 # ACCESS_UNALIGNED="no"
1310 x86_64-*-* | amd64-*-*)
1317 if test "x$ac_cv_sizeof_void_p" = "x8"; then
1324 ACCESS_UNALIGNED="no"
1328 if test x"$GCC" = xyes; then
1329 CFLAGS="$CFLAGS -Wno-cast-align"
1332 alpha*-*-linux* | alpha*-*-osf*)
1334 ACCESS_UNALIGNED="no"
1336 INTERP_SUPPORTED=yes
1340 # ia64-*-linux* | ia64-*-hpux*)
1344 # ACCESS_UNALIGNED="no";
1345 # case "$host_os" in
1346 # linux*) LIBC="libc.so.6.1";;
1347 # hpux*) LIBC="libc.so.1";;
1353 hppa2.0w-hp-hpux11.00 | hppa64-hp-hpux11.00)
1357 ACCESS_UNALIGNED="no"
1358 INTERP_SUPPORTED=yes
1364 ACCESS_UNALIGNED="no"
1365 INTERP_SUPPORTED=yes
1368 macppc-*-openbsd* | powerpc-*-linux* | powerpc-*-openbsd* | \
1369 powerpc-*-sysv* | powerpc-*-darwin*)
1371 AC_DEFINE(MONO_ARCH_REGPARMS,1,[Architecture uses registers for Parameters])
1376 arm-*-linux-* | armv4l-*-linux-*)
1379 ACCESS_UNALIGNED="no"
1380 INTERP_SUPPORTED=yes
1385 AC_DEFINE(MONO_ARCH_REGPARMS,1,[Architecture uses registers for Parameters])
1387 ACCESS_UNALIGNED="no"
1392 AC_DEFINE(MONO_ARCH_REGPARMS,1,[Architecture uses registers for Parameters])
1394 ACCESS_UNALIGNED="no"
1399 AC_ARG_WITH(jit, [ --with-jit=yes,no If you want to build scripts that default to the JIT],[
1400 if test x$withval = xyes; then
1407 AC_ARG_WITH(interp, [ --with-interp=yes,no If you want to build scripts that default to the interpreter],[
1408 if test x$withval = xyes; then
1416 if test x$JIT_SUPPORTED = xyes; then
1417 if $jit_wanted; then
1419 jit_status="Building and using the JIT"
1421 if $interp_wanted; then
1422 jit_status="Building the JIT, defaulting to the interpreter"
1424 AC_ERROR(No JIT or interpreter support available or selected.)
1428 if $interp_wanted; then
1429 jit_status="interpreter"
1431 AC_ERROR(No JIT or interpreter support available or selected.)
1435 AM_CONDITIONAL(USE_JIT, test x$USEJIT = xtrue)
1443 INTL="libintl.dylib"
1460 if test "x$TARGET" != "xAMD64"; then
1461 # valgrind headers don't compile under x86-64
1462 AC_CHECK_HEADERS(valgrind/memcheck.h)
1465 if test "x$TARGET" = "xAMD64" -o "x$TARGET" = "xX86"; then
1466 if test "x$with_tls" = "x__thread"; then
1468 # On some linux distributions, TLS works in executables, but linking
1469 # against a shared library containing TLS fails with:
1470 # undefined reference to `__tls_get_addr'
1472 rm -f conftest.c conftest.so conftest
1473 echo "static __thread int foo; void main () { foo = 5; }" > conftest.c
1474 gcc -fPIC --shared -o conftest.so conftest.c > /dev/null 2>&1
1475 gcc -o conftest conftest.so > /dev/null 2>&1
1476 if test ! -f conftest; then
1477 AC_MSG_WARN([Disabling usage of __thread.]);
1480 rm -f conftest.c conftest.so conftest
1484 if test "x$with_tls" = "x__thread"; then
1485 AC_DEFINE(HAVE_KW_THREAD)
1486 # Pass the information to libgc
1487 CPPFLAGS="$CPPFLAGS -DUSE_COMPILER_TLS"
1491 if test ${TARGET} = ARM; then
1492 dnl ******************************************
1493 dnl *** Check to see what FPU is available ***
1494 dnl ******************************************
1495 AC_MSG_CHECKING(which FPU to use)
1497 AC_TRY_COMPILE([], [
1498 __asm__ ("ldfd f0, [r0]");
1500 AC_TRY_COMPILE([], [
1501 __asm__ ("fldd d0, [r0]");
1502 ], fpu=VFP, fpu=NONE)
1506 CPPFLAGS="$CPPFLAGS -DARM_FPU_$fpu"
1510 if test ${TARGET} = unknown; then
1511 CPPFLAGS="$CPPFLAGS -DNO_PORT"
1512 AC_MSG_WARN("mono has not been ported to $host: some things may not work.")
1515 if test ${ACCESS_UNALIGNED} = no; then
1516 CPPFLAGS="$CPPFLAGS -DNO_UNALIGNED_ACCESS"
1520 AC_ARG_WITH(preview, [ --with-preview=yes,no If you want to install the 2.0 FX preview],[
1521 if test x$with_preview = xyes; then
1526 AM_CONDITIONAL(INSTALL_2_0, test x$PREVIEW = xyes)
1528 AM_CONDITIONAL(MIPS_GCC, test ${TARGET}${ac_cv_prog_gcc} = MIPSyes)
1529 AM_CONDITIONAL(MIPS_SGI, test ${TARGET}${ac_cv_prog_gcc} = MIPSno)
1530 AM_CONDITIONAL(SPARC, test x$TARGET = xSPARC)
1531 AM_CONDITIONAL(SPARC64, test x$TARGET = xSPARC64)
1532 AM_CONDITIONAL(X86, test x$TARGET = xX86)
1533 AM_CONDITIONAL(AMD64, test x$TARGET = xAMD64)
1534 AM_CONDITIONAL(ALPHA, test x$TARGET = xALPHA)
1535 AM_CONDITIONAL(IA64, test x$TARGET = xIA64)
1536 AM_CONDITIONAL(M68K, test x$TARGET = xM68K)
1537 AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
1538 AM_CONDITIONAL(ARM, test x$TARGET = xARM)
1539 AM_CONDITIONAL(S390, test x$TARGET = xS390)
1540 AM_CONDITIONAL(S390x, test x$TARGET = xS390x)
1541 AM_CONDITIONAL(HPPA, test x$TARGET = xHPPA)
1543 AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
1544 AM_CONDITIONAL(INTERP_SUPPORTED, test x$interp_wanted = xtrue)
1545 AM_CONDITIONAL(INCLUDED_LIBGC, test x$gc = xincluded)
1550 AC_SUBST(arch_target)
1555 mono_build_root=`pwd`
1556 AC_SUBST(mono_build_root)
1558 if test x$USEJIT = xtrue; then
1559 mono_runtime=mono/mini/mono
1561 mono_runtime=mono/interpreter/mint
1563 AC_SUBST(mono_runtime)
1565 mono_cfg_root=$mono_build_root/runtime
1566 if test x$platform_win32 = xyes; then
1567 mono_cfg_dir=`cygpath -w -a $mono_cfg_root`\\etc
1569 mono_cfg_dir=$mono_cfg_root/etc
1571 AC_SUBST(mono_cfg_dir)
1573 AC_CONFIG_FILES([runtime/mono-wrapper],[chmod +x runtime/mono-wrapper])
1575 AC_CONFIG_COMMANDS([runtime/etc/mono/1.0/machine.config],
1578 [\\/$]* | ?:[\\/]* ) reldir=$srcdir ;;
1580 *) reldir=$depth/$srcdir ;;
1582 $ac_aux_dir/install-sh -d runtime/etc/mono/1.0
1583 cd runtime/etc/mono/1.0
1584 rm -f machine.config
1585 $LN_S $reldir/data/net_1_1/machine.config machine.config
1589 AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/machine.config],
1592 [\\/$]* | ?:[\\/]* ) reldir=$srcdir ;;
1594 *) reldir=$depth/$srcdir ;;
1596 $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
1597 cd runtime/etc/mono/2.0
1598 rm -f machine.config
1599 $LN_S $reldir/data/net_2_0/machine.config machine.config
1609 mono/metadata/Makefile
1614 mono/os/win32/Makefile
1615 mono/os/unix/Makefile
1616 mono/arch/x86/Makefile
1617 mono/arch/amd64/Makefile
1618 mono/arch/hppa/Makefile
1619 mono/arch/ppc/Makefile
1620 mono/arch/sparc/Makefile
1621 mono/arch/s390/Makefile
1622 mono/arch/s390x/Makefile
1623 mono/arch/arm/Makefile
1624 mono/arch/alpha/Makefile
1625 mono/interpreter/Makefile
1627 mono/tests/tests-config
1628 mono/benchmark/Makefile
1629 mono/monoburg/Makefile
1630 mono/monograph/Makefile
1631 mono/io-layer/Makefile
1632 mono/handles/Makefile
1634 mono/profiler/Makefile
1641 data/net_1_1/Makefile
1642 data/net_2_0/Makefile
1648 tools/locale-builder/Makefile
1654 NONE) prefix=/usr/local ;;
1656 case $exec_prefix in
1657 NONE | '${prefix}') exec_prefix=$prefix ;;
1660 echo "prefix=$exec_prefix" > $srcdir/$mcsdir/build/config.make
1661 echo 'MCS_FLAGS = $(PLATFORM_DEBUG_FLAGS)' >> $srcdir/$mcsdir/build/config.make
1665 mcs source: $mcs_topdir
1669 SIGALTSTACK: $with_sigaltstack
1672 JNI support: $jdk_headers_found