OSDN Git Service

* Make-lang.in (JAVA_SRCS): Added check-init.c.
[pf3gnuchains/gcc-fork.git] / libchill / configure.in
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).
4 #
5 #This file is part of GNU CC.
6 #
7 #GNU CHILL 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 CHILL 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 CHILL; 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
22 AC_PREREQ(2.13)
23 AC_INIT(chillrt0.c)
24
25 if test "${srcdir}" = "." ; then
26   if test "${with_target_subdir}" != "." ; then
27     topsrcdir=${with_multisrctop}../..
28   else
29     topsrcdir=${with_multisrctop}..
30   fi
31 else
32   topsrcdir=${srcdir}/..
33 fi
34 dnl This is needed for a multilibbed build in the source tree so
35 dnl that install-sh and config.sub get found.
36 AC_CONFIG_AUX_DIR($topsrcdir)
37
38 # We have to handle 3 cases -- native, cross and canadian cross -- and
39 # the extension returned from this macro needs to be treated as a possible
40 # scenario and not the only one.
41 AC_EXEEXT
42
43 # If the language specific compiler does not exist, but the "gcc" directory 
44 # does, we do not build anything. Note, $r is set by the top-level Makefile.
45 # Note that when we look for the compiler, we search both with and without
46 # extension to handle cross and canadian cross builds. 
47 compiler_name=cc1chill
48 rm -f skip-this-dir
49 AC_MSG_CHECKING(if compiler $compiler_name has been built)
50 AC_CACHE_VAL(chill_cv_compiler_exists,
51 [chill_cv_compiler_exists=yes
52 if test -n "$r"; then
53   if test -d "$r"/gcc; then
54     if test -f "$r"/gcc/$compiler_name \
55        || test -f "$r"/gcc/$compiler_name$EXEEXT; then
56       true
57     else
58       chill_cv_compiler_exists=no
59       echo "rm -f config.cache config.log multilib.out" > skip-this-dir
60     fi
61   fi
62 fi
63 ])
64 AC_MSG_RESULT($chill_cv_compiler_exists)
65 if test x$chill_cv_compiler_exists = xno
66 then
67   rm -f Makefile conftest* confdefs* core
68   exit 0
69 fi
70
71 dnl Checks for programs.
72 # For chill we'll set CC to point at the built gcc, but this will get it into
73 # the makefiles
74 AC_PROG_CC
75
76 test "$AR" || AR=ar
77 AC_SUBST(AR)
78 AC_PROG_MAKE_SET
79
80 dnl Checks for libraries.
81
82 dnl Checks for header files.
83 # Sanity check for the cross-compilation case:
84 AC_CHECK_HEADER(stdio.h,:,
85   [AC_MSG_ERROR([Can't find stdio.h.
86 You must have a usable C system for the target already installed, at least
87 including headers and, preferably, the library, before you can configure
88 the Chill runtime system.  If necessary, install gcc now with \`LANGUAGES=c',
89 then the target library, then build with \`LANGUAGES=chill'.])])
90
91 AC_HEADER_STDC
92
93 AC_MSG_CHECKING(for posix)
94 AC_CACHE_VAL(chill_cv_header_posix,
95   AC_EGREP_CPP(yes,
96   [#include <sys/types.h>
97 #include <unistd.h>
98 #ifdef _POSIX_VERSION
99   yes
100 #endif
101 ], 
102   chill_cv_header_posix=yes,
103   chill_cv_header_posix=no))
104 AC_MSG_RESULT($chill_cv_header_posix)
105
106 # We can rely on the GNU library being posix-ish.  I guess checking the 
107 # header isn't actually like checking the functions, though...
108 AC_MSG_CHECKING(for GNU library)
109 AC_CACHE_VAL(chill_cv_lib_gnu,
110   AC_EGREP_CPP(yes,
111     [#include <stdio.h>
112 #ifdef __GNU_LIBRARY__
113   yes
114 #endif
115 ], 
116   chill_cv_lib_gnu=yes, chill_cv_lib_gnu=no))
117 AC_MSG_RESULT($chill_cv_lib_gnu)
118
119 dnl Checks for library functions.
120 AC_TYPE_SIGNAL
121 # we'll get atexit by default
122 if test $ac_cv_header_stdc != yes; then
123 AC_CHECK_FUNC(atexit,
124   AC_DEFINE(onexit,atexit),dnl just in case
125   [AC_DEFINE(NO_ONEXIT)
126   AC_CHECK_FUNC(onexit,,
127     [AC_CHECK_FUNC(on_exit,
128      AC_DEFINE(onexit,on_exit),)])])
129 else true
130 fi
131
132 # We need multilib support, but only if configuring for the target.
133 AC_OUTPUT(Makefile,
134 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
135 if test -n "$CONFIG_FILES"; then
136   if test -n "${with_target_subdir}"; then
137     # FIXME: We shouldn't need to set ac_file
138     ac_file=Makefile
139     . ${topsrcdir}/config-ml.in
140   fi
141 fi],
142 srcdir=${srcdir}
143 host=${host}
144 target=${target}
145 with_target_subdir=${with_target_subdir}
146 with_multisubdir=${with_multisubdir}
147 ac_configure_args="--enable-multilib ${ac_configure_args}"
148 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
149 topsrcdir=${topsrcdir}
150 )
151
152
153
154 dnl Local Variables:
155 dnl comment-start: "dnl "
156 dnl comment-end: ""
157 dnl comment-start-skip: "\\bdnl\\b\\s *"
158 dnl End: