1 dnl Process this file with autoconf to produce configure.
5 dnl Can't be done in BOEHM_CONFIGURE because that confuses automake.
14 dnl We use these options to decide which functions to include.
15 AC_ARG_WITH(target-subdir,
16 [ --with-target-subdir=SUBDIR
17 configuring with a cross compiler])
18 AC_ARG_WITH(cross-host,
19 [ --with-cross-host=HOST configuring with a cross compiler])
22 # automake wants to see AC_EXEEXT. But we don't need it. And having
23 # it is actually a problem, because the compiler we're passed can't
24 # necessarily do a full link. So we fool automake here.
25 if test "x" = "y"; then
29 AC_MSG_CHECKING([for threads package to use])
30 AC_ARG_ENABLE(threads, [ --enable-threads=TYPE choose threading package],
32 dnl FIXME: figure out native threads to use here.
35 if test "$THREADS" = yes; then
41 # FIXME: this isn't correct in all cases.
48 # FIXME: for now, choose POSIX, because we implement that.
49 # Later, choose irix threads.
53 # FIXME: for now, choose POSIX, because we implement that.
54 # Later, choose solaris threads.
74 AC_DEFINE(LINUX_THREADS)
78 AC_DEFINE(SOLARIS_THREADS)
79 AC_DEFINE(_SOLARIS_PTHREADS)
82 AC_DEFINE(IRIX_THREADS)
87 decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
88 AC_MSG_ERROR(thread package $THREADS not yet supported)
91 AC_MSG_ERROR($THREADS is an unknown thread package)
94 AC_MSG_RESULT($THREADS)
97 AC_ARG_ENABLE(java-gc,
99 << --enable-java-gc=TYPE choose garbage collector [boehm]>>,
104 if test "$GC" = "boehm"; then
105 target_all=libgcjgc.la
109 dnl If the target is an eCos system, use the appropriate eCos
111 dnl FIXME: this should not be a local option but a global target
112 dnl system; at present there is no eCos target.
115 [ --with-ecos enable runtime eCos target support],
116 TARGET_ECOS="$with_ecos"
121 case "$TARGET_ECOS" in
126 CXXINCLUDES="-I${TARGET_ECOS}/include"
127 addobjs="$addobjs ecos.lo"
133 AC_SUBST(CXXINCLUDES)
138 machdep="alpha_mach_dep.lo"
141 machdep="mips_ultrix_mach_dep.lo"
142 AC_DEFINE(STACKBASE, __stackbase)
143 AC_DEFINE(DATASTART_IS_ETEXT)
146 machdep="mips_ultrix_mach-dep.lo"
149 machdep="mips_sgi_mach_dep.lo"
150 AC_DEFINE(NO_EXECUTE_PERMISSION)
152 sparc-sun-solaris2.3*)
153 AC_DEFINE(SUNOS53_SHARED_LIB)
156 if test x"$machdep" = x; then
157 machdep="mach_dep.lo"
159 addobjs="$addobjs $machdep"
162 dnl As of 4.13a2, the collector will not properly work on Solaris when
163 dnl built with gcc and -O. So we remove -O in the appropriate case.
166 if test "$GCC" = yes; then
173 new_CFLAGS="$new_CFLAGS $i"
182 dnl We need to override the top-level CFLAGS. This is how we do it.
186 dnl Define a few things to retarget the library towards
189 AC_DEFINE(NO_SIGNALS)
190 AC_DEFINE(NO_DEBUGGING)
191 AC_DEFINE(JAVA_FINALIZATION)
193 dnl This is something of a hack. When cross-compiling we turn off
194 dnl some functionality. We also enable the "small" configuration.
195 dnl These is only correct when targetting an embedded system. FIXME.
196 if test -n "${with_cross_host}"; then
199 AC_DEFINE(SMALL_CONFIG)
202 AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
204 if test "${multilib}" = "yes"; then
205 multilib_arg="--enable-multilib"
212 dnl Put all the -D options in a file. These are required before
213 dnl boehm-config.h can be included. This is a huge hack brought
214 dnl about by overall poor structuring of this entire library.
215 echo "$DEFS" > boehm-cflags
217 if test -n "$CONFIG_FILES"; then
218 ac_file=Makefile . ${boehm_gc_basedir}/../config-ml.in
223 with_multisubdir=${with_multisubdir}
224 ac_configure_args="${multilib_arg} ${ac_configure_args}"
225 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
226 boehm_gc_basedir=${boehm_gc_basedir}