1## Process this file with autoconf to create configure. -*- autoconf -*-
2# Copyright 2001  Free Software Foundation, Inc.
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17# 02110-1301  USA
18
19AC_PREREQ(2.50)
20
21
22## ------------------------ ##
23## Autoconf initialisation. ##
24## ------------------------ ##
25AC_INIT([pdemo], [0.1], [bug-libtool@gnu.org])
26AC_CONFIG_SRCDIR([longer_file_name_hello.c])
27
28
29## ------------------------ ##
30## Automake Initialisation. ##
31## ------------------------ ##
32AM_INIT_AUTOMAKE(hell,1.0)
33
34
35## ------------------ ##
36## C compiler checks. ##
37## ------------------ ##
38AC_PROG_CC
39AC_C_CONST
40
41
42## ----------------------- ##
43## Libtool initialisation. ##
44## ----------------------- ##
45AC_LIBTOOL_DLOPEN
46AM_PROG_LIBTOOL
47AC_SUBST([LIBTOOL_DEPS])
48
49if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
50  STATIC=-static
51else
52  STATIC=
53fi
54AC_SUBST([STATIC])
55
56AM_CONDITIONAL([BINARY_HELLDL],
57    [grep '^global_symbol_pipe=..*$' ./libtool >/dev/null])
58
59
60## ---------------------------- ##
61## C headers required by cdemo. ##
62## ---------------------------- ##
63AC_CHECK_HEADERS([string.h math.h])
64
65
66## ---------------------------- ##
67## Libraries required by cdemo. ##
68## ---------------------------- ##
69AC_CHECK_LIBM
70AC_SUBST([LIBM])
71
72
73## -------- ##
74## Outputs. ##
75## -------- ##
76AC_CONFIG_FILES([Makefile])
77AC_OUTPUT
78