Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 1 | # Process this file with autoconf to produce a configure script. |
| 2 | # Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc. |
| 3 | # Contributed by Dave Love (d.love@dl.ac.uk). |
| 4 | # |
| 5 | #This file is part of GNU Objective C. |
| 6 | # |
| 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) |
| 10 | #any later version. |
| 11 | # |
| 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. |
| 16 | # |
| 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 |
| 20 | #02111-1307, USA. |
| 21 | |
Kaveh R. Ghazi | 223a884 | 1998-11-23 13:51:40 +0000 | [diff] [blame] | 22 | AC_PREREQ(2.12.1) |
Jeffrey A Law | 789eb4f | 1998-09-30 08:17:56 +0000 | [diff] [blame] | 23 | AC_INIT(objc/objc.h) |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 24 | #AC_CONFIG_HEADER(config.h) |
| 25 | |
| 26 | if test "${srcdir}" = "." ; then |
| 27 | if test "${with_target_subdir}" != "." ; then |
| 28 | topsrcdir=${with_multisrctop}../.. |
| 29 | else |
| 30 | topsrcdir=${with_multisrctop}.. |
| 31 | fi |
| 32 | else |
| 33 | topsrcdir=${srcdir}/.. |
| 34 | fi |
Kaveh R. Ghazi | 8a829fd | 1998-10-22 11:39:46 +0000 | [diff] [blame] | 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) |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 38 | |
Manfred Hollstein | 71205e0 | 1998-11-26 01:48:34 +0000 | [diff] [blame] | 39 | # If the language specific compiler does not exist, but the "gcc" directory does, |
| 40 | # we do not build anything. Note, $r is set by the top-level Makefile. |
| 41 | compiler_name=cc1obj |
| 42 | rm -f skip-this-dir |
| 43 | AC_MSG_CHECKING(if compiler $compiler_name has been built) |
| 44 | AC_CACHE_VAL(objc_cv_compiler_exists, |
| 45 | [objc_cv_compiler_exists=yes |
| 46 | if test -n "$r"; then |
| 47 | if test -d "$r"/gcc; then |
| 48 | if test -f "$r"/gcc/$compiler_name; then |
| 49 | true |
| 50 | else |
| 51 | objc_cv_compiler_exists=no |
| 52 | echo "rm -f config.cache config.log multilib.out" > skip-this-dir |
| 53 | fi |
| 54 | fi |
| 55 | fi |
| 56 | ]) |
| 57 | AC_MSG_RESULT($objc_cv_compiler_exists) |
| 58 | if test x$objc_cv_compiler_exists = xno |
| 59 | then |
| 60 | rm -f Makefile conftest* confdefs* core |
| 61 | exit 0 |
| 62 | fi |
| 63 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 64 | dnl Checks for programs. |
| 65 | # For ObjC we'll set CC to point at the built gcc, but this will get it into |
| 66 | # the makefiles |
| 67 | AC_PROG_CC |
| 68 | |
| 69 | test "$AR" || AR=ar |
| 70 | AC_SUBST(AR) |
| 71 | if test "$RANLIB"; then : |
| 72 | AC_SUBST(RANLIB) |
| 73 | else |
| 74 | AC_PROG_RANLIB |
| 75 | fi |
| 76 | AC_PROG_INSTALL |
| 77 | |
| 78 | dnl Checks for libraries. |
| 79 | |
| 80 | dnl Checks for header files. |
| 81 | # Sanity check for the cross-compilation case: |
| 82 | AC_CHECK_HEADER(stdio.h,:, |
| 83 | [AC_MSG_ERROR([Can't find stdio.h. |
| 84 | You must have a usable C system for the target already installed, at least |
| 85 | including headers and, preferably, the library, before you can configure |
| 86 | the Objective C runtime system. If necessary, install gcc now with |
| 87 | \`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])]) |
| 88 | |
| 89 | AC_HEADER_STDC |
| 90 | |
| 91 | # Determine the name of the GCC thread file. |
| 92 | |
| 93 | AC_CACHE_CHECK([for thread file],objc_cv_thread_file, |
Jeffrey A Law | 79014e6 | 1999-01-05 00:40:22 +0000 | [diff] [blame^] | 94 | [if test -f "$r"/gcc/Makefile |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 95 | then |
Jeffrey A Law | 79014e6 | 1999-01-05 00:40:22 +0000 | [diff] [blame^] | 96 | objc_cv_thread_file=`grep \^GCC_THREAD_FILE "$r"/gcc/Makefile | awk -F= '{ print $2 }'` |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 97 | else |
| 98 | AC_MSG_ERROR([not found]) |
| 99 | fi]) |
| 100 | OBJC_THREAD_FILE=$objc_cv_thread_file |
| 101 | AC_SUBST(OBJC_THREAD_FILE) |
| 102 | |
| 103 | AC_ARG_ENABLE(objc-gc, |
| 104 | [ --enable-objc-gc enable the use of Boehm's garbage collector with |
| 105 | the GNU Objective-C runtime.], |
| 106 | if [[[ x$enable_objc_gc = xno ]]]; then |
| 107 | OBJC_BOEHM_GC='' |
| 108 | else |
| 109 | OBJC_BOEHM_GC=libobjc_gc.a |
| 110 | fi, |
| 111 | OBJC_BOEHM_GC='') |
| 112 | AC_SUBST(OBJC_BOEHM_GC) |
| 113 | |
| 114 | |
| 115 | # We need multilib support, but only if configuring for the target. |
| 116 | AC_OUTPUT(Makefile, |
| 117 | [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h |
| 118 | if test -n "$CONFIG_FILES"; then |
| 119 | if test -n "${with_target_subdir}"; then |
| 120 | # FIXME: We shouldn't need to set ac_file |
| 121 | ac_file=Makefile |
| 122 | . ${topsrcdir}/config-ml.in |
| 123 | fi |
| 124 | fi], |
| 125 | srcdir=${srcdir} |
| 126 | host=${host} |
| 127 | target=${target} |
| 128 | with_target_subdir=${with_target_subdir} |
| 129 | with_multisubdir=${with_multisubdir} |
| 130 | ac_configure_args="--enable-multilib ${ac_configure_args}" |
| 131 | CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} |
| 132 | topsrcdir=${topsrcdir} |
| 133 | ) |
| 134 | |
| 135 | dnl Local Variables: |
| 136 | dnl comment-start: "dnl " |
| 137 | dnl comment-end: "" |
| 138 | dnl comment-start-skip: "\\bdnl\\b\\s *" |
| 139 | dnl End: |