OSDN Git Service

* gjavah.c (print_class_decls): Fix thinko in arglist
[pf3gnuchains/gcc-fork.git] / libchill / configure.in
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 CC.
6 #
7 #GNU Fortran 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 Fortran 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 Fortran; 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_INIT(chillrt0.c)
23
24 if [ "${srcdir}" = "." ] ; then
25   if [ "${with_target_subdir}" != "." ] ; then
26     topsrcdir=${with_multisrctop}../..
27   else
28     topsrcdir=${with_multisrctop}..
29   fi
30 else
31   topsrcdir=${srcdir}/..
32 fi
33
34 dnl Checks for programs.
35 # For chill we'll set CC to point at the built gcc, but this will get it into
36 # the makefiles
37 AC_PROG_CC
38
39 test "$AR" || AR=ar
40 AC_SUBST(AR)
41 AC_PROG_MAKE_SET
42
43 dnl Checks for libraries.
44
45 dnl Checks for header files.
46 # Sanity check for the cross-compilation case:
47 AC_CHECK_HEADER(stdio.h,:,
48   [AC_MSG_ERROR([Can't find stdio.h.
49 You must have a usable C system for the target already installed, at least
50 including headers and, preferably, the library, before you can configure
51 the Chill runtime system.  If necessary, install gcc now with \`LANGUAGES=c',
52 then the target library, then build with \`LANGUAGES=chill'.])])
53
54 AC_HEADER_STDC
55
56 AC_MSG_CHECKING(for posix)
57 AC_CACHE_VAL(chill_cv_header_posix,
58   AC_EGREP_CPP(yes,
59   [#include <sys/types.h>
60 #include <unistd.h>
61 #ifdef _POSIX_VERSION
62   yes
63 #endif
64 ], 
65   chill_cv_header_posix=yes,
66   chill_cv_header_posix=no))
67 AC_MSG_RESULT($chill_cv_header_posix)
68
69 # We can rely on the GNU library being posix-ish.  I guess checking the 
70 # header isn't actually like checking the functions, though...
71 AC_MSG_CHECKING(for GNU library)
72 AC_CACHE_VAL(chill_cv_lib_gnu,
73   AC_EGREP_CPP(yes,
74     [#include <stdio.h>
75 #ifdef __GNU_LIBRARY__
76   yes
77 #endif
78 ], 
79   chill_cv_lib_gnu=yes, chill_cv_lib_gnu=no))
80 AC_MSG_RESULT($chill_cv_lib_gnu)
81
82 dnl Checks for library functions.
83 AC_TYPE_SIGNAL
84 # we'll get atexit by default
85 if test $ac_cv_header_stdc != yes; then
86 AC_CHECK_FUNC(atexit,
87   AC_DEFINE(onexit,atexit),dnl just in case
88   [AC_DEFINE(NO_ONEXIT)
89   AC_CHECK_FUNC(onexit,,
90     [AC_CHECK_FUNC(on_exit,
91      AC_DEFINE(onexit,on_exit),)])])
92 else true
93 fi
94
95 # We need multilib support, but only if configuring for the target.
96 AC_OUTPUT(Makefile,
97 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
98 if test -n "$CONFIG_FILES"; then
99   if test -n "${with_target_subdir}"; then
100     # FIXME: We shouldn't need to set ac_file
101     ac_file=Makefile
102     . ${topsrcdir}/config-ml.in
103   fi
104 fi],
105 srcdir=${srcdir}
106 host=${host}
107 target=${target}
108 with_target_subdir=${with_target_subdir}
109 with_multisubdir=${with_multisubdir}
110 ac_configure_args="--enable-multilib ${ac_configure_args}"
111 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
112 topsrcdir=${topsrcdir}
113 )
114
115
116
117 dnl Local Variables:
118 dnl comment-start: "dnl "
119 dnl comment-end: ""
120 dnl comment-start-skip: "\\bdnl\\b\\s *"
121 dnl End: