blob: 2f74898310371da82f9076b0aa181ccecd48da4d [file] [log] [blame]
Ben Ellistonbce1b481998-09-30 02:13:15 +00001# Process this file with autoconf to produce a configure script.
Mumit Khanda4b1921999-03-24 14:46:41 -07002# Copyright (C) 1995, 1997, 1998, 1999 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
Franz Sirlb150efe2002-02-11 18:10:05 +000026AC_CANONICAL_SYSTEM
27target_alias=${target_alias-$target}
28AC_SUBST(target_alias)
29
30GLIBCPP_CONFIGURE(.)
31GLIBCPP_EXPORT_INSTALL_INFO
Ben Ellistonbce1b481998-09-30 02:13:15 +000032
Mumit Khanda4b1921999-03-24 14:46:41 -070033# If the language specific compiler does not exist, but the "gcc" directory
34# does, we do not build anything. Note, $r is set by the top-level Makefile.
35# Note that when we look for the compiler, we search both with and without
36# extension to handle cross and canadian cross builds.
Manfred Hollstein71205e01998-11-26 01:48:34 +000037compiler_name=cc1obj
38rm -f skip-this-dir
39AC_MSG_CHECKING(if compiler $compiler_name has been built)
40AC_CACHE_VAL(objc_cv_compiler_exists,
Mumit Khanda4b1921999-03-24 14:46:41 -070041[objc_cv_compiler_exists=yes
42if test -n "$r"; then
43 if test -d "$r"/gcc; then
44 if test -f "$r"/gcc/$compiler_name \
Jeff Law6de94851999-05-19 20:27:28 -060045 || test -f "$r"/gcc/$compiler_name.exe; then
Mumit Khanda4b1921999-03-24 14:46:41 -070046 true
47 else
48 objc_cv_compiler_exists=no
49 echo "rm -f config.cache config.log multilib.out" > skip-this-dir
50 fi
51 fi
52fi
53])
Manfred Hollstein71205e01998-11-26 01:48:34 +000054AC_MSG_RESULT($objc_cv_compiler_exists)
55if test x$objc_cv_compiler_exists = xno
56then
Mumit Khanda4b1921999-03-24 14:46:41 -070057 rm -f Makefile conftest* confdefs* core
58 exit 0
Manfred Hollstein71205e01998-11-26 01:48:34 +000059fi
60
Ben Ellistonbce1b481998-09-30 02:13:15 +000061dnl Checks for programs.
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +000062
Franz Sirlb150efe2002-02-11 18:10:05 +000063# Disable shared libs by default
64AC_DISABLE_SHARED
65# Enable Win32 DLL on MS Windows - FIXME
66AC_LIBTOOL_WIN32_DLL
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +000067
Franz Sirlb150efe2002-02-11 18:10:05 +000068AC_PROG_LIBTOOL
Ben Ellistonbce1b481998-09-30 02:13:15 +000069
Franz Sirlb150efe2002-02-11 18:10:05 +000070dnl These should be inherited in the recursive make, but ensure they are
71dnl defined:
Ben Ellistonbce1b481998-09-30 02:13:15 +000072test "$AR" || AR=ar
73AC_SUBST(AR)
74if test "$RANLIB"; then :
75 AC_SUBST(RANLIB)
76else
77 AC_PROG_RANLIB
78fi
79AC_PROG_INSTALL
Franz Sirlb150efe2002-02-11 18:10:05 +000080AC_PROG_MAKE_SET
Ben Ellistonbce1b481998-09-30 02:13:15 +000081
82dnl Checks for header files.
83# Sanity check for the cross-compilation case:
84AC_CHECK_HEADER(stdio.h,:,
85 [AC_MSG_ERROR([Can't find stdio.h.
86You must have a usable C system for the target already installed, at least
87including headers and, preferably, the library, before you can configure
88the Objective C runtime system. If necessary, install gcc now with
89\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
90
91AC_HEADER_STDC
92
Ovidiu Predescud972a4c2000-08-15 07:38:04 +000093AC_CHECK_HEADERS(sched.h)
94
H.J. Lu15794a92000-07-20 07:27:26 +000095# Determine CFLAGS for gthread.
Ben Ellistonbce1b481998-09-30 02:13:15 +000096
H.J. Lu15794a92000-07-20 07:27:26 +000097AC_CACHE_CHECK([for gthread cflags],objc_cv_gthread_flags,
Jeffrey A Law79014e61999-01-05 00:40:22 +000098[if test -f "$r"/gcc/Makefile
Ben Ellistonbce1b481998-09-30 02:13:15 +000099then
H.J. Lu15794a92000-07-20 07:27:26 +0000100 objc_cv_gthread_flags=`grep \^GTHREAD_FLAGS "$r"/gcc/Makefile | awk -F= '{ print $2 }'`
Ben Ellistonbce1b481998-09-30 02:13:15 +0000101else
102 AC_MSG_ERROR([not found])
103fi])
H.J. Lu15794a92000-07-20 07:27:26 +0000104GTHREAD_FLAGS=$objc_cv_gthread_flags
105AC_SUBST(GTHREAD_FLAGS)
Ben Ellistonbce1b481998-09-30 02:13:15 +0000106
107AC_ARG_ENABLE(objc-gc,
108[ --enable-objc-gc enable the use of Boehm's garbage collector with
109 the GNU Objective-C runtime.],
110if [[[ x$enable_objc_gc = xno ]]]; then
111 OBJC_BOEHM_GC=''
112else
Nicola Peroc161c992000-07-29 19:19:43 +0000113 OBJC_BOEHM_GC=libobjc_gc.la
Ben Ellistonbce1b481998-09-30 02:13:15 +0000114fi,
115OBJC_BOEHM_GC='')
116AC_SUBST(OBJC_BOEHM_GC)
117
118
119# We need multilib support, but only if configuring for the target.
120AC_OUTPUT(Makefile,
Franz Sirlb150efe2002-02-11 18:10:05 +0000121 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
Ben Ellistonbce1b481998-09-30 02:13:15 +0000122if test -n "$CONFIG_FILES"; then
123 if test -n "${with_target_subdir}"; then
124 # FIXME: We shouldn't need to set ac_file
125 ac_file=Makefile
Franz Sirlb150efe2002-02-11 18:10:05 +0000126 . ${toplevel_srcdir}/config-ml.in
Ben Ellistonbce1b481998-09-30 02:13:15 +0000127 fi
128fi],
129srcdir=${srcdir}
130host=${host}
131target=${target}
132with_target_subdir=${with_target_subdir}
133with_multisubdir=${with_multisubdir}
134ac_configure_args="--enable-multilib ${ac_configure_args}"
Franz Sirlb150efe2002-02-11 18:10:05 +0000135toplevel_srcdir=${toplevel_srcdir}
Ben Ellistonbce1b481998-09-30 02:13:15 +0000136CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
Ben Ellistonbce1b481998-09-30 02:13:15 +0000137)
138
Franz Sirlb150efe2002-02-11 18:10:05 +0000139
Ben Ellistonbce1b481998-09-30 02:13:15 +0000140dnl Local Variables:
141dnl comment-start: "dnl "
142dnl comment-end: ""
143dnl comment-start-skip: "\\bdnl\\b\\s *"
144dnl End: