source: trunk/src/gcc/libf2c/configure.in@ 1688

Last change on this file since 1688 was 1392, checked in by bird, 22 years ago

This commit was generated by cvs2svn to compensate for changes in r1391,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 4.9 KB
RevLine 
[2]1# Process this file with autoconf to produce a configure script.
[1391]2# Copyright (C) 1995, 1997, 1998, 1999, 2002, 2003
3# Free Software Foundation, Inc.
[2]4# Contributed by Dave Love ([email protected]).
5#
6#This file is part of GNU Fortran.
7#
8#GNU Fortran is free software; you can redistribute it and/or modify
9#it under the terms of the GNU General Public License as published by
10#the Free Software Foundation; either version 2, or (at your option)
11#any later version.
12#
13#GNU Fortran is distributed in the hope that it will be useful,
14#but WITHOUT ANY WARRANTY; without even the implied warranty of
15#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16#GNU General Public License for more details.
17#
18#You should have received a copy of the GNU General Public License
19#along with GNU Fortran; see the file COPYING. If not, write to
20#the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21#02111-1307, USA.
22
23AC_PREREQ(2.13)
24AC_INIT(libF77/Version.c)
25
26# 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
32GLIBCPP_TOPREL_CONFIGURE
33
34AC_CANONICAL_SYSTEM
35target_alias=${target_alias-$target}
36AC_SUBST(target_alias)
37
38GLIBCPP_CONFIGURE(.)
39GLIBCPP_EXPORT_INSTALL_INFO
40
41# If the language specific compiler does not exist, but the "gcc" directory
42# does, we do not build anything. Note, $r is set by the top-level Makefile.
43# Note that when we look for the compiler, we search both with and without
44# extension to handle cross and canadian cross builds.
45compiler_name=f771
46rm -f skip-this-dir
47AC_MSG_CHECKING(if compiler $compiler_name has been built)
48AC_CACHE_VAL(g77_cv_compiler_exists,
49[g77_cv_compiler_exists=yes
50if test -n "$r"; then
51 if test -d "$r"/gcc; then
52 if test -f "$r"/gcc/$compiler_name \
53 || test -f "$r"/gcc/$compiler_name.exe; then
54 true
55 else
56 g77_cv_compiler_exists=no
57 echo "rm -f config.cache config.log multilib.out" > skip-this-dir
58 fi
59 fi
60fi
61])
62AC_MSG_RESULT($g77_cv_compiler_exists)
63if test x$g77_cv_compiler_exists = xno
64then
65 rm -f Makefile conftest* confdefs* core
66 exit 0
67fi
68
69dnl Checks for programs.
70
71AM_PROG_LIBTOOL
72
73dnl These should be inherited in the recursive make, but ensure they are
74dnl defined:
75test "$AR" || AR=ar
76AC_SUBST(AR)
77if test "$RANLIB"; then :
78 AC_SUBST(RANLIB)
79else
80 AC_PROG_RANLIB
81fi
82AC_PROG_INSTALL
83AC_PROG_MAKE_SET
84
85dnl Checks for header files.
86# Sanity check for the cross-compilation case:
87AC_CHECK_HEADER(stdio.h,:,
88 [AC_MSG_ERROR([Can't find stdio.h.
89You must have a usable C system for the target already installed, at least
90including headers and, preferably, the library, before you can configure
91the G77 runtime system. If necessary, install gcc now with \`LANGUAGES=c',
92then the target library, then build with \`LANGUAGES=f77'.])])
93