2003-10-22 David Daney <ddaney@avtrex.com)
[official-gcc.git] / libjava / configure.in
blobad14a9190b5fb9ef933c11500b92ed09cc88e134
1 dnl Process this with autoconf to create configure
2 AC_INIT(java/lang/System.java)
4 # This works around the fact that libtool configuration may change LD
5 # for this particular configuration, but some shells, instead of
6 # keeping the changes in LD private, export them just because LD is
7 # exported.
8 ORIGINAL_LD_FOR_MULTILIBS=$LD
10 AC_PROG_LN_S
12 dnl We use these options to decide which functions to include.
13 AC_ARG_WITH(target-subdir,
14 [  --with-target-subdir=SUBDIR
15                            configuring in a subdirectory])
16 AC_ARG_WITH(cross-host,
17 [  --with-cross-host=HOST  configuring with a cross compiler])
19 AC_ARG_WITH(newlib,
20 [  --with-newlib           Configuring with newlib])
22 LIBGCJ_CONFIGURE(.)
24 AM_CONFIG_HEADER(include/config.h gcj/libgcj-config.h)
26 # Only use libltdl for non-newlib builds.
27 if test "x${with_newlib}" = "x" || test "x${with_newlib}" = "xno"; then
28    AC_LIBLTDL_CONVENIENCE
29    AC_LIBTOOL_DLOPEN
30    DIRLTDL=libltdl
31    AC_DEFINE(USE_LTDL, 1, [Define if libltdl is in use.])
32    # Sigh.  Libtool's macro doesn't do the right thing.
33    INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
34    # FIXME: this is a hack.
35    sub_auxdir="`cd $ac_aux_dir && ${PWDCMD-pwd}`"
36    ac_configure_args="$ac_configure_args --with-auxdir=$sub_auxdir"
38 AC_SUBST(INCLTDL)
39 AC_SUBST(LIBLTDL)
40 AC_SUBST(DIRLTDL)
41 AM_PROG_LIBTOOL
42 AC_CONFIG_SUBDIRS($DIRLTDL)
44 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
45    COMPPATH=.
46 else
47    COMPPATH=..
49 AC_SUBST(COMPPATH)
51 dnl The -no-testsuite modules omit the test subdir.
52 AM_CONDITIONAL(TESTSUBDIR, test -d $srcdir/testsuite)
54 dnl Should the runtime set system properties by examining the 
55 dnl environment variable GCJ_PROPERTIES?
56 AC_ARG_ENABLE(getenv-properties,
57 [  --disable-getenv-properties
58                           don't set system properties from GCJ_PROPERTIES])
60 dnl Whether GCJ_PROPERTIES is used depends on the target.
61 if test -z "$enable_getenv_properties"; then
62    enable_getenv_properties=${enable_getenv_properties_default-yes}
64 if test "$enable_getenv_properties" = no; then
65    AC_DEFINE(DISABLE_GETENV_PROPERTIES, 1,
66      [Define if system properties shouldn't be read from getenv("GCJ_PROPERTIES").])
69 dnl Whether we should use arguments to main()
70 if test -z "$enable_main_args"; then
71    enable_main_args=${enable_main_args_default-yes}
73 if test "$enable_main_args" = no; then
74    AC_DEFINE(DISABLE_MAIN_ARGS, 1, [Define if we should ignore arguments to main().])
78 dnl Should we use hashtable-based synchronization?
79 dnl Currently works only for Linux X86/ia64
80 dnl Typically faster and more space-efficient
81 AC_ARG_ENABLE(hash-synchronization,
82 [  --enable-hash-synchronization
83                           use global hash table for monitor locks])
85 if test -z "$enable_hash_synchronization"; then
86    enable_hash_synchronization=$enable_hash_synchronization_default
89 # Do we allow intermodule optimizations (i.e. compiling many files at once)?
90 AC_ARG_ENABLE(libgcj-multifile,
91 [  --enable-libgcj-multifile
92                           allow compilation of several files at once],
93 [case "${enableval}" in
94   yes) enable_libgcj_multifile=yes ;;
95   no)  enable_libgcj_multifile=no ;;
96   *) AC_MSG_ERROR(bad value ${enableval} for --enable-libgcj-multifile) ;;
97 esac],[enable_libgcj_multifile=no])
98 AM_CONDITIONAL(ONESTEP, test "$enable_libgcj_multifile" = yes)
100 dnl configure.host sets slow_pthread_self if the synchronization code should 
101 dnl try to avoid pthread_self calls by caching thread IDs in a hashtable.
102 if test "${slow_pthread_self}" = "yes"; then
103   AC_DEFINE(SLOW_PTHREAD_SELF, 1,
104     [Define if if the synchronization code should try to avoid pthread_self calls by caching thread IDs in a hashtable.])
108 dnl See if the user has requested runtime debugging.
109 LIBGCJDEBUG="false"
110 AC_SUBST(LIBGCJDEBUG)
111 AC_ARG_ENABLE(libgcj-debug,
112 [  --enable-libgcj-debug   enable runtime debugging code],
113   if test "$enable_libgcj_debug" = yes; then
114     AC_DEFINE(DEBUG, 1, [Define this if you want runtime debugging enabled.])
115     LIBGCJDEBUG="true"
116   fi)
118 dnl See if the user has the interpreter included.
119 AC_ARG_ENABLE(interpreter,
120 [  --enable-interpreter    enable interpreter],
121   if test "$enable_interpreter" = yes; then
122     # This can also be set in configure.host.
123     libgcj_interpreter=yes
124   elif test "$enable_interpreter" = no; then
125     libgcj_interpreter=no
126   fi)
128 if test "$libgcj_interpreter" = yes; then
129    AC_DEFINE(INTERPRETER, 1, [Define if you want a bytecode interpreter.])
131 INTERPRETER="$libgcj_interpreter"
132 AC_SUBST(INTERPRETER)
134 AC_MSG_CHECKING([for exception model to use])
135 AC_LANG_SAVE
136 AC_LANG_CPLUSPLUS
137 AC_ARG_ENABLE(sjlj-exceptions,
138 [  --enable-sjlj-exceptions  force use of builtin_setjmp for exceptions],
139 [:],
140 [dnl Botheration.  Now we've got to detect the exception model.
141 dnl Link tests against libgcc.a are problematic since -- at least
142 dnl as of this writing -- we've not been given proper -L bits for
143 dnl single-tree newlib and libgloss.
145 dnl This is what AC_TRY_COMPILE would do if it didn't delete the
146 dnl conftest files before we got a change to grep them first.
147 cat > conftest.$ac_ext << EOF
148 [#]line __oline__ "configure"
149 struct S { ~S(); };
150 void bar();
151 void foo()
153   S s;
154   bar();
157 old_CXXFLAGS="$CXXFLAGS"  
158 CXXFLAGS=-S
159 if AC_TRY_EVAL(ac_compile); then
160   if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
161     enable_sjlj_exceptions=yes
162   elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
163     enable_sjlj_exceptions=no
164   fi
166 CXXFLAGS="$old_CXXFLAGS"
167 rm -f conftest*])
168 if test x$enable_sjlj_exceptions = xyes; then
169   AC_DEFINE(SJLJ_EXCEPTIONS, 1,
170         [Define if the compiler is configured for setjmp/longjmp exceptions.])
171   ac_exception_model_name=sjlj
172 elif test x$enable_sjlj_exceptions = xno; then
173   ac_exception_model_name="call frame"
174 else
175   AC_MSG_ERROR([unable to detect exception model])
177 AC_LANG_RESTORE
178 AC_MSG_RESULT($ac_exception_model_name)
180 # If we are non using SJLJ exceptions, and this host does not have support 
181 # for unwinding from a signal handler, enable checked dereferences and divides.
182 if test $can_unwind_signal = no && test $enable_sjlj_exceptions = no; then
183   CHECKREFSPEC=-fcheck-references
184   DIVIDESPEC=-fuse-divide-subroutine
185   EXCEPTIONSPEC=
188 dnl See if the user wants to disable java.net.  This is the mildly
189 dnl ugly way that we admit that target-side configuration sucks.
190 AC_ARG_ENABLE(java-net,
191 [  --disable-java-net      disable java.net])
193 dnl Whether java.net is built by default can depend on the target.
194 if test -z "$enable_java_net"; then
195    enable_java_net=${enable_java_net_default-yes}
197 if test "$enable_java_net" = no; then
198    AC_DEFINE(DISABLE_JAVA_NET, 1, [Define if java.net native functions should be stubbed out.])
201 dnl See if the user wants to configure without libffi.  Some
202 dnl architectures don't support it, and default values are set in 
203 dnl configure.host.
204 AC_ARG_WITH(libffi,
205 [  --without-libffi        don't use libffi],,with_libffi=${with_libffi_default-yes})
207 LIBFFI=
208 LIBFFIINCS=
209 if test "$with_libffi" != no; then
210    AC_DEFINE(USE_LIBFFI, 1, [Define if we're to use libffi.])
211    LIBFFI=../libffi/libffi_convenience.la
212    LIBFFIINCS='-I$(top_srcdir)/../libffi/include -I../libffi/include'
214 AC_SUBST(LIBFFI)
215 AC_SUBST(LIBFFIINCS)
217 dnl See if the user wants to disable JVMPI support.
218 AC_ARG_ENABLE(jvmpi,
219 [  --disable-jvmpi         disable JVMPI support])
221 if test "$enable_jvmpi" != no; then
222     AC_DEFINE(ENABLE_JVMPI, 1, [Define if you are using JVMPI.])
225 dnl If the target is an eCos system, use the appropriate eCos
226 dnl I/O routines.
227 dnl FIXME: this should not be a local option but a global target
228 dnl system; at present there is no eCos target.
229 TARGET_ECOS=${PROCESS-"no"}
230 AC_ARG_WITH(ecos,
231 [  --with-ecos             enable runtime eCos target support],
232 TARGET_ECOS="$with_ecos"
235 EXTRA_CC_FILES=
236 AC_SUBST(EXTRA_CC_FILES)
238 PLATFORMOBJS=
239 case "$TARGET_ECOS" in
240    no) case "$host" in
241       *mingw*)
242             PLATFORM=Win32
243             PLATFORMNET=Win32
244             PLATFORMOBJS=win32.lo
245             PLATFORMH=win32.h
246         CHECK_FOR_BROKEN_MINGW_LD
247       ;;
248       *)
249             PLATFORM=Posix
250             PLATFORMNET=Posix
251             PLATFORMOBJS=posix.lo
252             PLATFORMH=posix.h
253       ;;
254       esac
255       ;;
256    *)
257       PLATFORM=Ecos
258       PLATFORMNET=NoNet
259       AC_DEFINE(ECOS, 1, [Define if you're running eCos.])
260       PLATFORMOBJS=posix.lo
261       PLATFORMH=posix.h
262       ;;
263 esac
264 AC_SUBST(PLATFORMOBJS)
265 AC_LINK_FILES(include/$PLATFORMH, include/platform.h)
267 AC_EGREP_HEADER(uint32_t, stdint.h, AC_DEFINE(HAVE_INT32_DEFINED, 1,
268                                       [Define if you have int32_t and uint32_t.]))
269 AC_EGREP_HEADER(uint32_t, inttypes.h, AC_DEFINE(HAVE_INT32_DEFINED, 1,
270                                         [Define if you have int32_t and uint32_t.]))
271 AC_EGREP_HEADER(u_int32_t, sys/types.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED, 1,
272                                           [Define if you have u_int32_t]))
273 AC_EGREP_HEADER(u_int32_t, sys/config.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED, 1,
274                                            [Define if you have u_int32_t]))
277 dnl These may not be defined in a non-ANS conformant embedded system.
278 dnl FIXME: Should these case a runtime exception in that case?
279 AC_EGREP_HEADER(mktime, time.h, AC_DEFINE(HAVE_MKTIME, 1,
280                                   [Define is you have 'mktime' in <time.h>]))
281 AC_EGREP_HEADER(localtime, time.h, AC_DEFINE(HAVE_LOCALTIME, 1,
282                                   [Define is you have 'localtime' in <time.h>]))
284 dnl Create the subdirectory for natFileDescriptor.cc, or the attempt
285 dnl to create the link will fail.
286 test -d java || mkdir java
287 test -d java/io || mkdir java/io
288 test -d gnu || mkdir gnu
289 AC_LINK_FILES(java/io/natFile${FILE-${PLATFORM}}.cc, java/io/natFile.cc)
290 AC_LINK_FILES(java/io/natFileDescriptor${FILE-${PLATFORM}}.cc, java/io/natFileDescriptor.cc)
292 dnl Likewise for ConcreteProcess.java and natConcreteProcess.cc.
293 test -d java/lang || mkdir java/lang
294 AC_LINK_FILES(java/lang/${PLATFORM}Process.java, java/lang/ConcreteProcess.java)
295 AC_LINK_FILES(java/lang/nat${PLATFORM}Process.cc, java/lang/natConcreteProcess.cc)
297 dnl Likewise for natInetAddress.cc and natNetworkInterface.cc.
298 test -d java/net || mkdir java/net
299 AC_LINK_FILES(java/net/natInetAddress${PLATFORMNET}.cc, java/net/natInetAddress.cc)
300 AC_LINK_FILES(java/net/natNetworkInterface${PLATFORMNET}.cc, java/net/natNetworkInterface.cc)
302 dnl Likewise for natPlainSocketImpl.cc and natPlainDatagramSocketImpl.ca.c
303 test -d gnu/java || mkdir gnu/java
304 test -d gnu/java/net || mkdir gnu/java/net
305 AC_LINK_FILES(gnu/java/net/natPlainSocketImpl${PLATFORMNET}.cc, gnu/java/net/natPlainSocketImpl.cc)
306 AC_LINK_FILES(gnu/java/net/natPlainDatagramSocketImpl${PLATFORMNET}.cc, gnu/java/net/natPlainDatagramSocketImpl.cc)
308 case "${host}" in
309     *mingw*)
310       SYSTEMSPEC="-lgdi32 -lwsock32 -lws2_32"
311     ;;
312     *)
313       SYSTEMSPEC=
314     ;;
315 esac
316 AC_SUBST(SYSTEMSPEC)
318 LIBGCJTESTSPEC="-L`${PWDCMD-pwd}`/.libs -rpath `${PWDCMD-pwd}`/.libs"
319 AC_SUBST(LIBGCJTESTSPEC)
321 AC_ARG_WITH(system-zlib,
322 [  --with-system-zlib      use installed libz])
323 ZLIBSPEC=
324 AC_SUBST(ZLIBSPEC)
325 ZLIBTESTSPEC=
326 AC_SUBST(ZLIBTESTSPEC)
328 AC_PATH_XTRA
330 dnl Determine which AWT peer libraries to build
331 AC_ARG_ENABLE(java-awt,
332 [  --enable-java-awt       list of AWT peer implementations to be built])
334 peerlibs="`echo ${enable_java_awt} | tr ',' ' '`"
335 use_xlib_awt=""
336 use_gtk_awt=""
337 # The default toolkit to use is the first one specified.
338 TOOLKIT=
339 AC_SUBST(TOOLKIT)
341 for peer in $peerlibs ; do
342   case $peer in
343     xlib)
344       if test "$no_x" = yes; then
345         echo "*** xlib peers requested but no X library available" 1>&2
346         exit 1
347       else
348         use_xlib_awt="yes"
349         if test -z "$TOOLKIT"; then
350            TOOLKIT=gnu.awt.xlib.XToolkit
351         fi
352       fi
353       ;;
354     gtk)
355       if test "$no_x" = yes; then
356          echo "*** xlib peers requested but no X library available" 1>&2
357          exit 1
358       else
359          use_gtk_awt=yes
360          if test -z "$TOOLKIT"; then
361             TOOLKIT=gnu.java.awt.peer.gtk.GtkToolkit
362          fi
363          test -d jniinclude || mkdir jniinclude
364       fi
365       ;;
366     no)
367       use_xlib_awt=
368       use_gtk_awt=
369       break
370       ;;
371     *)
372       echo "*** unrecognised argument \"${peer}\" for --enable-java-awt" 1>&2
373       exit 1
374   esac
375 done
377 AM_CONDITIONAL(XLIB_AWT, test "$use_xlib_awt" = yes)
378 AM_CONDITIONAL(GTK_AWT, test "$use_gtk_awt" = yes)
381 dnl FIXME: this should be _libs on some hosts.
382 libsubdir=.libs
384 dnl Allow the GC to be disabled.  Can be useful when debugging.
385 AC_MSG_CHECKING([for garbage collector to use])
386 AC_ARG_ENABLE(java-gc,
387 changequote(<<,>>)dnl
388 <<  --enable-java-gc=TYPE   choose garbage collector [boehm]>>,
389 changequote([,])
390   GC=$enableval,
391   GC=boehm)
392 GCLIBS=
393 GCINCS=
394 GCDEPS=
395 GCOBJS=
396 GCSPEC=
397 JC1GCSPEC=
398 GCTESTSPEC=
399 case "$GC" in
400  boehm)
401     AC_MSG_RESULT(boehm)
402     GCLIBS=../boehm-gc/libgcjgc_convenience.la
403     JC1GCSPEC='-fuse-boehm-gc'
404     GCTESTSPEC="-L`${PWDCMD-pwd}`/../boehm-gc/.libs -rpath `${PWDCMD-pwd}`/../boehm-gc/.libs"
406     dnl We also want to pick up some cpp flags required when including
407     dnl boehm-config.h.  Yuck.
408     GCINCS="`cat ../boehm-gc/boehm-cflags`"
409     GCOBJS=boehm.lo
410     GCHDR=boehm-gc.h
411     dnl The POSIX thread support needs to know this.
412     AC_DEFINE(HAVE_BOEHM_GC, 1, [Define if Boehm GC in use.])
413     ;;
414  no)
415     AC_MSG_RESULT(none)
416     GCOBJS=nogc.lo
417     GCHDR=no-gc.h
418     ;;
419  *)
420     AC_MSG_ERROR(unrecognized collector \"$GC\")
421     ;;
422 esac
423 AC_SUBST(GCLIBS)
424 AC_SUBST(GCINCS)
425 AC_SUBST(GCDEPS)
426 AC_SUBST(GCOBJS)
427 AC_SUBST(GCSPEC)
428 AC_SUBST(JC1GCSPEC)
429 AC_SUBST(GCTESTSPEC)
430 AC_LINK_FILES(include/$GCHDR, include/java-gc.h)
433 AC_MSG_CHECKING([for thread model used by GCC])
434 THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
435 AC_MSG_RESULT([$THREADS])
437 case "$THREADS" in
438  no | none | single)
439     THREADS=none
440     ;;
441  posix | pthreads)
442     THREADS=posix
443     case "$host" in
444      *-*-linux*)
445         AC_DEFINE(LINUX_THREADS, 1, [Define if using POSIX threads on Linux.])
446         ;;
447     esac
448     ;;
449  win32)
450     ;;
451  decosf1 | irix | mach | os2 | solaris | dce | vxworks)
452     AC_MSG_ERROR(thread package $THREADS not yet supported)
453     ;;
454  *)
455     AC_MSG_ERROR($THREADS is an unknown thread package)
456     ;;
457 esac
459 THREADCXXFLAGS=
460 THREADLDFLAGS=
461 THREADLIBS=
462 THREADINCS=
463 THREADDEPS=
464 THREADOBJS=
465 THREADH=
466 THREADSPEC=
467 case "$THREADS" in
468  posix)
469     case "$host" in
470      *-*-cygwin*)
471         # Don't set THREADLIBS here.  Cygwin doesn't have -lpthread.
472         ;;
473 changequote(<<,>>)   
474      *-*-freebsd[1234]*)
475 changequote([,])   
476         # Before FreeBSD 5, it didn't have -lpthread (or any library which
477         # merely adds pthread_* functions) but it does have a -pthread switch
478         # which is required at link-time to select -lc_r *instead* of -lc.
479         THREADLDFLAGS=-pthread
480         # Don't set THREADSPEC here as might be expected since -pthread is
481         # not processed when found within a spec file, it must come from
482         # the command line.  For now, the user must provide the -pthread
483         # switch to link code compiled with gcj.  In future, consider adding
484         # support for weak references to pthread_* functions ala gthr.h API.
485         THREADSPEC='%{!pthread: %eUnder this configuration, the user must provide -pthread when linking.}'
486         ;;
487      *-*-freebsd*)
488         # FreeBSD 5 implements a model much closer to other modern UNIX
489         # which support threads.  However, it still does not support
490         # -lpthread.
491         THREADLDFLAGS=-pthread
492         THREADSPEC=-lc_r
493         ;;
494      alpha*-dec-osf*)
495         THREADCXXFLAGS=-pthread
496         # boehm-gc needs some functions from librt, so link that too.
497         THREADLIBS='-lpthread -lrt'
498         THREADSPEC='-lpthread -lrt'
499         ;;
500      *)
501         THREADLIBS=-lpthread
502         THREADSPEC=-lpthread
503         ;;
504     esac
505     THREADOBJS=posix-threads.lo
506     THREADH=posix-threads.h
507     # MIT pthreads doesn't seem to have the mutexattr functions.
508     # But for now we don't check for it.  We just assume you aren't
509     # using MIT pthreads.
510     AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT, 1, [Define if using POSIX threads that have the mutexattr functions.])
512     # If we're using the Boehm GC, then we happen to know that it
513     # defines _REENTRANT, so we don't bother.  Eww.
514     if test "$GC" != boehm; then
515        AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
516     fi
517     AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Required define if using POSIX threads])
518     ;;
520  win32)
521     THREADOBJS=win32-threads.lo
522     THREADH=win32-threads.h
523     ;;
525  none)
526     THREADOBJS=no-threads.lo
527     THREADH=no-threads.h
528     ;;
529 esac
530 AC_LINK_FILES(include/$THREADH, include/java-threads.h)
531 AC_SUBST(THREADLIBS)
532 AC_SUBST(THREADINCS)
533 AC_SUBST(THREADDEPS)
534 AC_SUBST(THREADOBJS)
535 AC_SUBST(THREADSPEC)
536 AC_SUBST(THREADLDFLAGS)
537 AC_SUBST(THREADCXXFLAGS)
539 if test -d sysdep; then true; else mkdir sysdep; fi
540 AC_LINK_FILES(sysdep/$sysdeps_dir/locks.h, sysdep/locks.h)
542 HASH_SYNC_SPEC=
543 # Hash synchronization is only useful with posix threads right now.
544 if test "$enable_hash_synchronization" = yes && test "$THREADS" != "none"; then
545    HASH_SYNC_SPEC=-fhash-synchronization
546    AC_DEFINE(JV_HASH_SYNCHRONIZATION, 1, [Define if hash synchronization is in use])
548 AC_SUBST(HASH_SYNC_SPEC)
551 AM_CONDITIONAL(USING_GCC, test "$GCC" = yes)
553 CANADIAN=no
554 NULL_TARGET=no
555 NATIVE=yes
557 # We're in the tree with gcc, and need to include some of its headers.
558 GCC_UNWIND_INCLUDE='-I$(libgcj_basedir)/../gcc'
560 # Figure out where generated headers like libgcj-config.h get installed.
561 changequote(,)dnl
562 gcc_version_trigger=${libgcj_basedir}/../gcc/version.c
563 gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
564 gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
565 tool_include_dir='$(libdir)/gcc/$(target_alias)/'${gcc_version}/include
566 changequote([,])dnl
567 AC_SUBST(tool_include_dir)
568 AC_SUBST(gcc_version)
570 if test "x${with_newlib}" = "xyes"; then
571    # We are being configured with a cross compiler.  AC_REPLACE_FUNCS
572    # may not work correctly, because the compiler may not be able to
573    # link executables.
575    # We assume newlib.  This lets us hard-code the functions we know
576    # we'll have.
577    AC_DEFINE(HAVE_MEMMOVE, 1, [Define if you have memmove.])
578    AC_DEFINE(HAVE_MEMCPY, 1, [Define if you have memcpy.])
579    AC_DEFINE(HAVE_STRERROR, 1, [Define if you have strerror.])
580    AC_DEFINE(HAVE_TIME, 1, [Define if you have time.])
581    AC_DEFINE(HAVE_GMTIME_R, 1, [Define if you have the 'gmtime_r' function])
582    AC_DEFINE(HAVE_LOCALTIME_R, 1, [Define if you have the 'localtime_r' function.])
583    AC_DEFINE(HAVE_USLEEP_DECL, 1, [Define if usleep is declared in <unistd.h>.])
584    dnl This is only for POSIX threads.
585    AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT, 1, [Define if using POSIX threads that have the mutexattr functions.])
586    dnl We also assume we are using gcc, which provides alloca.
587    AC_DEFINE(HAVE_ALLOCA)
589    dnl Assume we do not have getuid and friends.
590    AC_DEFINE(NO_GETUID, 1, [Define if getuid() and friends are missing.])
591    PLATFORMNET=NoNet
592 else
593    AC_CHECK_FUNCS(strerror ioctl select fstat open fsync sleep opendir)
594    AC_CHECK_FUNCS(gmtime_r localtime_r readdir_r getpwuid_r getcwd)
595    AC_CHECK_FUNCS(access stat mkdir rename rmdir unlink realpath utime chmod)
596    AC_CHECK_FUNCS(nl_langinfo setlocale)
597    AC_CHECK_FUNCS(inet_aton inet_addr, break)
598    AC_CHECK_FUNCS(inet_pton uname inet_ntoa)
599    AC_CHECK_FUNCS(fork execvp pipe sigaction ftruncate)
600    AC_CHECK_HEADERS(execinfo.h unistd.h dlfcn.h) 
601    AC_CHECK_FUNC(backtrace, [
602      case "$host" in
603        ia64-*-linux*)
604          # Has broken backtrace()
605          ;;
606        mips*-*-linux*)
607          # Has broken backtrace(), but we supply our own.
608          if test -d sysdep; then true; else mkdir -p sysdep; fi
609          EXTRA_CC_FILES="${EXTRA_CC_FILES} sysdep/dwarf2-backtrace.cc"
610          AC_DEFINE(HAVE_BACKTRACE, 1,
611            [Define if your platform has a working backtrace() function.])
612          ;;
613        *)
614          AC_DEFINE(HAVE_BACKTRACE, 1,
615            [Define if your platform has a working backtrace() function.])
616          ;;
617      esac
618    ], [
619      case "$host" in
620        *mingw*)
621          # Has backtrace() defined in libgcj itself
622          AC_DEFINE(HAVE_BACKTRACE, 1,
623            [Define if your platform has a working backtrace() function.])
624          ;;
625      esac
626    ])
628    AC_CHECK_LIB(dl, dladdr, [
629      if test "x${disable_dladdr}" = "xyes"; then
630        #Broken dladdr().
631        true
632      else
633        AC_DEFINE(HAVE_DLADDR, 1, [Define if you have dladdr()])
634      fi
635    ])
636    if test x"$build" = x"$host"; then
637      AC_CHECK_FILES(/proc/self/exe, [
638        AC_DEFINE(HAVE_PROC_SELF_EXE, 1, [Define if you have /proc/self/exe])])
639    else
640      case $host in
641      *-linux*)
642        AC_DEFINE(HAVE_PROC_SELF_EXE, 1, [Define if you have /proc/self/exe])
643        ;;
644      esac
645    fi
647    AM_ICONV
648    AM_LC_MESSAGES
649    AC_STRUCT_TIMEZONE
651    AC_CHECK_FUNCS(gethostbyname_r, [
652      AC_DEFINE(HAVE_GETHOSTBYNAME_R, 1,
653        [Define if you have the 'gethostbyname_r' function.])
654      # There are two different kinds of gethostbyname_r.
655      # We look for the one that returns `int'.
656      # Hopefully this check is robust enough.
657      AC_EGREP_HEADER(int.*gethostbyname_r, netdb.h, [
658        AC_DEFINE(GETHOSTBYNAME_R_RETURNS_INT, 1, [Define if gethostbyname_r returns 'int'.])])
660      case " $GCINCS " in
661      *" -D_REENTRANT "*) ;;
662      *)
663         dnl On DU4.0, gethostbyname_r is only declared with -D_REENTRANT
664         AC_CACHE_CHECK([whether gethostbyname_r declaration requires -D_REENTRANT],
665         [libjava_cv_gethostbyname_r_needs_reentrant],
666         [ AC_LANG_SAVE
667           AC_LANG_CPLUSPLUS
668           AC_TRY_COMPILE([#include <netdb.h>],
669             [gethostbyname_r("", 0, 0);],
670             [libjava_cv_gethostbyname_r_needs_reentrant=no], [dnl
671                 CPPFLAGS_SAVE="$CPPFLAGS"
672                 CPPFLAGS="$CPPFLAGS -D_REENTRANT"
673                 AC_TRY_COMPILE([#include <netdb.h>], [gethostbyname_r("", 0, 0);],
674                     [libjava_cv_gethostbyname_r_needs_reentrant=yes],
675                     [libjava_cv_gethostbyname_r_needs_reentrant=fail])
676                 CPPFLAGS="$CPPFLAGS_SAVE"
677           ])
678           AC_LANG_RESTORE
679         ])
680         if test "x$libjava_cv_gethostbyname_r_needs_reentrant" = xyes; then
681           AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
682         fi
683      ;;
684      esac
686      AC_CACHE_CHECK([for struct hostent_data],
687         [libjava_cv_struct_hostent_data], [dnl
688         AC_TRY_COMPILE([
689 #if GETHOSTBYNAME_R_NEEDS_REENTRANT && !defined(_REENTRANT)
690 # define _REENTRANT 1
691 #endif
692 #include <netdb.h>], [struct hostent_data data;],
693           [libjava_cv_struct_hostent_data=yes],
694           [libjava_cv_struct_hostent_data=no])])
695      if test "x$libjava_cv_struct_hostent_data" = xyes; then
696        AC_DEFINE(HAVE_STRUCT_HOSTENT_DATA, 1,
697          [Define if struct hostent_data is defined in netdb.h])
698      fi
699    ])
701    # FIXME: libjava source code expects to find a prototype for
702    # gethostbyaddr_r in netdb.h.  The outer check ensures that
703    # HAVE_GETHOSTBYADDR_R will not be defined if the prototype fails
704    # to exist where expected.  (The root issue: AC_CHECK_FUNCS assumes C
705    # linkage check is enough, yet C++ code requires proper prototypes.)
706    AC_EGREP_HEADER(gethostbyaddr_r, netdb.h, [
707    AC_CHECK_FUNCS(gethostbyaddr_r, [
708      AC_DEFINE(HAVE_GETHOSTBYADDR_R, 1,
709        [Define if you have the 'gethostbyaddr_r' function.])
710      # There are two different kinds of gethostbyaddr_r.
711      # We look for the one that returns `int'.
712      # Hopefully this check is robust enough.
713      AC_EGREP_HEADER(int.*gethostbyaddr_r, netdb.h, [
714        AC_DEFINE(GETHOSTBYADDR_R_RETURNS_INT, 1,
715          [Define if gethostbyaddr_r returns 'int'.])])])])
717    AC_CHECK_FUNCS(gethostname, [
718      AC_DEFINE(HAVE_GETHOSTNAME, 1,
719        [Define if you have the 'gethostname' function.])
720      AC_EGREP_HEADER(gethostname, unistd.h, [
721        AC_DEFINE(HAVE_GETHOSTNAME_DECL, 1,
722          [Define if gethostname is declared in <unistd.h>.])])])
724    AC_CHECK_FUNCS(usleep, [
725      AC_EGREP_HEADER(usleep, unistd.h, [
726        AC_DEFINE(HAVE_USLEEP_DECL, 1,
727           [Define if usleep is declared in <unistd.h>.])])])
729    # Look for these functions in the thread library, but only bother
730    # if using POSIX threads.
731    if test "$THREADS" = posix; then
732       save_LIBS="$LIBS"
733       LIBS="$LIBS $THREADLIBS"
734       # Some POSIX thread systems don't have pthread_mutexattr_settype.
735       # E.g., Solaris.
736       AC_CHECK_FUNCS(pthread_mutexattr_settype pthread_mutexattr_setkind_np)
738       # Look for sched_yield.  Up to Solaris 2.6, it is in libposix4, since
739       # Solaris 7 the name librt is preferred.
740       AC_CHECK_FUNCS(sched_yield, , [
741         AC_CHECK_LIB(rt, sched_yield, [
742           AC_DEFINE(HAVE_SCHED_YIELD)
743           THREADLIBS="$THREADLIBS -lrt"
744           THREADSPEC="$THREADSPEC -lrt"], [
745           AC_CHECK_LIB(posix4, sched_yield, [
746             AC_DEFINE(HAVE_SCHED_YIELD)
747             THREADLIBS="$THREADLIBS -lposix4"
748             THREADSPEC="$THREADSPEC -lposix4"])])])
749       LIBS="$save_LIBS"
751       # We can save a little space at runtime if the mutex has m_count
752       # or __m_count.  This is a nice hack for Linux.
753       AC_TRY_COMPILE([#include <pthread.h>], [
754           extern pthread_mutex_t *mutex; int q = mutex->m_count;
755         ], AC_DEFINE(PTHREAD_MUTEX_HAVE_M_COUNT, 1,
756              [Define if pthread_mutex_t has m_count member.]), [
757         AC_TRY_COMPILE([#include <pthread.h>], [
758             extern pthread_mutex_t *mutex; int q = mutex->__m_count;
759           ], AC_DEFINE(PTHREAD_MUTEX_HAVE___M_COUNT, 1,
760             [Define if pthread_mutex_t has __m_count member.]))])
761    fi
763    # We require a way to get the time.
764    time_found=no
765    AC_CHECK_FUNCS(gettimeofday time ftime, time_found=yes)
766    if test "$time_found" = no; then
767       AC_MSG_ERROR([no function found to get the time])
768    fi
770    AC_CHECK_FUNCS(memmove)
772    # We require memcpy.
773    memcpy_found=no
774    AC_CHECK_FUNCS(memcpy, memcpy_found=yes)
775    if test "$memcpy_found" = no; then
776       AC_MSG_ERROR([memcpy is required])
777    fi
779    AC_CHECK_LIB(dl, dlopen, [
780        AC_DEFINE(HAVE_DLOPEN, 1, [Define if dlopen is available])])
782    # Some library-finding code we stole from Tcl.
783    #--------------------------------------------------------------------
784    #    Check for the existence of the -lsocket and -lnsl libraries.
785    #    The order here is important, so that they end up in the right
786    #    order in the command line generated by make.  Here are some
787    #    special considerations:
788    #    1. Use "connect" and "accept" to check for -lsocket, and
789    #       "gethostbyname" to check for -lnsl.
790    #    2. Use each function name only once:  can't redo a check because
791    #       autoconf caches the results of the last check and won't redo it.
792    #    3. Use -lnsl and -lsocket only if they supply procedures that
793    #       aren't already present in the normal libraries.  This is because
794    #       IRIX 5.2 has libraries, but they aren't needed and they're
795    #       bogus:  they goof up name resolution if used.
796    #    4. On some SVR4 systems, can't use -lsocket without -lnsl too.
797    #       To get around this problem, check for both libraries together
798    #       if -lsocket doesn't work by itself.
799    #--------------------------------------------------------------------
801    AC_CACHE_CHECK([for socket libraries], gcj_cv_lib_sockets,
802     [gcj_cv_lib_sockets=
803      gcj_checkBoth=0
804      unset ac_cv_func_connect
805      AC_CHECK_FUNC(connect, gcj_checkSocket=0, gcj_checkSocket=1)
806      if test "$gcj_checkSocket" = 1; then
807          unset ac_cv_func_connect
808          AC_CHECK_LIB(socket, main, gcj_cv_lib_sockets="-lsocket",
809                       gcj_checkBoth=1)
810      fi
811      if test "$gcj_checkBoth" = 1; then
812          gcj_oldLibs=$LIBS
813          LIBS="$LIBS -lsocket -lnsl"
814          unset ac_cv_func_accept
815          AC_CHECK_FUNC(accept,
816                        [gcj_checkNsl=0
817                         gcj_cv_lib_sockets="-lsocket -lnsl"])
818          unset ac_cv_func_accept
819          LIBS=$gcj_oldLibs
820      fi
821      unset ac_cv_func_gethostbyname
822      gcj_oldLibs=$LIBS
823      LIBS="$LIBS $gcj_cv_lib_sockets"
824      AC_CHECK_FUNC(gethostbyname, ,
825                    [AC_CHECK_LIB(nsl, main,
826                                  [gcj_cv_lib_sockets="$gcj_cv_lib_sockets -lnsl"])])
827      unset ac_cv_func_gethostbyname
828      LIBS=$gcj_oldLIBS
829    ])
830    SYSTEMSPEC="$SYSTEMSPEC $gcj_cv_lib_sockets"
832    if test "$with_system_zlib" = yes; then
833       AC_CHECK_LIB(z, deflate, ZLIBSPEC=-lz, ZLIBSPEC=)
834    fi
836    # Test for Gtk stuff, if asked for.
837    if test "$use_gtk_awt" = yes; then
838       AM_PATH_GTK_2_0(2.0.0,,exit 1)
839       AM_PATH_GLIB_2_0(2.0.0,,exit 1,gthread)
840       dnl XXX Fix me when libart.m4 has the compile test fixed!
841       enable_libarttest=no
842       AM_PATH_LIBART(2.1.0,,exit 1)
843    fi
845    # On Solaris, and maybe other architectures, the Boehm collector
846    # requires -ldl.
847    if test "$GC" = boehm; then
848       AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl")
849    fi
852 if test -z "${with_multisubdir}"; then
853    builddotdot=.
854 else
855 changequote(<<,>>)
856    builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`
857 changequote([,])
860 # Which gcj do we use?
861 which_gcj=default
862 built_gcc_dir="`cd ${builddotdot}/../../gcc && ${PWDCMD-pwd}`"
863 if test -n "${with_cross_host}"; then
864   # We are being configured with a cross compiler. We can't
865   # use ac_exeext, because that is for the target platform.
866   NATIVE=no
867   cross_host_exeext=
868   case "${with_cross_host}" in
869      *mingw* | *cygwin*)
870          cross_host_exeext=.exe
871      ;;
872   esac
873   if test -x "${built_gcc_dir}/gcj${cross_host_exeext}"; then
874      if test x"$build_alias" = x"$with_cross_host"; then
875         # Ordinary cross (host!=target and host=build)
876         which_gcj=built
877      else
878         # Canadian cross (host!=target and host!=build)
879         which_gcj=cross
880      fi
881   else
882      which_gcj=cross
883   fi
884 else
885   # We are being configured with a native or crossed-native compiler
886   if test -x "${built_gcc_dir}/gcj${ac_exeext}"; then
887      if test x"$build" = x"$host"; then
888         # True native build (host=target and host=build)
889         which_gcj=built
890      else
891         # Crossed-native build (host=target and host!=build)
892         which_gcj=cross
893      fi
894   else
895      which_gcj=path
896   fi
898 case "${which_gcj}" in
899    built)
900       GCJ="$built_gcc_dir/gcj -B`${PWDCMD-pwd}`/ -B$built_gcc_dir/"
901    ;;
902    cross)
903       # See the comment in Makefile.am about CANADIAN being a misnomer
904       CANADIAN=yes
905       NULL_TARGET=no
906       if test "x${with_newlib}" = "xyes"; then
907          # FIXME (comment): Why is this needed?
908          GCC_UNWIND_INCLUDE=
909          GCJ="${target_alias}-gcj"
910       else
911          GCJ="${target_alias}-gcj -B`${PWDCMD-pwd}`/"
912       fi
913    ;;
914    path)
915       # See the comment in Makefile.am about CANADIAN being a misnomer
916       CANADIAN=yes
917       NULL_TARGET=yes
918       GCJ="gcj -B`${PWDCMD-pwd}`/"
919    ;;
920 esac
922 # Create it, so that compile/link tests don't fail
923 test -f libgcj.spec || touch libgcj.spec
925 # We must search the source tree for java.lang, since we still don't
926 # have libgcj.jar nor java/lang/*.class
927 GCJ_SAVE_CPPFLAGS=$CPPFLAGS
928 CPPFLAGS="$CPPFLAGS -I`${PWDCMD-pwd}` -I`cd $srcdir && ${PWDCMD-pwd}`"
930 # Since some classes depend on this one, we need its source available
931 # before we can do any GCJ compilation test :-(
932 if test ! -f gnu/classpath/Configuration.java; then
933   test -d gnu || mkdir gnu
934   test -d gnu/classpath || mkdir gnu/classpath
935   sed -e 's,@LIBGCJDEBUG@,$LIBGCJDEBUG,' \
936       -e 's,@TOOLKIT@,$TOOLKIT,' \
937         < $srcdir/gnu/classpath/Configuration.java.in \
938         > gnu/classpath/Configuration.java
939   # We do not want to redirect the output of the grep below to /dev/null,
940   # but we add /dev/null to the input list so that grep will print the
941   # filename of Configuration.java in case it finds any matches.
942   if grep @ gnu/classpath/Configuration.java /dev/null; then
943     AC_MSG_ERROR([configure.in is missing the substitutions above])
944   fi
947 LT_AC_PROG_GCJ
949 CPPFLAGS=$GCJ_SAVE_CPPFLAGS
951 AC_COMPILE_CHECK_SIZEOF(void *)
953 ZLIBS=
954 SYS_ZLIBS=
955 ZINCS=
957 if test -z "$ZLIBSPEC"; then
958    # Use zlib from the GCC tree.
959    ZINCS='-I$(top_srcdir)/../zlib'
960    ZLIBS=../zlib/libzgcj_convenience.la
961 else
962    # System's zlib.
963    SYS_ZLIBS="$ZLIBSPEC"
965 AC_SUBST(ZLIBS)
966 AC_SUBST(SYS_ZLIBS)
967 AC_SUBST(ZINCS)
968 AC_SUBST(DIVIDESPEC)
969 AC_SUBST(CHECKREFSPEC)
970 AC_SUBST(EXCEPTIONSPEC)
971 AC_SUBST(IEEESPEC)
973 AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
974 AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
975 AM_CONDITIONAL(NATIVE, test "$NATIVE" = yes || test "$NULL_TARGET" = yes)
976 AM_CONDITIONAL(NEEDS_DATA_START, test "$NEEDS_DATA_START" = yes && test "$NATIVE" = yes)
977 AC_SUBST(GCC_UNWIND_INCLUDE)
979 if test -n "$with_cross_host" &&
980    test x"$with_cross_host" != x"no"; then
981   toolexecdir='$(exec_prefix)/$(target_alias)'
982   toolexecmainlibdir='$(toolexecdir)/lib'
983 else
984   toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
985   toolexecmainlibdir='$(libdir)'
987 multi_os_directory=`$CC -print-multi-os-directory`
988 case $multi_os_directory in
989   .) toolexeclibdir=$toolexecmainlibdir ;; # Avoid trailing /.
990   *) toolexeclibdir=$toolexecmainlibdir/$multi_os_directory ;;
991 esac
992 AC_SUBST(toolexecdir)
993 AC_SUBST(toolexecmainlibdir)
994 AC_SUBST(toolexeclibdir)
996 # Determine gcj version number.
997 changequote(<<,>>)
998 gcjversion=`$GCJ -v 2>&1 | sed -n 's/^.*version \([^ ]*\).*$/\1/p'`
999 changequote([,])
1000 GCJVERSION=$gcjversion
1001 AC_SUBST(GCJVERSION)
1002 AC_DEFINE_UNQUOTED(GCJVERSION, "$GCJVERSION", [Short GCJ version ID])
1004 dnl We check for sys/filio.h because Solaris 2.5 defines FIONREAD there.
1005 dnl On that system, sys/ioctl.h will not include sys/filio.h unless
1006 dnl BSD_COMP is defined; just including sys/filio.h is simpler.
1007 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 net/if.h pwd.h sys/config.h stdint.h langinfo.h locale.h)
1008 dnl We avoid AC_HEADER_DIRENT since we really only care about dirent.h
1009 dnl for now.  If you change this, you also must update natFile.cc.
1010 AC_CHECK_HEADERS(dirent.h)
1011 AC_CHECK_HEADERS(inttypes.h, [
1012     AC_DEFINE(HAVE_INTTYPES_H, 1, [Define if <inttypes.h> is available])
1013     AC_DEFINE(JV_HAVE_INTTYPES_H, 1, [Define if <inttypes.h> is available])
1015 AC_HEADER_SYS_WAIT
1017 AC_CHECK_TYPE([ssize_t], [int])
1019 AC_MSG_CHECKING([for in_addr_t])
1020 AC_TRY_COMPILE([#include <sys/types.h>
1021 #if STDC_HEADERS
1022 #include <stdlib.h>
1023 #include <stddef.h>
1024 #endif
1025 #if HAVE_NETINET_IN_H
1026 #include <netinet/in.h>
1027 #endif], [in_addr_t foo;],
1028   [AC_DEFINE(HAVE_IN_ADDR_T, 1,
1029      [Define to 1 if 'in_addr_t' is defined in sys/types.h or netinet/in.h.])
1030    AC_MSG_RESULT(yes)],
1031   [AC_MSG_RESULT(no)])
1033 AC_MSG_CHECKING([whether struct ip_mreq is in netinet/in.h])
1034 AC_TRY_COMPILE([#include <netinet/in.h>], [struct ip_mreq mreq;],
1035   [AC_DEFINE(HAVE_STRUCT_IP_MREQ, 1,
1036      [Define if struct ip_mreq is defined in netinet/in.h.])
1037    AC_MSG_RESULT(yes)],
1038   [AC_MSG_RESULT(no)])
1040 AC_MSG_CHECKING([whether struct ipv6_mreq is in netinet/in.h])
1041 AC_TRY_COMPILE([#include <netinet/in.h>], [struct ipv6_mreq mreq6;],
1042   [AC_DEFINE(HAVE_STRUCT_IPV6_MREQ, 1,
1043      [Define if struct ipv6_mreq is defined in netinet/in.h.])
1044    AC_MSG_RESULT(yes)],
1045   [AC_MSG_RESULT(no)])
1047 AC_MSG_CHECKING([whether struct sockaddr_in6 is in netinet/in.h])
1048 AC_TRY_COMPILE([#include <netinet/in.h>], [struct sockaddr_in6 addr6;],
1049   [AC_DEFINE(HAVE_INET6, 1,
1050      [Define if inet6 structures are defined in netinet/in.h.])
1051    AC_MSG_RESULT(yes)],
1052   [AC_MSG_RESULT(no)])
1054 AC_MSG_CHECKING([for socklen_t in sys/socket.h])
1055 AC_TRY_COMPILE([#define _POSIX_PII_SOCKET
1056 #include <sys/types.h>
1057 #include <sys/socket.h>], [socklen_t x = 5;],
1058   [AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define it socklen_t typedef is in sys/socket.h.])
1059    AC_MSG_RESULT(yes)],
1060   [AC_MSG_RESULT(no)])
1062 AC_MSG_CHECKING([for tm_gmtoff in struct tm])
1063 AC_TRY_COMPILE([#include <time.h>], [struct tm tim; tim.tm_gmtoff = 0;],
1064   [AC_DEFINE(STRUCT_TM_HAS_GMTOFF, 1, [Define if struct tm has tm_gmtoff field.])
1065    AC_MSG_RESULT(yes)],
1066   [AC_MSG_RESULT(no)
1067    AC_MSG_CHECKING([for global timezone variable])
1068    dnl FIXME: we don't want a link check here because that won't work
1069    dnl when cross-compiling.  So instead we make an assumption that
1070    dnl the header file will mention timezone if it exists.
1071    dnl Don't find the win32 function timezone
1072    AC_TRY_COMPILE([#include <time.h>], [void i(){long z2 = 2*timezone;}],
1073      [AC_DEFINE(HAVE_TIMEZONE, 1, [Define if global 'timezone' exists.])
1074       AC_MSG_RESULT(yes)],
1075      [AC_MSG_RESULT(no)
1076        AC_MSG_CHECKING([for global _timezone variable])
1077        dnl FIXME: As above, don't want link check
1078        AC_TRY_COMPILE([#include <time.h>], [long z2 = _timezone;],
1079          [AC_DEFINE(HAVE_UNDERSCORE_TIMEZONE, 1,
1080             [Define if your platform has the global _timezone variable.])
1081           AC_MSG_RESULT(yes)],
1082           [AC_MSG_RESULT(no)])])])
1084 AC_FUNC_ALLOCA
1085 AC_FUNC_MMAP
1087 AC_CHECK_PROGS(PERL, perl, false)
1089 SYSDEP_SOURCES=
1091 case "${host}" in
1092  i?86-*-linux*)
1093     SIGNAL_HANDLER=include/i386-signal.h
1094     ;;
1095  sparc*-sun-solaris*)
1096     SIGNAL_HANDLER=include/sparc-signal.h
1097     ;;
1098 # ia64-*)
1099 #    SYSDEP_SOURCES=sysdep/ia64.c
1100 #    test -d sysdep || mkdir sysdep
1101 #    ;;
1102  ia64-*-linux*)
1103     SIGNAL_HANDLER=include/dwarf2-signal.h
1104     ;;
1105  powerpc-*-linux*)
1106     SIGNAL_HANDLER=include/powerpc-signal.h
1107     ;;
1108  alpha*-*-linux*)
1109     SIGNAL_HANDLER=include/dwarf2-signal.h
1110     ;;
1111  s390*-*-linux*)
1112     SIGNAL_HANDLER=include/s390-signal.h
1113     ;;
1114  x86_64*-*-linux*)
1115     SIGNAL_HANDLER=include/x86_64-signal.h
1116     ;;
1117  sparc*-*-linux*)
1118     SIGNAL_HANDLER=include/dwarf2-signal.h
1119     ;;
1120  sh-*-linux* | sh[[34]]*-*-linux*)
1121     SIGNAL_HANDLER=include/dwarf2-signal.h
1122     ;;
1123  *mingw*)
1124     SIGNAL_HANDLER=include/win32-signal.h
1125     ;;
1126  mips*-*-linux*)
1127     SIGNAL_HANDLER=include/mips-signal.h
1128     ;;
1129  *)
1130     SIGNAL_HANDLER=include/default-signal.h
1131     ;;
1132 esac
1134 # If we're using sjlj exceptions, forget what we just learned.
1135 if test "$enable_sjlj_exceptions" = yes; then
1136    SIGNAL_HANDLER=include/default-signal.h
1139 # Define here any compiler flags that you need in order to make backtrace() work.
1140 BACKTRACESPEC=
1141 case "${host}" in
1142  x86_64*-*-linux*)
1143     BACKTRACESPEC=-fno-omit-frame-pointer
1144     ;;
1145 esac
1146 AC_SUBST(BACKTRACESPEC)
1148 AC_SUBST(SYSDEP_SOURCES)
1150 AC_LINK_FILES($SIGNAL_HANDLER, include/java-signal.h)
1152 if test "${multilib}" = "yes"; then
1153   multilib_arg="--enable-multilib"
1154 else
1155   multilib_arg=
1160 here=`${PWDCMD-pwd}`
1161 AC_SUBST(here)
1163 # We get this from the environment.
1164 AC_SUBST(GCJFLAGS)
1166 AC_OUTPUT(Makefile libgcj.pc libgcj.spec libgcj-test.spec gnu/classpath/Configuration.java gcj/Makefile include/Makefile testsuite/Makefile,
1167 [# Only add multilib support code if we just rebuilt top-level Makefile.
1168 case " $CONFIG_FILES " in
1169  *" Makefile "*)
1170    LD="${ORIGINAL_LD_FOR_MULTILIBS}"
1171    ac_file=Makefile . ${libgcj_basedir}/../config-ml.in
1172    ;;
1173 esac
1175 # Make subdirectories and `.d' files.  Look in both srcdir and
1176 # builddir for the .java files.
1177 h=`${PWDCMD-pwd}`
1178 : > deps.mk
1179 ( (cd $srcdir && find . \( -name '*.java' -o -name '*.cc' -o -name '*.c' \) -print) ;
1180   find . \( -name '*.java' -o -name '*.cc' -o -name '*.c' \) -print) | \
1181    fgrep -v testsuite | \
1182    sed -e 's/\.java/.d/'\;'s/\.cc/.d/'\;'s/\.c/.d/' | \
1183    while read f; do
1184       echo "include $f" >> deps.mk
1185       test -f $f || {
1186 changequote(<<,>>)
1187          d=`echo $f | sed -e 's,/[^/]*$,,'`
1188 changequote([,])
1189          if test ! -d $d; then
1190            $libgcj_basedir/../mkinstalldirs $d
1191          fi;
1192          echo > $f
1193       }
1194    done
1196 srcdir=${srcdir}
1197 host=${host}
1198 target=${target}
1199 with_multisubdir=${with_multisubdir}
1200 ac_configure_args="${multilib_arg} ${ac_configure_args}"
1201 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
1202 libgcj_basedir=${libgcj_basedir}
1203 CC="${CC}"
1204 CXX="${CXX}"
1205 ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"