]> gcc.gnu.org Git - gcc.git/blob - libjava/configure.in
For PR gcj/260:
[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 # Only use libltdl for native builds.
21 if test -z "${with_cross_host}"; then
22 AC_LIBLTDL_CONVENIENCE
23 AC_LIBTOOL_DLOPEN
24 DIRLTDL=libltdl
25 AC_DEFINE(USE_LTDL)
26 # Sigh. Libtool's macro doesn't do the right thing.
27 INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
28 fi
29 AC_SUBST(INCLTDL)
30 AC_SUBST(LIBLTDL)
31 AC_SUBST(DIRLTDL)
32 AM_PROG_LIBTOOL
33 AC_CONFIG_SUBDIRS($DIRLTDL)
34
35 if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
36 COMPPATH=.
37 else
38 COMPPATH=..
39 fi
40 AC_SUBST(COMPPATH)
41
42 dnl The -no-testsuite modules omit the test subdir.
43 AM_CONDITIONAL(TESTSUBDIR, test -d $srcdir/testsuite)
44
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],
49 # Nothing
50 , AC_DEFINE(COMPACT_CHARACTER))
51
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])
57
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}
61 fi
62 if test "$enable_getenv_properties" = no; then
63 AC_DEFINE(DISABLE_GETENV_PROPERTIES)
64 fi
65
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
70 AC_DEFINE(DEBUG)
71 fi)
72
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
80 libgcj_interpreter=no
81 fi)
82
83 if test "$libgcj_interpreter" = yes; then
84 AC_DEFINE(INTERPRETER)
85 fi
86
87 EXCEPTIONSPEC=
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.
93 libgcj_sjlj=yes
94 fi)
95
96 if test "$libgcj_sjlj" = yes; then
97 EXCEPTIONSPEC="-fsjlj-exceptions"
98 AC_DEFINE(SJLJ_EXCEPTIONS)
99 fi
100
101 FORCELIBGCCSPEC=
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"
105 fi
106
107 AC_MSG_CHECKING([for data_start])
108 LIBDATASTARTSPEC=
109 NEEDS_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"
113 NEEDS_DATA_START=yes
114 AC_MSG_RESULT(missing)])
115 AC_SUBST(LIBDATASTARTSPEC)
116
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])
121
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}
125 fi
126 if test "$enable_java_net" = no; then
127 AC_DEFINE(DISABLE_JAVA_NET)
128 fi
129
130 dnl See if the user wants to disable JVMPI support.
131 AC_ARG_ENABLE(jvmpi,
132 [ --disable-jvmpi disable JVMPI support])
133
134 if test "$enable_jvmpi" != no; then
135 AC_DEFINE(ENABLE_JVMPI)
136 fi
137
138 dnl If the target is an eCos system, use the appropriate eCos
139 dnl I/O routines.
140 dnl FIXME: this should not be a local option but a global target
141 dnl system; at present there is no eCos target.
142 TARGET_ECOS="no"
143 AC_ARG_WITH(ecos,
144 [ --with-ecos enable runtime eCos target support],
145 TARGET_ECOS="$with_ecos"
146 )
147
148 case "$TARGET_ECOS" in
149 no)
150 FILE_DESCRIPTOR=natFileDescriptorPosix.cc
151 PROCESS=${PROCESS-Posix}
152 ;;
153 *)
154 FILE_DESCRIPTOR=natFileDescriptorEcos.cc
155 PROCESS=Ecos
156 AC_DEFINE(ECOS)
157 ;;
158 esac
159
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))
164
165
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))
170
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)
176
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)
181
182 SYSTEMSPEC=
183 AC_SUBST(SYSTEMSPEC)
184
185 LIBGCJTESTSPEC="-L`pwd`/.libs -rpath `pwd`/.libs"
186 AC_SUBST(LIBGCJTESTSPEC)
187
188 AC_ARG_WITH(system-zlib,
189 [ --with-system-zlib use installed libz])
190 ZLIBSPEC=
191 AC_SUBST(ZLIBSPEC)
192 ZLIBTESTSPEC=
193 AC_SUBST(ZLIBTESTSPEC)
194
195 dnl FIXME: this should be _libs on some hosts.
196 libsubdir=.libs
197
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]>>,
203 changequote([,])
204 GC=$enableval,
205 GC=boehm)
206 GCLIBS=
207 GCINCS=
208 GCDEPS=
209 GCOBJS=
210 GCSPEC=
211 GCTESTSPEC=
212 case "$GC" in
213 boehm)
214 AC_MSG_RESULT(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'
220 GCSPEC='-lgcjgc'
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`"
225 GCOBJS=boehm.lo
226 GCHDR=boehm-gc.h
227 dnl The POSIX thread support needs to know this.
228 AC_DEFINE(HAVE_BOEHM_GC)
229 ;;
230 no)
231 AC_MSG_RESULT(none)
232 GCOBJS=nogc.lo
233 GCHDR=no-gc.h
234 ;;
235 *)
236 AC_MSG_ERROR(unrecognized collector \"$GC\")
237 ;;
238 esac
239 AC_SUBST(GCLIBS)
240 AC_SUBST(GCINCS)
241 AC_SUBST(GCDEPS)
242 AC_SUBST(GCOBJS)
243 AC_SUBST(GCSPEC)
244 AC_SUBST(GCTESTSPEC)
245 AC_LINK_FILES(include/$GCHDR, include/java-gc.h)
246
247
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],
253 THREADS=$enableval,
254 dnl FIXME: figure out native threads to use here.
255 THREADS=no)
256
257 if test "$THREADS" = yes; then
258 case "$host" in
259 *-*-vxworks*)
260 THREADS=vxworks
261 ;;
262 *-*-linux*)
263 # FIXME: this isn't correct in all cases.
264 THREADS=posix
265 ;;
266 *-*-win*)
267 THREADS=win32
268 ;;
269 *-*-irix*)
270 # FIXME: for now, choose POSIX, because we implement that.
271 # Later, choose irix threads.
272 THREADS=posix
273 ;;
274 *-*-solaris*)
275 # FIXME: for now, choose POSIX, because we implement that.
276 # Later, choose solaris threads.
277 THREADS=posix
278 ;;
279 *)
280 # For now.
281 THREADS=none
282 ;;
283 esac
284 fi
285
286 case "$THREADS" in
287 no | none | single)
288 THREADS=none
289 ;;
290 posix | pthreads)
291 THREADS=posix
292 case "$host" in
293 *-*-linux*)
294 AC_DEFINE(LINUX_THREADS)
295 ;;
296 esac
297 ;;
298 decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
299 AC_MSG_ERROR(thread package $THREADS not yet supported)
300 ;;
301 *)
302 AC_MSG_ERROR($THREADS is an unknown thread package)
303 ;;
304 esac
305 AC_MSG_RESULT($THREADS)
306
307 THREADLIBS=
308 THREADINCS=
309 THREADDEPS=
310 THREADOBJS=
311 THREADH=
312 THREADSPEC=
313 case "$THREADS" in
314 posix)
315 THREADLIBS=-lpthread
316 THREADSPEC=-lpthread
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)
323
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])
328 fi
329 AC_DEFINE(_POSIX_PTHREAD_SEMANTICS, 1, [Required define if using POSIX threads])
330 ;;
331
332 none)
333 THREADOBJS=no-threads.lo
334 THREADH=no-threads.h
335 ;;
336 esac
337 AC_LINK_FILES(include/$THREADH, include/java-threads.h)
338 AC_SUBST(THREADLIBS)
339 AC_SUBST(THREADINCS)
340 AC_SUBST(THREADDEPS)
341 AC_SUBST(THREADOBJS)
342 AC_SUBST(THREADSPEC)
343
344 AM_CONDITIONAL(USING_GCC, test "$GCC" = yes)
345
346 CANADIAN=no
347 NULL_TARGET=no
348 NATIVE=yes
349
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'
355 else
356 if test -d $srcdir/../compat-include; then
357 EH_COMMON_INCLUDE='-I$(top_srcdir)/../compat-include'
358 else
359 EH_COMMON_INCLUDE=
360 fi
361 fi
362
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
366 # link executables.
367
368 # We assume newlib. This lets us hard-code the functions we know
369 # we'll have.
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)
379
380 dnl Assume we do not have getuid and friends.
381 AC_DEFINE(NO_GETUID)
382
383 ZLIBSPEC=-lzgcj
384 ZLIBTESTSPEC="-L`pwd`/../zlib/.libs -rpath `pwd`/../zlib/.libs"
385
386 # If Canadian cross, then don't pick up tools from the build
387 # directory.
388 if test "$build" != "$with_cross_host"; then
389 CANADIAN=yes
390 EH_COMMON_INCLUDE=
391 GCJ="${target_alias}-gcj"
392 else
393 GCJ=
394 fi
395 NATIVE=no
396 else
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)])
408
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)])
416
417 case " $GCINCS " in
418 *" -D_REENTRANT "*) ;;
419 *)
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],
423 [ AC_LANG_SAVE
424 AC_LANG_CPLUSPLUS
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"
434 ])
435 AC_LANG_RESTORE
436 ])
437 if test "x$libjava_cv_gethostbyname_r_needs_reentrant" = xyes; then
438 AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
439 fi
440 ;;
441 esac
442
443 AC_CACHE_CHECK([for struct hostent_data],
444 [libjava_cv_struct_hostent_data], [dnl
445 AC_TRY_COMPILE([
446 #if GETHOSTBYNAME_R_NEEDS_REENTRANT && !defined(_REENTRANT)
447 # define _REENTRANT 1
448 #endif
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])
455 fi
456 ])
457
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)])])
465
466 AC_CHECK_FUNCS(gethostname, [
467 AC_DEFINE(HAVE_GETHOSTNAME)
468 AC_EGREP_HEADER(gethostname, unistd.h, [
469 AC_DEFINE(HAVE_GETHOSTNAME_DECL)])])
470
471 # Look for these functions in the thread library, but only bother
472 # if using POSIX threads.
473 if test "$THREADS" = posix; then
474 save_LIBS="$LIBS"
475 LIBS="$LIBS $THREADLIBS"
476 # Some POSIX thread systems don't have pthread_mutexattr_settype.
477 # E.g., Solaris.
478 AC_CHECK_FUNCS(pthread_mutexattr_settype pthread_mutexattr_setkind_np)
479
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"])])])
491 LIBS="$save_LIBS"
492
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))])
501 fi
502
503 # We require a way to get the time.
504 time_found=no
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])
508 fi
509
510 AC_CHECK_FUNCS(memmove)
511
512 # We require memcpy.
513 memcpy_found=no
514 AC_CHECK_FUNCS(memcpy, memcpy_found=yes)
515 if test "$memcpy_found" = no; then
516 AC_MSG_ERROR([memcpy is required])
517 fi
518
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 #--------------------------------------------------------------------
537
538 AC_CACHE_CHECK([for socket libraries], gcj_cv_lib_sockets,
539 [gcj_cv_lib_sockets=
540 gcj_checkBoth=0
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",
546 gcj_checkBoth=1)
547 fi
548 if test "$gcj_checkBoth" = 1; then
549 gcj_oldLibs=$LIBS
550 LIBS="$LIBS -lsocket -lnsl"
551 unset ac_cv_func_accept
552 AC_CHECK_FUNC(accept,
553 [gcj_checkNsl=0
554 gcj_cv_lib_sockets="-lsocket -lnsl"])
555 unset ac_cv_func_accept
556 LIBS=$gcj_oldLibs
557 fi
558 unset ac_cv_func_gethostbyname
559 gcj_oldLibs=$LIBS
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
565 LIBS=$gcj_oldLIBS
566 ])
567 SYSTEMSPEC="$SYSTEMSPEC $gcj_cv_lib_sockets"
568
569 if test "$with_system_zlib" = yes; then
570 AC_CHECK_LIB(z, deflate, ZLIBSPEC=-lz, ZLIBSPEC=-lzgcj)
571 else
572 ZLIBSPEC=-lzgcj
573 ZLIBTESTSPEC="-L`pwd`/../zlib/.libs -rpath `pwd`/../zlib/.libs"
574 fi
575
576 # On Solaris, and maybe other architectures, the Boehm collector
577 # requires -ldl.
578 if test "$GC" = boehm; then
579 AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl")
580 fi
581
582 if test -d "$libgcj_basedir/../gcc/java"; then
583 GCJ=
584 else
585 CANADIAN=yes
586 NULL_TARGET=yes
587 GCJ=gcj
588 fi
589 fi
590
591 dnl FIXME: cross compilation
592 AC_CHECK_SIZEOF(void *)
593
594 ZLIBS=
595 ZDEPS=
596 ZINCS=
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'
603 else
604 ZLIBS="$ZLIBSPEC"
605 fi
606 AC_SUBST(ZLIBS)
607 AC_SUBST(ZDEPS)
608 AC_SUBST(ZINCS)
609 AC_SUBST(DIVIDESPEC)
610 AC_SUBST(EXCEPTIONSPEC)
611 AC_SUBST(FORCELIBGCCSPEC)
612
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)
619
620 # Determine gcj version number.
621 if test "$GCJ" = ""; then
622 if test -z "${with_multisubdir}"; then
623 builddotdot=.
624 else
625 changequote(<<,>>)
626 builddotdot=`echo ${with_multisubdir} | sed -e 's:[^/][^/]*:..:g'`
627 changequote([,])
628 fi
629 dir="`cd ${builddotdot}/../../gcc && pwd`"
630 GCJ="$dir/gcj -B$dir/"
631 fi
632 changequote(<<,>>)
633 gcjvers="`$GCJ -v 2>&1 | sed -n 's/^.*version \([^ ]*\).*$/\1/p'`"
634 changequote([,])
635 AC_DEFINE_UNQUOTED(GCJVERSION, "$gcjvers")
636
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 { }
642 END
643 use_fuse=yes
644 $GCJ -classpath $srcdir -fuse-divide-subroutine -fsyntax-only \
645 conftest.java > /dev/null 2>&1 \
646 || use_fuse=no
647 rm -f conftest.java
648 if test "$use_fuse" = no; then
649 DIVIDESPEC=
650 fi
651 AC_MSG_RESULT($use_fuse)
652
653 AC_SUBST(AM_RUNTESTFLAGS)
654
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>], ,
660 [AC_MSG_RESULT(no)],
661 [AC_DEFINE(__NO_MATH_INLINES)
662 AC_MSG_RESULT(yes)])
663 CFLAGS="$save_CFLAGS"
664
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)
672
673 AC_CHECK_TYPE([ssize_t], [int])
674
675 AC_MSG_CHECKING([for in_addr_t])
676 AC_TRY_COMPILE([#include <sys/types.h>
677 #if STDC_HEADERS
678 #include <stdlib.h>
679 #include <stddef.h>
680 #endif
681 #if HAVE_NETINET_IN_H
682 #include <netinet/in.h>
683 #endif], [in_addr_t foo;],
684 [AC_DEFINE([HAVE_IN_ADDR_T])
685 AC_MSG_RESULT(yes)],
686 [AC_MSG_RESULT(no)])
687
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)
691 AC_MSG_RESULT(yes)],
692 [AC_MSG_RESULT(no)])
693
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)
697 AC_MSG_RESULT(yes)],
698 [AC_MSG_RESULT(no)])
699
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)
703 AC_MSG_RESULT(yes)],
704 [AC_MSG_RESULT(no)])
705
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)
709 AC_MSG_RESULT(yes)],
710 [AC_MSG_RESULT(no)
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)
717 AC_MSG_RESULT(yes)],
718 [AC_MSG_RESULT(no)])])
719
720 AC_FUNC_ALLOCA
721
722 AC_CHECK_PROGS(PERL, perl, false)
723
724 SYSDEP_SOURCES=
725
726 case "${host}" in
727 i?86-*-linux*)
728 SIGNAL_HANDLER=include/i386-signal.h
729 ;;
730 sparc-sun-solaris*)
731 SIGNAL_HANDLER=include/sparc-signal.h
732 ;;
733 ia64-*)
734 SYSDEP_SOURCES=sysdep/ia64.c
735 test -d sysdep || mkdir sysdep
736 ;;
737 *)
738 SIGNAL_HANDLER=include/default-signal.h
739 ;;
740 esac
741
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
745 fi
746
747 AC_SUBST(SYSDEP_SOURCES)
748
749 AC_LINK_FILES($SIGNAL_HANDLER, include/java-signal.h)
750
751 if test "${multilib}" = "yes"; then
752 multilib_arg="--enable-multilib"
753 else
754 multilib_arg=
755 fi
756
757 here=`pwd`
758 AC_SUBST(here)
759
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
763 fi],
764 srcdir=${srcdir}
765 host=${host}
766 target=${target}
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}
771 CC="${CC}"
772 CXX="${CXX}"
773 )
This page took 0.068837 seconds and 5 git commands to generate.