Imported Upstream version 2.4.2
[platform/upstream/libtool.git] / tests / f77demo / configure.ac
1 # Process this file with autoconf to create configure. -*- autoconf -*-
2 #
3 #   Copyright (C) 2001, 2003, 2005, 2007 Free Software Foundation, Inc.
4 #
5 #   This file is part of GNU Libtool.
6 #
7 # GNU Libtool is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation; either version 2 of
10 # the License, or (at your option) any later version.
11 #
12 # GNU Libtool 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 Libtool; see the file COPYING.  If not, a copy
19 # can be downloaded from  http://www.gnu.org/licenses/gpl.html,
20 # or obtained by writing to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 ####
23
24 AC_PREREQ(2.54)
25
26 ## ------------------------ ##
27 ## Autoconf initialisation. ##
28 ## ------------------------ ##
29 AC_INIT([f77demo], [1.0], [bug-libtool@gnu.org])
30 AC_CONFIG_HEADERS([config.h:config-h.in])
31 AC_CONFIG_SRCDIR([foof.f])
32 AC_CONFIG_AUX_DIR([../../libltdl/config])
33
34 AC_ARG_WITH([dist], AS_HELP_STRING([--with-dist],
35                                    [ignore errors not affecting `make dist']))
36
37 ## ------------------------ ##
38 ## Automake Initialisation. ##
39 ## ------------------------ ##
40 AM_INIT_AUTOMAKE
41
42
43 ## ------------------ ##
44 ## C compiler checks. ##
45 ## ------------------ ##
46 AC_PROG_CC
47
48 ## ------------------------ ##
49 ## Fortran compiler checks. ##
50 ## ------------------------ ##
51 AC_PROG_F77
52 dnl When configuring for `make dist' purposes, skip checks that may yield fatal
53 dnl errors when there is no working F77 compiler.
54 if test -z "$with_dist"; then
55   dnl Check the flags needed to link f77 programs with ld (i.e. cc)
56   AC_F77_LIBRARY_LDFLAGS
57   dnl Check for underscoring of external names
58   AC_F77_WRAPPERS
59 fi
60
61 ## ----------------------- ##
62 ## Libtool initialisation. ##
63 ## ----------------------- ##
64 LT_INIT
65 AC_SUBST([LIBTOOL_DEPS])
66
67 ## -------- ##
68 ## Outputs. ##
69 ## -------- ##
70 AC_CONFIG_FILES([Makefile])
71 AC_OUTPUT