]> gcc.gnu.org Git - gcc.git/blame - libf2c/configure.in
re PR c++/9447 (using Base<T>::member does not work)
[gcc.git] / libf2c / configure.in
CommitLineData
81fea2b1 1# Process this file with autoconf to produce a configure script.
3343fdd2
AO
2# Copyright (C) 1995, 1997, 1998, 1999, 2002, 2003
3# Free Software Foundation, Inc.
81fea2b1
JL
4# Contributed by Dave Love (d.love@dl.ac.uk).
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
3508525e 23AC_PREREQ(2.13)
81fea2b1
JL
24AC_INIT(libF77/Version.c)
25
6706f116
AO
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
aebb8c22
DD
32GLIBCPP_TOPREL_CONFIGURE
33
ceb5e20f
GK
34AC_CANONICAL_SYSTEM
35target_alias=${target_alias-$target}
36AC_SUBST(target_alias)
37
38GLIBCPP_CONFIGURE(.)
39GLIBCPP_EXPORT_INSTALL_INFO
ab300375 40
f30bc2e7 41dnl Checks for programs.
7c6b0e92 42
dedc4a53 43AM_PROG_LIBTOOL
81fea2b1
JL
44
45dnl These should be inherited in the recursive make, but ensure they are
46dnl defined:
47test "$AR" || AR=ar
48AC_SUBST(AR)
49if test "$RANLIB"; then :
50 AC_SUBST(RANLIB)
81fea2b1 51else
81fea2b1
JL
52 AC_PROG_RANLIB
53fi
b53c05f5
DL
54AC_PROG_INSTALL
55AC_PROG_MAKE_SET
81fea2b1
JL
56
57dnl Checks for header files.
58# Sanity check for the cross-compilation case:
59AC_CHECK_HEADER(stdio.h,:,
60 [AC_MSG_ERROR([Can't find stdio.h.
61You must have a usable C system for the target already installed, at least
62including headers and, preferably, the library, before you can configure
63the G77 runtime system. If necessary, install gcc now with \`LANGUAGES=c',
64then the target library, then build with \`LANGUAGES=f77'.])])
65
3eb10f8a
CD
66dnl Checks for g77 integer types built into gcc's C front end.
67AC_MSG_CHECKING(for built-in g77 integer types)
68AC_CACHE_VAL(libf2c_cv_has_g77_builtin_types,
69[AC_TRY_COMPILE(,
70 [__g77_integer g77i;
71__g77_uinteger g77ui;
72__g77_longint g77l;
73__g77_ulongint g77ul;],
74 libf2c_cv_has_g77_builtin_types=yes,
75 libf2c_cv_has_g77_builtin_types=no)])
76AC_MSG_RESULT($libf2c_cv_has_g77_builtin_types)
77if test $libf2c_cv_has_g77_builtin_types = no; then
78 AC_MSG_ERROR([gcc doesn't define all of the built in types __g77_integer,
79__g77_uinteger, __g77_longint, and __g77_ulongint. You may not be using
80a new enough version of gcc, or your target may not have type sizes which
81accommodate those types.])
81fea2b1 82fi
81fea2b1 83
81fea2b1
JL
84# avoid confusion in case the `makefile's from the f2c distribution have
85# got put here
86test -f libF77/makefile && mv libF77/makefile libF77/makefile.ori
87test -f libI77/makefile && mv libI77/makefile libI77/makefile.ori
88test -f libU77/makefile && mv libU77/makefile libU77/makefile.ori
89
b53c05f5 90AC_CONFIG_SUBDIRS(libU77 libI77 libF77)
9eb3f9c9 91# Do Makefile first since g2c.h depends on it and shouldn't get an
e7294982
DL
92# earlier timestamp. Of course, it does when the multilib gunk below
93# edits Makefile, sigh; see additional touch below.
9eb3f9c9 94AC_OUTPUT(Makefile g2c.h:g2c.hin,
ab300375
RL
95 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
96if test -n "$CONFIG_FILES"; then
6706f116 97 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
ab300375
RL
98 if test -n "${with_target_subdir}"; then
99 # FIXME: We shouldn't need to set ac_file
100 ac_file=Makefile
ceb5e20f 101 . ${toplevel_srcdir}/config-ml.in
e7294982 102 touch g2c.h # to keep it more recent than Makefile
ab300375
RL
103 fi
104fi],
105srcdir=${srcdir}
106host=${host}
107target=${target}
108with_target_subdir=${with_target_subdir}
109with_multisubdir=${with_multisubdir}
110ac_configure_args="--enable-multilib ${ac_configure_args}"
ceb5e20f 111toplevel_srcdir=${toplevel_srcdir}
ab300375 112CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
3343fdd2 113ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
ab300375
RL
114)
115
81fea2b1
JL
116
117dnl Local Variables:
118dnl comment-start: "dnl "
119dnl comment-end: ""
120dnl comment-start-skip: "\\bdnl\\b\\s *"
121dnl End:
This page took 0.358841 seconds and 5 git commands to generate.