Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 1 | # Process this file with autoconf to produce a configure script. |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 2 | # Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc. |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 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 | |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 22 | AC_PREREQ(2.13) |
Jeffrey A Law | 789eb4f | 1998-09-30 08:17:56 +0000 | [diff] [blame] | 23 | AC_INIT(objc/objc.h) |
Ovidiu Predescu | d972a4c | 2000-08-15 07:38:04 +0000 | [diff] [blame] | 24 | AC_CONFIG_HEADER(config.h) |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 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 | |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 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. |
Manfred Hollstein | 71205e0 | 1998-11-26 01:48:34 +0000 | [diff] [blame] | 43 | compiler_name=cc1obj |
| 44 | rm -f skip-this-dir |
| 45 | AC_MSG_CHECKING(if compiler $compiler_name has been built) |
| 46 | AC_CACHE_VAL(objc_cv_compiler_exists, |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 47 | [objc_cv_compiler_exists=yes |
| 48 | if test -n "$r"; then |
| 49 | if test -d "$r"/gcc; then |
| 50 | if test -f "$r"/gcc/$compiler_name \ |
Jeff Law | 6de9485 | 1999-05-19 20:27:28 -0600 | [diff] [blame] | 51 | || test -f "$r"/gcc/$compiler_name.exe; then |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 52 | true |
| 53 | else |
| 54 | objc_cv_compiler_exists=no |
| 55 | echo "rm -f config.cache config.log multilib.out" > skip-this-dir |
| 56 | fi |
| 57 | fi |
| 58 | fi |
| 59 | ]) |
Manfred Hollstein | 71205e0 | 1998-11-26 01:48:34 +0000 | [diff] [blame] | 60 | AC_MSG_RESULT($objc_cv_compiler_exists) |
| 61 | if test x$objc_cv_compiler_exists = xno |
| 62 | then |
Mumit Khan | da4b192 | 1999-03-24 14:46:41 -0700 | [diff] [blame] | 63 | rm -f Makefile conftest* confdefs* core |
| 64 | exit 0 |
Manfred Hollstein | 71205e0 | 1998-11-26 01:48:34 +0000 | [diff] [blame] | 65 | fi |
| 66 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 67 | dnl Checks for programs. |
Geoffrey Keating | 7c6b0e9 | 2001-02-09 07:14:35 +0000 | [diff] [blame^] | 68 | |
| 69 | dnl FIXME AC_PROG_CC wants CC to be able to link things, but it may |
| 70 | dnl not be able to. |
| 71 | define([AC_PROG_CC_WORKS],[]) |
| 72 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 73 | # For ObjC we'll set CC to point at the built gcc, but this will get it into |
| 74 | # the makefiles |
| 75 | AC_PROG_CC |
| 76 | |
| 77 | test "$AR" || AR=ar |
| 78 | AC_SUBST(AR) |
| 79 | if test "$RANLIB"; then : |
| 80 | AC_SUBST(RANLIB) |
| 81 | else |
| 82 | AC_PROG_RANLIB |
| 83 | fi |
| 84 | AC_PROG_INSTALL |
| 85 | |
Geoffrey Keating | 7c6b0e9 | 2001-02-09 07:14:35 +0000 | [diff] [blame^] | 86 | # We need AC_EXEEXT to keep automake happy in cygnus mode. However, |
| 87 | # at least currently, we never actually build a program, so we never |
| 88 | # need to use $(EXEEXT). Moreover, the test for EXEEXT normally |
| 89 | # fails, because we are probably configuring with a cross compiler |
| 90 | # which cant create executables. So we include AC_EXEEXT to keep |
| 91 | # automake happy, but we dont execute it, since we dont care about |
| 92 | # the result. |
| 93 | if false; then |
| 94 | AC_EXEEXT |
| 95 | fi |
| 96 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 97 | dnl Checks for libraries. |
| 98 | |
| 99 | dnl Checks for header files. |
| 100 | # Sanity check for the cross-compilation case: |
| 101 | AC_CHECK_HEADER(stdio.h,:, |
| 102 | [AC_MSG_ERROR([Can't find stdio.h. |
| 103 | You must have a usable C system for the target already installed, at least |
| 104 | including headers and, preferably, the library, before you can configure |
| 105 | the Objective C runtime system. If necessary, install gcc now with |
| 106 | \`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])]) |
| 107 | |
| 108 | AC_HEADER_STDC |
| 109 | |
Ovidiu Predescu | d972a4c | 2000-08-15 07:38:04 +0000 | [diff] [blame] | 110 | AC_CHECK_HEADERS(sched.h) |
| 111 | |
H.J. Lu | 15794a9 | 2000-07-20 07:27:26 +0000 | [diff] [blame] | 112 | # Determine CFLAGS for gthread. |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 113 | |
H.J. Lu | 15794a9 | 2000-07-20 07:27:26 +0000 | [diff] [blame] | 114 | AC_CACHE_CHECK([for gthread cflags],objc_cv_gthread_flags, |
Jeffrey A Law | 79014e6 | 1999-01-05 00:40:22 +0000 | [diff] [blame] | 115 | [if test -f "$r"/gcc/Makefile |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 116 | then |
H.J. Lu | 15794a9 | 2000-07-20 07:27:26 +0000 | [diff] [blame] | 117 | objc_cv_gthread_flags=`grep \^GTHREAD_FLAGS "$r"/gcc/Makefile | awk -F= '{ print $2 }'` |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 118 | else |
| 119 | AC_MSG_ERROR([not found]) |
| 120 | fi]) |
H.J. Lu | 15794a9 | 2000-07-20 07:27:26 +0000 | [diff] [blame] | 121 | GTHREAD_FLAGS=$objc_cv_gthread_flags |
| 122 | AC_SUBST(GTHREAD_FLAGS) |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 123 | |
Nicola Pero | c161c99 | 2000-07-29 19:19:43 +0000 | [diff] [blame] | 124 | # Disable shared libs by default |
| 125 | AC_DISABLE_SHARED |
| 126 | # Enable Win32 DLL on MS Windows - FIXME |
| 127 | AC_LIBTOOL_WIN32_DLL |
| 128 | # Use libtool |
| 129 | AC_PROG_LIBTOOL |
| 130 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 131 | AC_ARG_ENABLE(objc-gc, |
| 132 | [ --enable-objc-gc enable the use of Boehm's garbage collector with |
| 133 | the GNU Objective-C runtime.], |
| 134 | if [[[ x$enable_objc_gc = xno ]]]; then |
| 135 | OBJC_BOEHM_GC='' |
| 136 | else |
Nicola Pero | c161c99 | 2000-07-29 19:19:43 +0000 | [diff] [blame] | 137 | OBJC_BOEHM_GC=libobjc_gc.la |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 138 | fi, |
| 139 | OBJC_BOEHM_GC='') |
| 140 | AC_SUBST(OBJC_BOEHM_GC) |
| 141 | |
| 142 | |
| 143 | # We need multilib support, but only if configuring for the target. |
| 144 | AC_OUTPUT(Makefile, |
| 145 | [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h |
| 146 | if test -n "$CONFIG_FILES"; then |
| 147 | if test -n "${with_target_subdir}"; then |
| 148 | # FIXME: We shouldn't need to set ac_file |
| 149 | ac_file=Makefile |
| 150 | . ${topsrcdir}/config-ml.in |
| 151 | fi |
| 152 | fi], |
| 153 | srcdir=${srcdir} |
| 154 | host=${host} |
| 155 | target=${target} |
| 156 | with_target_subdir=${with_target_subdir} |
| 157 | with_multisubdir=${with_multisubdir} |
| 158 | ac_configure_args="--enable-multilib ${ac_configure_args}" |
| 159 | CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} |
| 160 | topsrcdir=${topsrcdir} |
| 161 | ) |
| 162 | |
| 163 | dnl Local Variables: |
| 164 | dnl comment-start: "dnl " |
| 165 | dnl comment-end: "" |
| 166 | dnl comment-start-skip: "\\bdnl\\b\\s *" |
| 167 | dnl End: |