]> gcc.gnu.org Git - gcc.git/blame - libf2c/configure.in
Daily bump.
[gcc.git] / libf2c / configure.in
CommitLineData
81fea2b1 1# Process this file with autoconf to produce a configure script.
3508525e 2# Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
81fea2b1
JL
3# Contributed by Dave Love (d.love@dl.ac.uk).
4#
5#This file is part of GNU Fortran.
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
3508525e 22AC_PREREQ(2.13)
81fea2b1
JL
23AC_INIT(libF77/Version.c)
24
ab300375
RL
25if test "${srcdir}" = "." ; then
26 if test "${with_target_subdir}" != "." ; then
27 topsrcdir=${with_multisrctop}../..
28 else
29 topsrcdir=${with_multisrctop}..
30 fi
31else
32 topsrcdir=${srcdir}/..
33fi
495e6ebb
DL
34dnl This is needed for a multilibbed build in the source tree so
35dnl that install-sh and config.sub get found.
36AC_CONFIG_AUX_DIR($topsrcdir)
ab300375 37
3508525e
MK
38# If the language specific compiler does not exist, but the "gcc" directory
39# does, we do not build anything. Note, $r is set by the top-level Makefile.
40# Note that when we look for the compiler, we search both with and without
41# extension to handle cross and canadian cross builds.
71205e0b
MH
42compiler_name=f771
43rm -f skip-this-dir
44AC_MSG_CHECKING(if compiler $compiler_name has been built)
d76e5e59
DL
45AC_CACHE_VAL(g77_cv_compiler_exists,
46[g77_cv_compiler_exists=yes
3508525e
MK
47if test -n "$r"; then
48 if test -d "$r"/gcc; then
49 if test -f "$r"/gcc/$compiler_name \
6de94858 50 || test -f "$r"/gcc/$compiler_name.exe; then
3508525e
MK
51 true
52 else
d76e5e59 53 g77_cv_compiler_exists=no
3508525e
MK
54 echo "rm -f config.cache config.log multilib.out" > skip-this-dir
55 fi
56 fi
57fi
58])
d76e5e59
DL
59AC_MSG_RESULT($g77_cv_compiler_exists)
60if test x$g77_cv_compiler_exists = xno
71205e0b 61then
3508525e
MK
62 rm -f Makefile conftest* confdefs* core
63 exit 0
71205e0b
MH
64fi
65
f30bc2e7
CB
66dnl Checks for programs.
67# For g77 we'll set CC to point at the built gcc, but this will get it into
68# the makefiles
69AC_PROG_CC
81fea2b1
JL
70
71dnl These should be inherited in the recursive make, but ensure they are
72dnl defined:
73test "$AR" || AR=ar
74AC_SUBST(AR)
75if test "$RANLIB"; then :
76 AC_SUBST(RANLIB)
81fea2b1 77else
81fea2b1
JL
78 AC_PROG_RANLIB
79fi
b53c05f5
DL
80AC_PROG_INSTALL
81AC_PROG_MAKE_SET
81fea2b1
JL
82
83dnl Checks for header files.
84# Sanity check for the cross-compilation case:
85AC_CHECK_HEADER(stdio.h,:,
86 [AC_MSG_ERROR([Can't find stdio.h.
87You must have a usable C system for the target already installed, at least
88including headers and, preferably, the library, before you can configure
89the G77 runtime system. If necessary, install gcc now with \`LANGUAGES=c',
90then the target library, then build with \`LANGUAGES=f77'.])])
91
81fea2b1 92# We have to firkle with the info in hconfig.h to figure out suitable types
4ed35cdc
CB
93# (via com.h). proj.h and com.h are in gcc/f/, config.h which they need
94# is in gcc/ and the config files are in gcc/config/.
81fea2b1 95AC_MSG_CHECKING(f2c integer type)
d76e5e59 96# Set this back later below!
81fea2b1 97late_ac_cpp=$ac_cpp
d76e5e59 98late_cflags=$CFLAGS
8d0823e2 99extra_includes="-I$topsrcdir/gcc/f -I$topsrcdir/gcc -I$topsrcdir/include -I$topsrcdir/gcc/config -I$r/gcc"
d76e5e59
DL
100ac_cpp="$late_ac_cpp -DIN_GCC -DHAVE_CONFIG_H $extra_includes"
101
102# The AC_EGREP_CPPs below have been known to fail when the header
103# path is wrong after things have been moved about; the cpp error status
104# counts for nothing. First check that there aren't any errors from
105# the headers.
106CFLAGS="$CFLAGS -DHAVE_CONFIG_H -DIN_GCC $extra_includes"
107AC_TRY_COMPILE([#include "proj.h"
108#define FFECOM_DETERMINE_TYPES 1
109#include "com.h"],,,
110AC_MSG_ERROR([Can't run check for integer sizes -- see config.log]))
111CFLAGS=$late_cflags
112
81fea2b1 113AC_CACHE_VAL(g77_cv_sys_f2cinteger,
8746c235 114echo "configure:__oline__: using $ac_cpp" >&AC_FD_CC
81fea2b1
JL
115AC_EGREP_CPP(F2C_INTEGER=long int,
116[#include "proj.h"
117#define FFECOM_DETERMINE_TYPES 1
118#include "com.h"
119#if FFECOM_f2cINTEGER == FFECOM_f2ccodeLONG
120F2C_INTEGER=long int
121#elif FFECOM_f2cINTEGER == FFECOM_f2ccodeINT
122F2C_INTEGER=int
123#else
124# error "Cannot find a suitable type for F2C_INTEGER"
125#endif
126],
127 g77_cv_sys_f2cinteger="long int",)
128if test "$g77_cv_sys_f2cinteger" = ""; then
8746c235 129echo "configure:__oline__: using $ac_cpp" >&AC_FD_CC
81fea2b1
JL
130 AC_EGREP_CPP(F2C_INTEGER=int,
131[#include "proj.h"
132#define FFECOM_DETERMINE_TYPES 1
133#include "com.h"
134#if FFECOM_f2cINTEGER == FFECOM_f2ccodeLONG
135F2C_INTEGER=long int
136#elif FFECOM_f2cINTEGER == FFECOM_f2ccodeINT
137F2C_INTEGER=int
138#else
139# error "Cannot find a suitable type for F2C_INTEGER"
140#endif
141],
142 g77_cv_sys_f2cinteger=int,)
143fi
144if test "$g77_cv_sys_f2cinteger" = ""; then
145 AC_MSG_RESULT("")
146 AC_MSG_ERROR([Can't determine type for f2c integer; config.log may help.])
147fi
148)
149AC_MSG_RESULT($g77_cv_sys_f2cinteger)
150F2C_INTEGER=$g77_cv_sys_f2cinteger
81fea2b1
JL
151AC_SUBST(F2C_INTEGER)
152
153AC_MSG_CHECKING(f2c long int type)
81fea2b1 154AC_CACHE_VAL(g77_cv_sys_f2clongint,
8746c235 155echo "configure:__oline__: using $ac_cpp" >&AC_FD_CC
81fea2b1
JL
156AC_EGREP_CPP(F2C_LONGINT=long int,
157[#include "proj.h"
158#define FFECOM_DETERMINE_TYPES 1
159#include "com.h"
160#if FFECOM_f2cLONGINT == FFECOM_f2ccodeLONG
161F2C_LONGINT=long int
162#elif FFECOM_f2cLONGINT == FFECOM_f2ccodeLONGLONG
163F2C_LONGINT=long long int
164#else
165# error "Cannot find a suitable type for F2C_LONGINT"
166#endif
167],
168 g77_cv_sys_f2clongint="long int",)
d76e5e59 169
81fea2b1 170if test "$g77_cv_sys_f2clongint" = ""; then
8746c235 171echo "configure:__oline__: using $ac_cpp" >&AC_FD_CC
81fea2b1
JL
172 AC_EGREP_CPP(F2C_LONGINT=long long int,
173[#include "proj.h"
174#define FFECOM_DETERMINE_TYPES 1
175#include "com.h"
176#if FFECOM_f2cLONGINT == FFECOM_f2ccodeLONG
177F2C_LONGINT=long int
178#elif FFECOM_f2cLONGINT == FFECOM_f2ccodeLONGLONG
179F2C_LONGINT=long long int
180#else
181# error "Cannot find a suitable type for F2C_LONGINT"
182#endif
183],
184 g77_cv_sys_f2clongint="long long int",)
185fi
186if test "$g77_cv_sys_f2clongint" = ""; then
187 AC_MSG_RESULT("")
188 AC_MSG_ERROR([Can't determine type for f2c long int; config.log may help.])
189fi
190)
191AC_MSG_RESULT($g77_cv_sys_f2clongint)
192F2C_LONGINT=$g77_cv_sys_f2clongint
81fea2b1 193AC_SUBST(F2C_LONGINT)
d76e5e59 194ac_cpp=$late_ac_cpp
81fea2b1 195
81fea2b1
JL
196# avoid confusion in case the `makefile's from the f2c distribution have
197# got put here
198test -f libF77/makefile && mv libF77/makefile libF77/makefile.ori
199test -f libI77/makefile && mv libI77/makefile libI77/makefile.ori
200test -f libU77/makefile && mv libU77/makefile libU77/makefile.ori
201
f1943b77
MH
202# Get the version trigger filename from the toplevel
203if [[ "${with_gcc_version_trigger+set}" = set ]]; then
204 gcc_version_trigger=$with_gcc_version_trigger
205 gcc_version=`sed -e 's/.*\"\([[^ \"]]*\)[[ \"]].*/\1/' < ${gcc_version_trigger}`
6174dcf3 206else
f1943b77
MH
207 gcc_version_trigger=
208 gcc_version=UNKNOWN
6174dcf3 209fi
f1943b77 210
6174dcf3 211AC_SUBST(gcc_version)
f1943b77 212AC_SUBST(gcc_version_trigger)
7982430b 213AC_CANONICAL_SYSTEM
487eb4b8 214AC_SUBST(target_alias)
b53c05f5 215AC_CONFIG_SUBDIRS(libU77 libI77 libF77)
9eb3f9c9 216# Do Makefile first since g2c.h depends on it and shouldn't get an
e7294982
DL
217# earlier timestamp. Of course, it does when the multilib gunk below
218# edits Makefile, sigh; see additional touch below.
9eb3f9c9 219AC_OUTPUT(Makefile g2c.h:g2c.hin,
ab300375
RL
220 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
221if test -n "$CONFIG_FILES"; then
222 if test -n "${with_target_subdir}"; then
223 # FIXME: We shouldn't need to set ac_file
224 ac_file=Makefile
225 . ${topsrcdir}/config-ml.in
e7294982 226 touch g2c.h # to keep it more recent than Makefile
ab300375
RL
227 fi
228fi],
229srcdir=${srcdir}
230host=${host}
231target=${target}
232with_target_subdir=${with_target_subdir}
233with_multisubdir=${with_multisubdir}
234ac_configure_args="--enable-multilib ${ac_configure_args}"
235CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
236topsrcdir=${topsrcdir}
237)
238
81fea2b1
JL
239
240dnl Local Variables:
241dnl comment-start: "dnl "
242dnl comment-end: ""
243dnl comment-start-skip: "\\bdnl\\b\\s *"
244dnl End:
This page took 0.153478 seconds and 5 git commands to generate.