blob: a3930bf88a7747f314ab610890848ef4d5b58e42 [file] [log] [blame]
Ben Ellistonbce1b481998-09-30 02:13:15 +00001# Process this file with autoconf to produce a configure script.
Alexandre Oliva6706f112002-05-08 04:38:00 +00002# Copyright (C) 1995, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
Ben Ellistonbce1b481998-09-30 02:13:15 +00003# 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 Khanda4b1921999-03-24 14:46:41 -070022AC_PREREQ(2.13)
Jeffrey A Law789eb4f1998-09-30 08:17:56 +000023AC_INIT(objc/objc.h)
Ovidiu Predescud972a4c2000-08-15 07:38:04 +000024AC_CONFIG_HEADER(config.h)
Ben Ellistonbce1b481998-09-30 02:13:15 +000025
Alexandre Oliva6706f112002-05-08 04:38:00 +000026# This works around the fact that libtool configuration may change LD
27# for this particular configuration, but some shells, instead of
28# keeping the changes in LD private, export them just because LD is
29# exported.
30ORIGINAL_LD_FOR_MULTILIBS=$LD
31
Franz Sirlb150efe2002-02-11 18:10:05 +000032AC_CANONICAL_SYSTEM
33target_alias=${target_alias-$target}
34AC_SUBST(target_alias)
35
36GLIBCPP_CONFIGURE(.)
37GLIBCPP_EXPORT_INSTALL_INFO
Ben Ellistonbce1b481998-09-30 02:13:15 +000038
Mumit Khanda4b1921999-03-24 14:46:41 -070039# 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 Hollstein71205e01998-11-26 01:48:34 +000043compiler_name=cc1obj
44rm -f skip-this-dir
45AC_MSG_CHECKING(if compiler $compiler_name has been built)
46AC_CACHE_VAL(objc_cv_compiler_exists,
Mumit Khanda4b1921999-03-24 14:46:41 -070047[objc_cv_compiler_exists=yes
48if test -n "$r"; then
49 if test -d "$r"/gcc; then
50 if test -f "$r"/gcc/$compiler_name \
Jeff Law6de94851999-05-19 20:27:28 -060051 || test -f "$r"/gcc/$compiler_name.exe; then
Mumit Khanda4b1921999-03-24 14:46:41 -070052 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
58fi
59])
Manfred Hollstein71205e01998-11-26 01:48:34 +000060AC_MSG_RESULT($objc_cv_compiler_exists)
61if test x$objc_cv_compiler_exists = xno
62then
Mumit Khanda4b1921999-03-24 14:46:41 -070063 rm -f Makefile conftest* confdefs* core
64 exit 0
Manfred Hollstein71205e01998-11-26 01:48:34 +000065fi
66
Ben Ellistonbce1b481998-09-30 02:13:15 +000067dnl Checks for programs.
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +000068
Franz Sirlb150efe2002-02-11 18:10:05 +000069# Disable shared libs by default
70AC_DISABLE_SHARED
71# Enable Win32 DLL on MS Windows - FIXME
72AC_LIBTOOL_WIN32_DLL
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +000073
Franz Sirlb150efe2002-02-11 18:10:05 +000074AC_PROG_LIBTOOL
Ben Ellistonbce1b481998-09-30 02:13:15 +000075
Franz Sirlb150efe2002-02-11 18:10:05 +000076dnl These should be inherited in the recursive make, but ensure they are
77dnl defined:
Ben Ellistonbce1b481998-09-30 02:13:15 +000078test "$AR" || AR=ar
79AC_SUBST(AR)
80if test "$RANLIB"; then :
81 AC_SUBST(RANLIB)
82else
83 AC_PROG_RANLIB
84fi
85AC_PROG_INSTALL
Franz Sirlb150efe2002-02-11 18:10:05 +000086AC_PROG_MAKE_SET
Ben Ellistonbce1b481998-09-30 02:13:15 +000087
88dnl Checks for header files.
89# Sanity check for the cross-compilation case:
90AC_CHECK_HEADER(stdio.h,:,
91 [AC_MSG_ERROR([Can't find stdio.h.
92You must have a usable C system for the target already installed, at least
93including headers and, preferably, the library, before you can configure
94the Objective C runtime system. If necessary, install gcc now with
95\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
96
97AC_HEADER_STDC
98
Ovidiu Predescud972a4c2000-08-15 07:38:04 +000099AC_CHECK_HEADERS(sched.h)
100
H.J. Lu15794a92000-07-20 07:27:26 +0000101# Determine CFLAGS for gthread.
Ben Ellistonbce1b481998-09-30 02:13:15 +0000102
H.J. Lu15794a92000-07-20 07:27:26 +0000103AC_CACHE_CHECK([for gthread cflags],objc_cv_gthread_flags,
Jeffrey A Law79014e61999-01-05 00:40:22 +0000104[if test -f "$r"/gcc/Makefile
Ben Ellistonbce1b481998-09-30 02:13:15 +0000105then
H.J. Lu15794a92000-07-20 07:27:26 +0000106 objc_cv_gthread_flags=`grep \^GTHREAD_FLAGS "$r"/gcc/Makefile | awk -F= '{ print $2 }'`
Ben Ellistonbce1b481998-09-30 02:13:15 +0000107else
108 AC_MSG_ERROR([not found])
109fi])
H.J. Lu15794a92000-07-20 07:27:26 +0000110GTHREAD_FLAGS=$objc_cv_gthread_flags
111AC_SUBST(GTHREAD_FLAGS)
Ben Ellistonbce1b481998-09-30 02:13:15 +0000112
113AC_ARG_ENABLE(objc-gc,
114[ --enable-objc-gc enable the use of Boehm's garbage collector with
115 the GNU Objective-C runtime.],
116if [[[ x$enable_objc_gc = xno ]]]; then
117 OBJC_BOEHM_GC=''
118else
Nicola Peroc161c992000-07-29 19:19:43 +0000119 OBJC_BOEHM_GC=libobjc_gc.la
Ben Ellistonbce1b481998-09-30 02:13:15 +0000120fi,
121OBJC_BOEHM_GC='')
122AC_SUBST(OBJC_BOEHM_GC)
123
124
125# We need multilib support, but only if configuring for the target.
126AC_OUTPUT(Makefile,
Franz Sirlb150efe2002-02-11 18:10:05 +0000127 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
Ben Ellistonbce1b481998-09-30 02:13:15 +0000128if test -n "$CONFIG_FILES"; then
129 if test -n "${with_target_subdir}"; then
130 # FIXME: We shouldn't need to set ac_file
131 ac_file=Makefile
Alexandre Oliva6706f112002-05-08 04:38:00 +0000132 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
Franz Sirlb150efe2002-02-11 18:10:05 +0000133 . ${toplevel_srcdir}/config-ml.in
Ben Ellistonbce1b481998-09-30 02:13:15 +0000134 fi
135fi],
136srcdir=${srcdir}
137host=${host}
138target=${target}
139with_target_subdir=${with_target_subdir}
140with_multisubdir=${with_multisubdir}
141ac_configure_args="--enable-multilib ${ac_configure_args}"
Franz Sirlb150efe2002-02-11 18:10:05 +0000142toplevel_srcdir=${toplevel_srcdir}
Ben Ellistonbce1b481998-09-30 02:13:15 +0000143CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
Ben Ellistonbce1b481998-09-30 02:13:15 +0000144)
145
Franz Sirlb150efe2002-02-11 18:10:05 +0000146
Ben Ellistonbce1b481998-09-30 02:13:15 +0000147dnl Local Variables:
148dnl comment-start: "dnl "
149dnl comment-end: ""
150dnl comment-start-skip: "\\bdnl\\b\\s *"
151dnl End: