1 dnl Process this with autoconf to create configure
2 AC_INIT(java/lang/System.java)
4 dnl Can't be done in LIBGCJ_CONFIGURE because that confuses automake.
9 dnl We use these options to decide which functions to include.
10 AC_ARG_WITH(target-subdir,
11 [ --with-target-subdir=SUBDIR
12 configuring in a subdirectory])
13 AC_ARG_WITH(cross-host,
14 [ --with-cross-host=HOST configuring with a cross compiler])
18 AM_CONFIG_HEADER(include/config.h)
20 # Only use libltdl for native builds.
21 if test -z "${with_cross_host}"; then
22 AC_LIBLTDL_CONVENIENCE
26 # Sigh. Libtool's macro doesn't do the right thing.
27 INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
33 AC_CONFIG_SUBDIRS($DIRLTDL)
35 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
42 dnl The -no-testsuite modules omit the test subdir.
43 AM_CONDITIONAL(TESTSUBDIR, test -d $srcdir/testsuite)
45 dnl See whether the user prefers size or speed for Character.
46 dnl The default is size.
47 AC_ARG_ENABLE(fast-character,
48 [ --enable-fast-character prefer speed over size for Character],
50 , AC_DEFINE(COMPACT_CHARACTER))
52 dnl Should the runtime set system properties by examining the
53 dnl environment variable GCJ_PROPERTIES?
54 AC_ARG_ENABLE(getenv-properties,
55 [ --disable-getenv-properties
56 don't set system properties from GCJ_PROPERTIES])
58 dnl Whether GCJ_PROPERTIES is used depends on the target.
59 if test -n "$enable_getenv_properties"; then
60 enable_getenv_properties=${enable_getenv_properties_default-yes}
62 if test "$enable_getenv_properties" = no; then
63 AC_DEFINE(DISABLE_GETENV_PROPERTIES)
66 dnl See if the user has requested runtime debugging.
67 AC_ARG_ENABLE(libgcj-debug,
68 [ --enable-libgcj-debug enable runtime debugging code],
69 if test "$enable_libgcj_debug" = yes; then
73 dnl See if the user has the interpreter included.
74 AC_ARG_ENABLE(interpreter,
75 [ --enable-interpreter enable interpreter],
76 if test "$enable_interpreter" = yes; then
77 # This can also be set in configure.host.
78 libgcj_interpreter=yes
79 elif test "$enable_interpreter" = no; then
83 if test "$libgcj_interpreter" = yes; then
84 AC_DEFINE(INTERPRETER)
88 dnl See if we should use setjmp/longjmp exceptions
89 AC_ARG_ENABLE(sjlj-exceptions,
90 [ --enable-sjlj-exceptions use setjmp/longjmp exceptions],
91 if test "$enable_sjlj_exceptions" = yes; then
92 # This can be set in configure.host.
96 if test "$libgcj_sjlj" = yes; then
97 EXCEPTIONSPEC="-fsjlj-exceptions"
98 AC_DEFINE(SJLJ_EXCEPTIONS)
102 dnl Work around libgcc design flaw.
103 if test "$ac_cv_prog_gnu_ld" = yes; then
104 FORCELIBGCCSPEC="-u __rethrow -u __frame_state_for -lgcc"
107 AC_MSG_CHECKING([for data_start])
110 AC_TRY_LINK([extern int data_start;], [return ((int) &data_start);],
111 [AC_MSG_RESULT(found it)],
112 [LIBDATASTARTSPEC="-u data_start -lgcjdata"
114 AC_MSG_RESULT(missing)])
115 AC_SUBST(LIBDATASTARTSPEC)
117 dnl See if the user wants to disable java.net. This is the mildly
118 dnl ugly way that we admit that target-side configuration sucks.
119 AC_ARG_ENABLE(java-net,
120 [ --disable-java-net disable java.net])
122 dnl Whether java.net is built by default can depend on the target.
123 if test -n "$enable_java_net"; then
124 enable_java_net=${enable_java_net_default-yes}
126 if test "$enable_java_net" = no; then
127 AC_DEFINE(DISABLE_JAVA_NET)
130 dnl See if the user wants to disable JVMPI support.
132 [ --disable-jvmpi disable JVMPI support])
134 if test "$enable_jvmpi" != no; then
135 AC_DEFINE(ENABLE_JVMPI)
138 dnl If the target is an eCos system, use the appropriate eCos
140 dnl FIXME: this should not be a local option but a global target
141 dnl system; at present there is no eCos target.
144 [ --with-ecos enable runtime eCos target support],
145 TARGET_ECOS="$with_ecos"
148 case "$TARGET_ECOS" in
150 FILE_DESCRIPTOR=natFileDescriptorPosix.cc
151 PROCESS=${PROCESS-Posix}
154 FILE_DESCRIPTOR=natFileDescriptorEcos.cc
160 AC_EGREP_HEADER(uint32_t, stdint.h, AC_DEFINE(HAVE_INT32_DEFINED))
161 AC_EGREP_HEADER(uint32_t, inttypes.h, AC_DEFINE(HAVE_INT32_DEFINED))
162 AC_EGREP_HEADER(u_int32_t, sys/types.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED))
163 AC_EGREP_HEADER(u_int32_t, sys/config.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED))
166 dnl These may not be defined in a non-ANS conformant embedded system.
167 dnl FIXME: Should these case a runtime exception in that case?
168 AC_EGREP_HEADER(mktime, time.h, AC_DEFINE(HAVE_MKTIME))
169 AC_EGREP_HEADER(localtime, time.h, AC_DEFINE(HAVE_LOCALTIME))
171 dnl Create the subdirectory for natFileDescriptor.cc, or the attempt
172 dnl to create the link will fail.
173 test -d java || mkdir java
174 test -d java/io || mkdir java/io
175 AC_LINK_FILES(java/io/$FILE_DESCRIPTOR, java/io/natFileDescriptor.cc)
177 dnl Likewise for ConcreteProcess.java and natConcreteProcess.cc.
178 test -d java/lang || mkdir java/lang
179 AC_LINK_FILES(java/lang/${PROCESS}Process.java, java/lang/ConcreteProcess.java)
180 AC_LINK_FILES(java/lang/nat${PROCESS}Process.cc, java/lang/natConcreteProcess.cc)
185 LIBGCJTESTSPEC="-L`pwd`/.libs -rpath `pwd`/.libs"
186 AC_SUBST(LIBGCJTESTSPEC)
188 AC_ARG_WITH(system-zlib,
189 [ --with-system-zlib use installed libz])
193 AC_SUBST(ZLIBTESTSPEC)
195 dnl FIXME: this should be _libs on some hosts.
198 dnl Allow the GC to be disabled. Can be useful when debugging.
199 AC_MSG_CHECKING([for garbage collector to use])
200 AC_ARG_ENABLE(java-gc,
201 changequote(<<,>>)dnl
202 << --enable-java-gc=TYPE choose garbage collector [boehm]>>,
215 GCDEPS='$(top_builddir)/../boehm-gc/libgcjgc.la'
216 # We include the path to the boehm-gc build directory.
217 # See Makefile.am to understand why.
218 GCLIBS="$GCDEPS -L\$(here)/../boehm-gc/$libsubdir"
219 GCINCS='-I$(top_srcdir)/../boehm-gc -I$(top_builddir)/../boehm-gc'
221 GCTESTSPEC="-L`pwd`/../boehm-gc/.libs -rpath `pwd`/../boehm-gc/.libs"
222 dnl We also want to pick up some cpp flags required when including
223 dnl boehm-config.h. Yuck.
224 GCINCS="$GCINCS `cat ../boehm-gc/boehm-cflags`"
227 dnl The POSIX thread support needs to know this.
228 AC_DEFINE(HAVE_BOEHM_GC)
236 AC_MSG_ERROR(unrecognized collector \"$GC\")
245 AC_LINK_FILES(include/$GCHDR, include/java-gc.h)
248 dnl Note that this code is kept in sync with similar code in gcc/configure.in.
249 dnl In particular both packages must make the same decision about which
250 dnl thread package to use.
251 AC_MSG_CHECKING([for threads package to use])
252 AC_ARG_ENABLE(threads, [ --enable-threads=TYPE choose threading package],
254 dnl FIXME: figure out native threads to use here.
257 if test "$THREADS" = yes; then
263 # FIXME: this isn't correct in all cases.
270 # FIXME: for now, choose POSIX, because we implement that.
271 # Later, choose irix threads.
275 # FIXME: for now, choose POSIX, because we implement that.
276 # Later, choose solaris threads.
294 AC_DEFINE(LINUX_THREADS)
298 decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
299 AC_MSG_ERROR(thread package $THREADS not yet supported)
302 AC_MSG_ERROR($THREADS is an unknown thread package)
305 AC_MSG_RESULT($THREADS)
317 THREADOBJS=posix-threads.lo
318 THREADH=posix-threads.h
319 # MIT pthreads doesn't seem to have the mutexattr functions.
320 # But for now we don't check for it. We just assume you aren't
321 # using MIT pthreads.
322 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT)
324 # If we're using the Boehm GC, then we happen to know that it
325 # defines _REENTRANT, so we don't bother. Eww.
326 if test "$GC" != boehm; then
327 AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
329 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Required define if using POSIX threads])
333 THREADOBJS=no-threads.lo
337 AC_LINK_FILES(include/$THREADH, include/java-threads.h)
344 AM_CONDITIONAL(USING_GCC, test "$GCC" = yes)
350 # Find eh-common.h and support headers. If we're in the tree with
351 # gcc, then look there. Otherwise look in compat-include. If all else
352 # fails, just hope the user has set things up somehow.
353 if test -r $srcdir/../gcc/eh-common.h; then
354 EH_COMMON_INCLUDE='-I$(top_srcdir)/../gcc -I$(top_srcdir)/../include'
356 if test -d $srcdir/../compat-include; then
357 EH_COMMON_INCLUDE='-I$(top_srcdir)/../compat-include'
363 if test -n "${with_cross_host}"; then
364 # We are being configured with a cross compiler. AC_REPLACE_FUNCS
365 # may not work correctly, because the compiler may not be able to
368 # We assume newlib. This lets us hard-code the functions we know
370 AC_DEFINE(HAVE_MEMMOVE)
371 AC_DEFINE(HAVE_MEMCPY)
372 AC_DEFINE(HAVE_STRERROR)
373 AC_DEFINE(HAVE_GMTIME_R)
374 AC_DEFINE(HAVE_LOCALTIME_R)
375 dnl This is only for POSIX threads.
376 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT)
377 dnl We also assume we are using gcc, which provides alloca.
378 AC_DEFINE(HAVE_ALLOCA)
380 dnl Assume we do not have getuid and friends.
384 ZLIBTESTSPEC="-L`pwd`/../zlib/.libs -rpath `pwd`/../zlib/.libs"
386 # If Canadian cross, then don't pick up tools from the build
388 if test "$build" != "$with_cross_host"; then
391 GCJ="${target_alias}-gcj"
397 AC_CHECK_FUNCS(strerror ioctl select fstat open fsync sleep)
398 AC_CHECK_FUNCS(gmtime_r localtime_r readdir_r getpwuid_r getcwd)
399 AC_CHECK_FUNCS(access stat mkdir rename rmdir unlink realpath iconv)
400 AC_CHECK_FUNCS(inet_aton inet_addr, break)
401 AC_CHECK_FUNCS(inet_pton uname inet_ntoa)
402 AC_CHECK_FUNCS(backtrace fork execvp pipe)
403 AC_CHECK_HEADERS(execinfo.h unistd.h dlfcn.h)
404 AC_CHECK_LIB(dl, dladdr, [
405 AC_DEFINE(HAVE_DLADDR)])
406 AC_CHECK_FILES(/proc/self/exe, [
407 AC_DEFINE(HAVE_PROC_SELF_EXE)])
409 AC_CHECK_FUNCS(gethostbyname_r, [
410 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
411 # There are two different kinds of gethostbyname_r.
412 # We look for the one that returns `int'.
413 # Hopefully this check is robust enough.
414 AC_EGREP_HEADER(int.*gethostbyname_r, netdb.h, [
415 AC_DEFINE(GETHOSTBYNAME_R_RETURNS_INT)])
418 *" -D_REENTRANT "*) ;;
420 dnl On DU4.0, gethostbyname_r is only declared with -D_REENTRANT
421 AC_CACHE_CHECK([whether gethostbyname_r declaration requires -D_REENTRANT],
422 [libjava_cv_gethostbyname_r_needs_reentrant],
425 AC_TRY_COMPILE([#include <netdb.h>],
426 [gethostbyname_r("", 0, 0);],
427 [libjava_cv_gethostbyname_r_needs_reentrant=no], [dnl
428 CPPFLAGS_SAVE="$CPPFLAGS"
429 CPPFLAGS="$CPPFLAGS -D_REENTRANT"
430 AC_TRY_COMPILE([#include <netdb.h>], [gethostbyname_r("", 0, 0);],
431 [libjava_cv_gethostbyname_r_needs_reentrant=yes],
432 [libjava_cv_gethostbyname_r_needs_reentrant=fail])
433 CPPFLAGS="$CPPFLAGS_SAVE"
437 if test "x$libjava_cv_gethostbyname_r_needs_reentrant" = xyes; then
438 AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
443 AC_CACHE_CHECK([for struct hostent_data],
444 [libjava_cv_struct_hostent_data], [dnl
446 #if GETHOSTBYNAME_R_NEEDS_REENTRANT && !defined(_REENTRANT)
447 # define _REENTRANT 1
449 #include <netdb.h>], [struct hostent_data data;],
450 [libjava_cv_struct_hostent_data=yes],
451 [libjava_cv_struct_hostent_data=no])])
452 if test "x$libjava_cv_struct_hostent_data" = xyes; then
453 AC_DEFINE(HAVE_STRUCT_HOSTENT_DATA, 1,
454 [Define if struct hostent_data is defined in netdb.h])
458 AC_CHECK_FUNCS(gethostbyaddr_r, [
459 AC_DEFINE(HAVE_GETHOSTBYADDR_R)
460 # There are two different kinds of gethostbyaddr_r.
461 # We look for the one that returns `int'.
462 # Hopefully this check is robust enough.
463 AC_EGREP_HEADER(int.*gethostbyaddr_r, netdb.h, [
464 AC_DEFINE(GETHOSTBYADDR_R_RETURNS_INT)])])
466 AC_CHECK_FUNCS(gethostname, [
467 AC_DEFINE(HAVE_GETHOSTNAME)
468 AC_EGREP_HEADER(gethostname, unistd.h, [
469 AC_DEFINE(HAVE_GETHOSTNAME_DECL)])])
471 # Look for these functions in the thread library, but only bother
472 # if using POSIX threads.
473 if test "$THREADS" = posix; then
475 LIBS="$LIBS $THREADLIBS"
476 # Some POSIX thread systems don't have pthread_mutexattr_settype.
478 AC_CHECK_FUNCS(pthread_mutexattr_settype pthread_mutexattr_setkind_np)
480 # Look for sched_yield. Up to Solaris 2.6, it is in libposix4, since
481 # Solaris 7 the name librt is preferred.
482 AC_CHECK_FUNCS(sched_yield, , [
483 AC_CHECK_LIB(rt, sched_yield, [
484 AC_DEFINE(HAVE_SCHED_YIELD)
485 THREADLIBS="$THREADLIBS -lrt"
486 THREADSPEC="$THREADSPEC -lrt"], [
487 AC_CHECK_LIB(posix4, sched_yield, [
488 AC_DEFINE(HAVE_SCHED_YIELD)
489 THREADLIBS="$THREADLIBS -lposix4"
490 THREADSPEC="$THREADSPEC -lposix4"])])])
493 # We can save a little space at runtime if the mutex has m_count
494 # or __m_count. This is a nice hack for Linux.
495 AC_TRY_COMPILE([#include <pthread.h>], [
496 extern pthread_mutex_t *mutex; int q = mutex->m_count;
497 ], AC_DEFINE(PTHREAD_MUTEX_HAVE_M_COUNT), [
498 AC_TRY_COMPILE([#include <pthread.h>], [
499 extern pthread_mutex_t *mutex; int q = mutex->__m_count;
500 ], AC_DEFINE(PTHREAD_MUTEX_HAVE___M_COUNT))])
503 # We require a way to get the time.
505 AC_CHECK_FUNCS(gettimeofday time ftime, time_found=yes)
506 if test "$time_found" = no; then
507 AC_MSG_ERROR([no function found to get the time])
510 AC_CHECK_FUNCS(memmove)
514 AC_CHECK_FUNCS(memcpy, memcpy_found=yes)
515 if test "$memcpy_found" = no; then
516 AC_MSG_ERROR([memcpy is required])
519 # Some library-finding code we stole from Tcl.
520 #--------------------------------------------------------------------
521 # Check for the existence of the -lsocket and -lnsl libraries.
522 # The order here is important, so that they end up in the right
523 # order in the command line generated by make. Here are some
524 # special considerations:
525 # 1. Use "connect" and "accept" to check for -lsocket, and
526 # "gethostbyname" to check for -lnsl.
527 # 2. Use each function name only once: can't redo a check because
528 # autoconf caches the results of the last check and won't redo it.
529 # 3. Use -lnsl and -lsocket only if they supply procedures that
530 # aren't already present in the normal libraries. This is because
531 # IRIX 5.2 has libraries, but they aren't needed and they're
532 # bogus: they goof up name resolution if used.
533 # 4. On some SVR4 systems, can't use -lsocket without -lnsl too.
534 # To get around this problem, check for both libraries together
535 # if -lsocket doesn't work by itself.
536 #--------------------------------------------------------------------
538 AC_CACHE_CHECK([for socket libraries], gcj_cv_lib_sockets,
541 unset ac_cv_func_connect
542 AC_CHECK_FUNC(connect, gcj_checkSocket=0, gcj_checkSocket=1)
543 if test "$gcj_checkSocket" = 1; then
544 unset ac_cv_func_connect
545 AC_CHECK_LIB(socket, main, gcj_cv_lib_sockets="-lsocket",
548 if test "$gcj_checkBoth" = 1; then
550 LIBS="$LIBS -lsocket -lnsl"
551 unset ac_cv_func_accept
552 AC_CHECK_FUNC(accept,
554 gcj_cv_lib_sockets="-lsocket -lnsl"])
555 unset ac_cv_func_accept
558 unset ac_cv_func_gethostbyname
560 LIBS="$LIBS $gcj_cv_lib_sockets"
561 AC_CHECK_FUNC(gethostbyname, ,
562 [AC_CHECK_LIB(nsl, main,
563 [gcj_cv_lib_sockets="$gcj_cv_lib_sockets -lnsl"])])
564 unset ac_cv_func_gethostbyname
567 SYSTEMSPEC="$SYSTEMSPEC $gcj_cv_lib_sockets"
569 if test "$with_system_zlib" = yes; then
570 AC_CHECK_LIB(z, deflate, ZLIBSPEC=-lz, ZLIBSPEC=-lzgcj)
573 ZLIBTESTSPEC="-L`pwd`/../zlib/.libs -rpath `pwd`/../zlib/.libs"
576 # On Solaris, and maybe other architectures, the Boehm collector
578 if test "$GC" = boehm; then
579 AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl")
582 if test -d "$libgcj_basedir/../gcc/java"; then
591 dnl FIXME: cross compilation
592 AC_CHECK_SIZEOF(void *)
597 if test "x$ZLIBSPEC" = "x-lzgcj"; then
598 # We include the path to the zlib build directory.
599 # See Makefile.am to understand why.
600 ZDEPS='$(top_builddir)/../zlib/libzgcj.la'
601 ZLIBS="$ZDEPS -L\$(here)/../zlib/$libsubdir"
602 ZINCS='-I$(top_srcdir)/../zlib'
610 AC_SUBST(EXCEPTIONSPEC)
611 AC_SUBST(FORCELIBGCCSPEC)
613 AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
614 AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
615 AM_CONDITIONAL(NATIVE, test "$NATIVE" = yes || test "$NULL_TARGET" = yes)
616 AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
617 AM_CONDITIONAL(NEEDS_DATA_START, test "$NEEDS_DATA_START" = yes && test "$NATIVE" = yes)
618 AC_SUBST(EH_COMMON_INCLUDE)
620 # Determine gcj version number.
621 if test "$GCJ" = ""; then
622 if test -z "${with_multisubdir}"; then
626 builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`
629 dir="`cd ${builddotdot}/../../gcc && pwd`"
630 GCJ="$dir/gcj -B$dir/"
633 gcjvers="`$GCJ -v 2>&1 | sed -n 's/^.*version \([^ ]*\).*$/\1/p'`"
635 AC_DEFINE_UNQUOTED(GCJVERSION, "$gcjvers")
637 # See if gcj supports -fuse-divide-subroutine. gcc 2.95 does not, and
638 # we want to continue to support that version.
639 AC_MSG_CHECKING([whether gcj supports -fuse-divide-subroutine])
640 cat > conftest.java << 'END'
641 public class conftest { }
644 $GCJ -classpath $srcdir -fuse-divide-subroutine -fsyntax-only \
645 conftest.java > /dev/null 2>&1 \
648 if test "$use_fuse" = no; then
651 AC_MSG_RESULT($use_fuse)
653 AC_SUBST(AM_RUNTESTFLAGS)
655 dnl Work around a g++ bug. Reported to gcc-bugs@gcc.gnu.org on Jan 22, 2000.
656 AC_MSG_CHECKING([for g++ -ffloat-store bug])
657 save_CFLAGS="$CFLAGS"
658 CFLAGS="-x c++ -O2 -ffloat-store"
659 AC_TRY_COMPILE([#include <math.h>], ,
661 [AC_DEFINE(__NO_MATH_INLINES)
663 CFLAGS="$save_CFLAGS"
665 dnl We check for sys/filio.h because Solaris 2.5 defines FIONREAD there.
666 dnl On that system, sys/ioctl.h will not include sys/filio.h unless
667 dnl BSD_COMP is defined; just including sys/filio.h is simpler.
668 AC_CHECK_HEADERS(unistd.h bstring.h sys/time.h sys/types.h fcntl.h sys/ioctl.h sys/filio.h sys/stat.h sys/select.h sys/socket.h netinet/in.h arpa/inet.h netdb.h pwd.h sys/config.h inttypes.h stdint.h)
669 dnl We avoid AC_HEADER_DIRENT since we really only care about dirent.h
670 dnl for now. If you change this, you also must update natFile.cc.
671 AC_CHECK_HEADERS(dirent.h)
673 AC_CHECK_TYPE([ssize_t], [int])
675 AC_MSG_CHECKING([for in_addr_t])
676 AC_TRY_COMPILE([#include <sys/types.h>
681 #if HAVE_NETINET_IN_H
682 #include <netinet/in.h>
683 #endif], [in_addr_t foo;],
684 [AC_DEFINE([HAVE_IN_ADDR_T])
688 AC_MSG_CHECKING([whether struct ip_mreq is in netinet/in.h])
689 AC_TRY_COMPILE([#include <netinet/in.h>], [struct ip_mreq mreq;],
690 [AC_DEFINE(HAVE_STRUCT_IP_MREQ)
694 AC_MSG_CHECKING([whether struct sockaddr_in6 is in netinet/in.h])
695 AC_TRY_COMPILE([#include <netinet/in.h>], [struct sockaddr_in6 addr6;],
696 [AC_DEFINE(HAVE_INET6)
700 AC_MSG_CHECKING([for socklen_t in sys/socket.h])
701 AC_TRY_COMPILE([#include <sys/socket.h>], [socklen_t x = 5;],
702 [AC_DEFINE(HAVE_SOCKLEN_T)
706 AC_MSG_CHECKING([for tm_gmtoff in struct tm])
707 AC_TRY_COMPILE([#include <time.h>], [struct tm tim; tim.tm_gmtoff = 0;],
708 [AC_DEFINE(STRUCT_TM_HAS_GMTOFF)
711 AC_MSG_CHECKING([for global timezone variable])
712 dnl FIXME: we don't want a link check here because that won't work
713 dnl when cross-compiling. So instead we make an assumption that
714 dnl the header file will mention timezone if it exists.
715 AC_TRY_COMPILE([#include <time.h>], [long z2 = timezone;],
716 [AC_DEFINE(HAVE_TIMEZONE)
718 [AC_MSG_RESULT(no)])])
722 AC_CHECK_PROGS(PERL, perl, false)
728 SIGNAL_HANDLER=include/i386-signal.h
731 SIGNAL_HANDLER=include/sparc-signal.h
734 SYSDEP_SOURCES=sysdep/ia64.c
735 test -d sysdep || mkdir sysdep
738 SIGNAL_HANDLER=include/default-signal.h
742 # If we're using sjlj exceptions, forget what we just learned.
743 if test "$libgcj_sjlj" = yes; then
744 SIGNAL_HANDLER=include/default-signal.h
747 AC_SUBST(SYSDEP_SOURCES)
749 AC_LINK_FILES($SIGNAL_HANDLER, include/java-signal.h)
751 if test "${multilib}" = "yes"; then
752 multilib_arg="--enable-multilib"
760 AC_OUTPUT(Makefile libgcj.spec libgcj-test.spec gcj/Makefile include/Makefile testsuite/Makefile,
761 [if test -n "$CONFIG_FILES"; then
762 ac_file=Makefile . ${libgcj_basedir}/../config-ml.in
767 with_multisubdir=${with_multisubdir}
768 ac_configure_args="${multilib_arg} ${ac_configure_args}"
769 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
770 libgcj_basedir=${libgcj_basedir}