1 # Process this file with autoconf to produce a configure script.
2 # Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
3 # Contributed by Dave Love (d.love@dl.ac.uk).
5 #This file is part of GNU Objective C.
7 #GNU Objective C is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
12 #GNU Objective C is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 #GNU General Public License for more details.
17 #You should have received a copy of the GNU General Public License
18 #along with GNU Objective C; see the file COPYING. If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #AC_CONFIG_HEADER(config.h)
26 if test "${srcdir}" = "." ; then
27 if test "${with_target_subdir}" != "." ; then
28 topsrcdir=${with_multisrctop}../..
30 topsrcdir=${with_multisrctop}..
33 topsrcdir=${srcdir}/..
35 dnl This is needed for a multilibbed build in the source tree so
36 dnl that install-sh and config.sub get found.
37 AC_CONFIG_AUX_DIR($topsrcdir)
39 # If the language specific compiler does not exist, but the "gcc" directory
40 # does, we do not build anything. Note, $r is set by the top-level Makefile.
41 # Note that when we look for the compiler, we search both with and without
42 # extension to handle cross and canadian cross builds.
45 AC_MSG_CHECKING(if compiler $compiler_name has been built)
46 AC_CACHE_VAL(objc_cv_compiler_exists,
47 [objc_cv_compiler_exists=yes
49 if test -d "$r"/gcc; then
50 if test -f "$r"/gcc/$compiler_name \
51 || test -f "$r"/gcc/$compiler_name.exe; then
54 objc_cv_compiler_exists=no
55 echo "rm -f config.cache config.log multilib.out" > skip-this-dir
60 AC_MSG_RESULT($objc_cv_compiler_exists)
61 if test x$objc_cv_compiler_exists = xno
63 rm -f Makefile conftest* confdefs* core
67 dnl Checks for programs.
68 # For ObjC we'll set CC to point at the built gcc, but this will get it into
74 if test "$RANLIB"; then :
81 dnl Checks for libraries.
83 dnl Checks for header files.
84 # Sanity check for the cross-compilation case:
85 AC_CHECK_HEADER(stdio.h,:,
86 [AC_MSG_ERROR([Can't find stdio.h.
87 You must have a usable C system for the target already installed, at least
88 including headers and, preferably, the library, before you can configure
89 the Objective C runtime system. If necessary, install gcc now with
90 \`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
94 # Determine the name of the GCC thread file.
96 AC_CACHE_CHECK([for thread file],objc_cv_thread_file,
97 [if test -f "$r"/gcc/Makefile
99 objc_cv_thread_file=`grep \^GCC_THREAD_FILE "$r"/gcc/Makefile | awk -F= '{ print $2 }'`
101 AC_MSG_ERROR([not found])
103 OBJC_THREAD_FILE=$objc_cv_thread_file
104 AC_SUBST(OBJC_THREAD_FILE)
106 AC_ARG_ENABLE(objc-gc,
107 [ --enable-objc-gc enable the use of Boehm's garbage collector with
108 the GNU Objective-C runtime.],
109 if [[[ x$enable_objc_gc = xno ]]]; then
112 OBJC_BOEHM_GC=libobjc_gc.a
115 AC_SUBST(OBJC_BOEHM_GC)
118 # We need multilib support, but only if configuring for the target.
120 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
121 if test -n "$CONFIG_FILES"; then
122 if test -n "${with_target_subdir}"; then
123 # FIXME: We shouldn't need to set ac_file
125 . ${topsrcdir}/config-ml.in
131 with_target_subdir=${with_target_subdir}
132 with_multisubdir=${with_multisubdir}
133 ac_configure_args="--enable-multilib ${ac_configure_args}"
134 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
135 topsrcdir=${topsrcdir}
139 dnl comment-start: "dnl "
141 dnl comment-start-skip: "\\bdnl\\b\\s *"