re GNATS java.util/47 (Date.toString() returns embedded newline)
[gcc.git] / libjava / configure.in
1 dnl Process this with autoconf to create configure
2 AC_INIT(java/lang/System.java)
3
4 dnl Can't be done in LIBGCJ_CONFIGURE because that confuses automake.
5 AC_CONFIG_AUX_DIR(..)
6
7 AC_CANONICAL_SYSTEM
8
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])
15
16 LIBGCJ_CONFIGURE(.)
17
18 AM_CONFIG_HEADER(include/config.h)
19
20 AM_PROG_LIBTOOL
21
22 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
23 COMPPATH=.
24 else
25 COMPPATH=..
26 fi
27 AC_SUBST(COMPPATH)
28
29 dnl The -no-testsuite modules omit the test subdir.
30 AM_CONDITIONAL(TESTSUBDIR, test -d $srcdir/testsuite)
31
32 dnl See whether the user prefers size or speed for Character.
33 dnl The default is size.
34 AC_ARG_ENABLE(fast-character,
35 [ --enable-fast-character prefer speed over size for Character],
36 # Nothing
37 , AC_DEFINE(COMPACT_CHARACTER))
38
39 dnl See if the user has requested runtime debugging.
40 AC_ARG_ENABLE(libgcj-debug,
41 [ --enable-libgcj-debug enable runtime debugging code],
42 if test "$enable_libgcj_debug" = yes; then
43 AC_DEFINE(DEBUG)
44 fi)
45
46 dnl See if the user has the enterpreter included.
47 AC_ARG_ENABLE(interpreter,
48 [ --enable-interpreter enable interpreter],
49 if test "$enable_interpreter" = yes; then
50 AC_DEFINE(INTERPRETER)
51 fi)
52
53 dnl If the target is an eCos system, use the appropriate eCos
54 dnl I/O routines.
55 dnl FIXME: this should not be a local option but a global target
56 dnl system; at present there is no eCos target.
57 TARGET_ECOS="no"
58 AC_ARG_WITH(ecos,
59 [ --with-ecos enable runtime eCos target support],
60 TARGET_ECOS="$with_ecos"
61 )
62
63 case "$TARGET_ECOS" in
64 no)
65 FILE_DESCRIPTOR=natFileDescriptorPosix.cc
66 PROCESS=Posix
67 ;;
68 *)
69 FILE_DESCRIPTOR=natFileDescriptorEcos.cc
70 PROCESS=Ecos
71 AC_DEFINE(ECOS)
72 ;;
73 esac
74
75 AC_EGREP_HEADER(uint32_t, stdint.h, AC_DEFINE(HAVE_INT32_DEFINED))
76 AC_EGREP_HEADER(uint32_t, inttypes.h, AC_DEFINE(HAVE_INT32_DEFINED))
77 AC_EGREP_HEADER(u_int32_t, sys/types.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED))
78 AC_EGREP_HEADER(u_int32_t, sys/config.h, AC_DEFINE(HAVE_BSD_INT32_DEFINED))
79
80
81 dnl These may not be defined in a non-ANS conformant embedded system.
82 dnl FIXME: Should these case a runtime exception in that case?
83 AC_EGREP_HEADER(mktime, time.h, AC_DEFINE(HAVE_MKTIME))
84 AC_EGREP_HEADER(localtime, time.h, AC_DEFINE(HAVE_LOCALTIME))
85
86 dnl Create the subdirectory for natFileDescriptor.cc, or the attempt
87 dnl to create the link will fail.
88 test -d java || mkdir java
89 test -d java/io || mkdir java/io
90 AC_LINK_FILES(java/io/$FILE_DESCRIPTOR, java/io/natFileDescriptor.cc)
91
92 dnl Likewise for ConcreteProcess.java and natConcreteProcess.cc.
93 test -d java/lang || mkdir java/lang
94 AC_LINK_FILES(java/lang/${PROCESS}Process.java, java/lang/ConcreteProcess.java)
95 AC_LINK_FILES(java/lang/nat${PROCESS}Process.cc, java/lang/natConcreteProcess.cc)
96
97 SYSTEMSPEC=
98 AC_SUBST(SYSTEMSPEC)
99
100 AC_ARG_WITH(system-zlib,
101 [ --with-system-zlib use installed libz])
102 ZLIBSPEC=
103 AC_SUBST(ZLIBSPEC)
104
105 dnl FIXME: this should be _libs on some hosts.
106 libsubdir=.libs
107
108 dnl Allow the GC to be disabled. Can be useful when debugging.
109 AC_MSG_CHECKING([for garbage collector to use])
110 AC_ARG_ENABLE(java-gc,
111 changequote(<<,>>)dnl
112 << --enable-java-gc=TYPE choose garbage collector [boehm]>>,
113 changequote([,])
114 GC=$enableval,
115 GC=boehm)
116 GCLIBS=
117 GCINCS=
118 GCDEPS=
119 GCOBJS=
120 GCSPEC=
121 case "$GC" in
122 boehm)
123 AC_MSG_RESULT(boehm)
124 GCDEPS='$(top_builddir)/../boehm-gc/libgcjgc.la'
125 # We include the path to the boehm-gc build directory.
126 # See Makefile.am to understand why.
127 GCLIBS="$GCDEPS -L\$(here)/../boehm-gc/$libsubdir"
128 GCINCS='-I$(top_srcdir)/../boehm-gc -I$(top_builddir)/../boehm-gc'
129 GCSPEC='-lgcjgc'
130 dnl We also want to pick up some cpp flags required when including
131 dnl boehm-config.h. Yuck.
132 GCINCS="$GCINCS `cat ../boehm-gc/boehm-cflags`"
133 GCOBJS=boehm.lo
134 GCHDR=boehm-gc.h
135 dnl The POSIX thread support needs to know this.
136 AC_DEFINE(HAVE_BOEHM_GC)
137 ;;
138 no)
139 AC_MSG_RESULT(none)
140 GCOBJS=nogc.lo
141 GCHDR=no-gc.h
142 ;;
143 *)
144 AC_MSG_ERROR(unrecognized collector \"$GC\")
145 ;;
146 esac
147 AC_SUBST(GCLIBS)
148 AC_SUBST(GCINCS)
149 AC_SUBST(GCDEPS)
150 AC_SUBST(GCOBJS)
151 AC_SUBST(GCSPEC)
152 AC_LINK_FILES(include/$GCHDR, include/java-gc.h)
153
154
155 dnl Note that this code is kept in sync with similar code in gcc/configure.in.
156 dnl In particular both packages must make the same decision about which
157 dnl thread package to use.
158 AC_MSG_CHECKING([for threads package to use])
159 AC_ARG_ENABLE(threads, [ --enable-threads=TYPE choose threading package],
160 THREADS=$enableval,
161 dnl FIXME: figure out native threads to use here.
162 THREADS=no)
163
164 if test "$THREADS" = yes; then
165 case "$host" in
166 *-*-vxworks*)
167 THREADS=vxworks
168 ;;
169 *-*-linux*)
170 # FIXME: this isn't correct in all cases.
171 THREADS=posix
172 ;;
173 *-*-win*)
174 THREADS=win32
175 ;;
176 *-*-irix*)
177 # FIXME: for now, choose POSIX, because we implement that.
178 # Later, choose irix threads.
179 THREADS=posix
180 ;;
181 *-*-solaris*)
182 # FIXME: for now, choose POSIX, because we implement that.
183 # Later, choose solaris threads.
184 THREADS=posix
185 ;;
186 *)
187 # For now.
188 THREADS=none
189 ;;
190 esac
191 fi
192
193 case "$THREADS" in
194 no | none | single)
195 THREADS=none
196 ;;
197 posix | pthreads)
198 THREADS=posix
199 case "$host" in
200 *-*-linux*)
201 AC_DEFINE(LINUX_THREADS)
202 ;;
203 esac
204 ;;
205 qt)
206 ;;
207 decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
208 AC_MSG_ERROR(thread package $THREADS not yet supported)
209 ;;
210 *)
211 AC_MSG_ERROR($THREADS is an unknown thread package)
212 ;;
213 esac
214 AC_MSG_RESULT($THREADS)
215
216 THREADLIBS=
217 THREADINCS=
218 THREADDEPS=
219 THREADOBJS=
220 THREADH=
221 THREADSPEC=
222 case "$THREADS" in
223 posix)
224 THREADLIBS=-lpthread
225 THREADSPEC=-lpthread
226 THREADOBJS=posix-threads.lo
227 THREADH=posix-threads.h
228 # MIT pthreads doesn't seem to have the mutexattr functions.
229 # But for now we don't check for it. We just assume you aren't
230 # using MIT pthreads.
231 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT)
232 ;;
233
234 qt)
235 THREADDEPS='$(top_builddir)/../qthreads/libgcjcoop.la'
236 # We include the path to the qthreads build directory.
237 # See Makefile.am to understand why.
238 THREADLIBS="$THREADDEPS -L\$(here)/../qthreads/$libsubdir"
239 THREADSPEC='-lgcjcoop'
240 THREADOBJS=quick-threads.lo
241 THREADINCS='-I$(top_srcdir)/../qthreads'
242 THREADH=quick-threads.h
243 ;;
244
245 none)
246 THREADOBJS=no-threads.lo
247 THREADH=no-threads.h
248 ;;
249 esac
250 AC_LINK_FILES(include/$THREADH, include/java-threads.h)
251 AC_SUBST(THREADLIBS)
252 AC_SUBST(THREADINCS)
253 AC_SUBST(THREADDEPS)
254 AC_SUBST(THREADOBJS)
255 AC_SUBST(THREADSPEC)
256
257 AM_CONDITIONAL(USING_GCC, test "$GCC" = yes)
258
259 CANADIAN=no
260 NULL_TARGET=no
261
262 # Find eh-common.h and support headers. If we're in the tree with
263 # gcc, then look there. Otherwise look in compat-include. If all else
264 # fails, just hope the user has set things up somehow.
265 if test -r $srcdir/../gcc/eh-common.h; then
266 EH_COMMON_INCLUDE='-I$(top_srcdir)/../gcc -I$(top_srcdir)/../include'
267 else
268 if test -d $srcdir/../compat-include; then
269 EH_COMMON_INCLUDE='-I$(top_srcdir)/../compat-include'
270 else
271 EH_COMMON_INCLUDE=
272 fi
273 fi
274
275 if test -n "${with_cross_host}"; then
276 # We are being configured with a cross compiler. AC_REPLACE_FUNCS
277 # may not work correctly, because the compiler may not be able to
278 # link executables.
279
280 # We assume newlib. This lets us hard-code the functions we know
281 # we'll have.
282 AC_DEFINE(HAVE_MEMMOVE)
283 AC_DEFINE(HAVE_MEMCPY)
284 AC_DEFINE(HAVE_STRERROR)
285 AC_DEFINE(HAVE_GMTIME_R)
286 AC_DEFINE(HAVE_LOCALTIME_R)
287 dnl This is only for POSIX threads.
288 AC_DEFINE(HAVE_PTHREAD_MUTEXATTR_INIT)
289 dnl We also assume we are using gcc, which provides alloca.
290 AC_DEFINE(HAVE_ALLOCA)
291
292 ZLIBSPEC=-lgcj
293
294 # If Canadian cross, then don't pick up tools from the build
295 # directory.
296 if test "$build" != "$with_cross_host"; then
297 CANADIAN=yes
298 EH_COMMON_INCLUDE=
299 GCJ="${target_alias}/gcj"
300 else
301 GCJ=
302 fi
303 else
304 AC_CHECK_FUNCS(strerror ioctl select fstat open fsync sleep)
305 AC_CHECK_FUNCS(gmtime_r localtime_r readdir_r getpwuid_r)
306 AC_CHECK_FUNCS(access stat mkdir rename rmdir unlink realpath)
307 AC_CHECK_FUNCS(inet_aton inet_addr, break)
308 AC_CHECK_FUNCS(inet_pton uname inet_ntoa)
309
310 AC_CHECK_FUNCS(gethostbyname_r, [
311 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
312 # There are two different kinds of gethostbyname_r.
313 # We look for the one that returns `int'.
314 # Hopefully this check is robust enough.
315 AC_EGREP_HEADER(int.*gethostbyname_r, netdb.h, [
316 AC_DEFINE(GETHOSTBYNAME_R_RETURNS_INT)])
317
318 case " $GCINCS " in
319 *" -D_REENTRANT "*) ;;
320 *)
321 dnl On DU4.0, gethostbyname_r is only declared with -D_REENTRANT
322 AC_CACHE_CHECK([whether gethostbyname_r declaration requires -D_REENTRANT],
323 [libjava_cv_gethostbyname_r_needs_reentrant],
324 [ AC_LANG_SAVE
325 AC_LANG_CPLUSPLUS
326 AC_TRY_COMPILE([#include <netdb.h>],
327 [gethostbyname_r("", 0, 0);],
328 [libjava_cv_gethostbyname_r_needs_reentrant=no], [dnl
329 CPPFLAGS_SAVE="$CPPFLAGS"
330 CPPFLAGS="$CPPFLAGS -D_REENTRANT"
331 AC_TRY_COMPILE([#include <netdb.h>], [gethostbyname_r("", 0, 0);],
332 [libjava_cv_gethostbyname_r_needs_reentrant=yes],
333 [libjava_cv_gethostbyname_r_needs_reentrant=fail])
334 CPPFLAGS="$CPPFLAGS_SAVE"
335 ])
336 AC_LANG_RESTORE
337 ])
338 if test "x$libjava_cv_gethostbyname_r_needs_reentrant" = xyes; then
339 AC_DEFINE(GETHOSTBYNAME_R_NEEDS_REENTRANT, 1, [Define if gethostbyname_r is only declared if _REENTRANT is defined])
340 fi
341 ;;
342 esac
343
344 AC_CACHE_CHECK([for struct hostent_data],
345 [libjava_cv_struct_hostent_data], [dnl
346 AC_TRY_COMPILE([
347 #if GETHOSTBYNAME_R_NEEDS_REENTRANT && !defined(_REENTRANT)
348 # define _REENTRANT 1
349 #endif
350 #include <netdb.h>], [struct hostent_data data;],
351 [libjava_cv_struct_hostent_data=yes],
352 [libjava_cv_struct_hostent_data=no])])
353 if test "x$libjava_cv_struct_hostent_data" = xyes; then
354 AC_DEFINE(HAVE_STRUCT_HOSTENT_DATA, 1,
355 [Define if struct hostent_data is defined in netdb.h])
356 fi
357 ])
358
359 AC_CHECK_FUNCS(gethostbyaddr_r, [
360 AC_DEFINE(HAVE_GETHOSTBYADDR_R)
361 # There are two different kinds of gethostbyaddr_r.
362 # We look for the one that returns `int'.
363 # Hopefully this check is robust enough.
364 AC_EGREP_HEADER(int.*gethostbyaddr_r, netdb.h, [
365 AC_DEFINE(GETHOSTBYADDR_R_RETURNS_INT)])])
366
367 AC_CHECK_FUNCS(gethostname, [
368 AC_DEFINE(HAVE_GETHOSTNAME)
369 AC_EGREP_HEADER(gethostname, unistd.h, [
370 AC_DEFINE(HAVE_GETHOSTNAME_DECL)])])
371
372 # Look for these functions in the thread library, but only bother
373 # if using POSIX threads.
374 if test "$THREADS" = posix; then
375 save_LIBS="$LIBS"
376 LIBS="$LIBS $THREADLIBS"
377 # Some POSIX thread systems don't have pthread_mutexattr_settype.
378 # E.g., Solaris.
379 AC_CHECK_FUNCS(pthread_mutexattr_settype pthread_mutexattr_setkind_np)
380
381 # Look for sched_yield. Up to Solaris 2.6, it is in libposix4, since
382 # Solaris 7 the name librt is preferred.
383 AC_CHECK_FUNCS(sched_yield, , [
384 AC_CHECK_LIB(rt, sched_yield, [
385 AC_DEFINE(HAVE_SCHED_YIELD)
386 THREADLIBS="$THREADLIBS -lrt"
387 THREADSPEC="$THREADSPEC -lrt"], [
388 AC_CHECK_LIB(posix4, sched_yield, [
389 AC_DEFINE(HAVE_SCHED_YIELD)
390 THREADLIBS="$THREADLIBS -lposix4"
391 THREADSPEC="$THREADSPEC -lposix4"])])])
392 LIBS="$save_LIBS"
393
394 # We can save a little space at runtime if the mutex has m_count
395 # or __m_count. This is a nice hack for Linux.
396 AC_TRY_COMPILE([#include <pthread.h>], [
397 extern pthread_mutex_t *mutex; int q = mutex->m_count;
398 ], AC_DEFINE(PTHREAD_MUTEX_HAVE_M_COUNT), [
399 AC_TRY_COMPILE([#include <pthread.h>], [
400 extern pthread_mutex_t *mutex; int q = mutex->__m_count;
401 ], AC_DEFINE(PTHREAD_MUTEX_HAVE___M_COUNT))])
402 fi
403
404 # We require a way to get the time.
405 time_found=no
406 AC_CHECK_FUNCS(gettimeofday time ftime, time_found=yes)
407 if test "$time_found" = no; then
408 AC_MSG_ERROR([no function found to get the time])
409 fi
410
411 AC_CHECK_FUNCS(memmove)
412
413 # We require memcpy.
414 memcpy_found=no
415 AC_CHECK_FUNCS(memcpy, memcpy_found=yes)
416 if test "$memcpy_found" = no; then
417 AC_MSG_ERROR([memcpy is required])
418 fi
419
420 # Some library-finding code we stole from Tcl.
421 #--------------------------------------------------------------------
422 # Check for the existence of the -lsocket and -lnsl libraries.
423 # The order here is important, so that they end up in the right
424 # order in the command line generated by make. Here are some
425 # special considerations:
426 # 1. Use "connect" and "accept" to check for -lsocket, and
427 # "gethostbyname" to check for -lnsl.
428 # 2. Use each function name only once: can't redo a check because
429 # autoconf caches the results of the last check and won't redo it.
430 # 3. Use -lnsl and -lsocket only if they supply procedures that
431 # aren't already present in the normal libraries. This is because
432 # IRIX 5.2 has libraries, but they aren't needed and they're
433 # bogus: they goof up name resolution if used.
434 # 4. On some SVR4 systems, can't use -lsocket without -lnsl too.
435 # To get around this problem, check for both libraries together
436 # if -lsocket doesn't work by itself.
437 #--------------------------------------------------------------------
438
439 AC_CACHE_CHECK([for socket libraries], gcj_cv_lib_sockets,
440 [gcj_cv_lib_sockets=
441 gcj_checkBoth=0
442 unset ac_cv_func_connect
443 AC_CHECK_FUNC(connect, gcj_checkSocket=0, gcj_checkSocket=1)
444 if test "$gcj_checkSocket" = 1; then
445 unset ac_cv_func_connect
446 AC_CHECK_LIB(socket, main, gcj_cv_lib_sockets="-lsocket",
447 gcj_checkBoth=1)
448 fi
449 if test "$gcj_checkBoth" = 1; then
450 gcj_oldLibs=$LIBS
451 LIBS="$LIBS -lsocket -lnsl"
452 unset ac_cv_func_accept
453 AC_CHECK_FUNC(accept,
454 [gcj_checkNsl=0
455 gcj_cv_lib_sockets="-lsocket -lnsl"])
456 unset ac_cv_func_accept
457 LIBS=$gcj_oldLibs
458 fi
459 unset ac_cv_func_gethostbyname
460 gcj_oldLibs=$LIBS
461 LIBS="$LIBS $gcj_cv_lib_sockets"
462 AC_CHECK_FUNC(gethostbyname, ,
463 [AC_CHECK_LIB(nsl, main,
464 [gcj_cv_lib_sockets="$gcj_cv_lib_sockets -lnsl"])])
465 unset ac_cv_func_gethostbyname
466 LIBS=$gcj_oldLIBS
467 ])
468 SYSTEMSPEC="$SYSTEMSPEC $gcj_cv_lib_sockets"
469
470 if test "$with_system_zlib" = yes; then
471 AC_CHECK_LIB(z, deflate, ZLIBSPEC=-lz, ZLIBSPEC=-lzgcj)
472 else
473 ZLIBSPEC=-lzgcj
474 fi
475
476 # On Solaris, and maybe other architectures, the Boehm collector
477 # requires -ldl.
478 if test "$GC" = boehm; then
479 AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl")
480 fi
481
482 if test -d "$libgcj_basedir/../gcc/java"; then
483 GCJ=
484 else
485 CANADIAN=yes
486 NULL_TARGET=yes
487 GCJ=gcj
488 fi
489 fi
490
491 ZLIBS=
492 ZDEPS=
493 ZINCS=
494 if test "x$ZLIBSPEC" = "x-lzgcj"; then
495 # We include the path to the zlib build directory.
496 # See Makefile.am to understand why.
497 ZDEPS='$(top_builddir)/../zlib/libzgcj.la'
498 ZLIBS="$ZDEPS -L\$(here)/../zlib/$libsubdir"
499 ZINCS='-I$(top_srcdir)/../zlib'
500 else
501 ZLIBS="$ZLIBSPEC"
502 fi
503 AC_SUBST(ZLIBS)
504 AC_SUBST(ZDEPS)
505 AC_SUBST(ZINCS)
506 AC_SUBST(DIVIDESPEC)
507
508 AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
509 AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
510 AM_CONDITIONAL(NATIVE, test "$CANADIAN" = no || test "$NULL_TARGET" = yes)
511 AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
512 AC_SUBST(EH_COMMON_INCLUDE)
513
514 # Determine gcj version number.
515 if test "$GCJ" = ""; then
516 if test -z "${with_multisubdir}"; then
517 builddotdot=.
518 else
519 builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`
520 fi
521 dir="`cd ${builddotdot}/../../gcc && pwd`"
522 GCJ="$dir/gcj -B$dir/"
523 fi
524 changequote(<<,>>)
525 gcjvers="`$GCJ -v 2>&1 | sed -n 's/^.*version \([^ ]*\).*$/\1/p'`"
526 changequote([,])
527 AC_DEFINE_UNQUOTED(GCJVERSION, "$gcjvers")
528
529 # See if gcj supports -fuse-divide-subroutine. gcc 2.95 does not, and
530 # we want to continue to support that version.
531 AC_MSG_CHECKING([whether gcj supports -fuse-divide-subroutine])
532 cat > conftest.java << 'END'
533 public class conftest { }
534 END
535 use_fuse=yes
536 $GCJ -fuse-divide-subroutine -fsyntax-only conftest.java > /dev/null 2>&1 \
537 || use_fuse=no
538 rm -f conftest.java
539 if test "$use_fuse" = no; then
540 DIVIDESPEC=
541 fi
542 AC_MSG_RESULT($use_fuse)
543
544 AC_SUBST(AM_RUNTESTFLAGS)
545
546 dnl We check for sys/filio.h because Solaris 2.5 defines FIONREAD there.
547 dnl On that system, sys/ioctl.h will not include sys/filio.h unless
548 dnl BSD_COMP is defined; just including sys/filio.h is simpler.
549 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)
550 dnl We avoid AC_HEADER_DIRENT since we really only care about dirent.h
551 dnl for now. If you change this, you also must update natFile.cc.
552 AC_CHECK_HEADERS(dirent.h)
553
554 AC_CHECK_TYPE([ssize_t], [int])
555
556 AC_MSG_CHECKING([for in_addr_t])
557 AC_TRY_COMPILE([#include <sys/types.h>
558 #if STDC_HEADERS
559 #include <stdlib.h>
560 #include <stddef.h>
561 #endif
562 #if HAVE_NETINET_IN_H
563 #include <netinet/in.h>
564 #endif], [in_addr_t foo;],
565 [AC_DEFINE([HAVE_IN_ADDR_T])
566 AC_MSG_RESULT(yes)],
567 [AC_MSG_RESULT(no)])
568
569 AC_MSG_CHECKING([whether struct ip_mreq is in netinet/in.h])
570 AC_TRY_COMPILE([#include <netinet/in.h>], [struct ip_mreq mreq;],
571 [AC_DEFINE(HAVE_STRUCT_IP_MREQ)
572 AC_MSG_RESULT(yes)],
573 [AC_MSG_RESULT(no)])
574
575 AC_MSG_CHECKING([whether struct sockaddr_in6 is in netinet/in.h])
576 AC_TRY_COMPILE([#include <netinet/in.h>], [struct sockaddr_in6 addr6;],
577 [AC_DEFINE(HAVE_INET6)
578 AC_MSG_RESULT(yes)],
579 [AC_MSG_RESULT(no)])
580
581 AC_MSG_CHECKING([for socklen_t in sys/socket.h])
582 AC_TRY_COMPILE([#include <sys/socket.h>], [socklen_t x = 5;],
583 [AC_DEFINE(HAVE_SOCKLEN_T)
584 AC_MSG_RESULT(yes)],
585 [AC_MSG_RESULT(no)])
586
587 AC_MSG_CHECKING([for tm_gmtoff in struct tm])
588 AC_TRY_COMPILE([#include <time.h>], [struct tm tim; tim.tm_gmtoff = 0;],
589 [AC_DEFINE(STRUCT_TM_HAS_GMTOFF)
590 AC_MSG_RESULT(yes)],
591 [AC_MSG_RESULT(no)
592 AC_MSG_CHECKING([for global timezone variable])
593 dnl FIXME: we don't want a link check here because that won't work
594 dnl when cross-compiling. So instead we make an assumption that
595 dnl the header file will mention timezone if it exists.
596 AC_TRY_COMPILE([#include <time.h>], [long z2 = timezone;],
597 [AC_DEFINE(HAVE_TIMEZONE)
598 AC_MSG_RESULT(yes)],
599 [AC_MSG_RESULT(no)])])
600
601 AC_FUNC_ALLOCA
602
603 AC_CHECK_PROGS(PERL, perl, false)
604
605 case "${host}" in
606 i?86-*-linux*)
607 SIGNAL_HANDLER=include/i386-signal.h
608 ;;
609 sparc-sun-solaris*)
610 SIGNAL_HANDLER=include/sparc-signal.h
611 ;;
612 *)
613 SIGNAL_HANDLER=include/default-signal.h
614 ;;
615 esac
616
617 AC_LINK_FILES($SIGNAL_HANDLER, include/java-signal.h)
618
619 if test "${multilib}" = "yes"; then
620 multilib_arg="--enable-multilib"
621 else
622 multilib_arg=
623 fi
624
625 here=`pwd`
626 AC_SUBST(here)
627
628 AC_OUTPUT(Makefile libgcj.spec gcj/Makefile include/Makefile testsuite/Makefile,
629 [if test -n "$CONFIG_FILES"; then
630 ac_file=Makefile . ${libgcj_basedir}/../config-ml.in
631 fi],
632 srcdir=${srcdir}
633 host=${host}
634 target=${target}
635 with_multisubdir=${with_multisubdir}
636 ac_configure_args="${multilib_arg} ${ac_configure_args}"
637 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
638 libgcj_basedir=${libgcj_basedir}
639 CC="${CC}"
640 CXX="${CXX}"
641 )