1 ## Process this file with autoconf to create configure. -*- autoconf -*-
2 # Copyright 2001 Free Software Foundation, Inc.
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA
20 ## ------------------------ ##
21 ## Autoconf initialisation. ##
22 ## ------------------------ ##
24 AC_INIT([libltdl], [1.2], [bug-libtool@gnu.org])
25 AC_CONFIG_SRCDIR([ltdl.c])
26 AC_CONFIG_FILES([config.h:config-h.in])
29 ## ------------------------------- ##
30 ## Libltdl specific configuration. ##
31 ## ------------------------------- ##
33 AC_CONFIG_AUX_DIR([.])
35 if test -z "$enable_ltdl_install$enable_ltdl_convenience"; then
36 if test -f ${srcdir}/ltmain.sh; then
37 # if libltdl is libtoolized, it is assumed to be stand-alone and
38 # installed unless the command line overrides it (tested above)
39 enable_ltdl_install=yes
41 AC_MSG_WARN([*** The top-level configure must select either])
42 AC_MSG_WARN([*** [A""C_LIBLTDL_INSTALLABLE] or [A""C_LIBLTDL_CONVENIENCE].])
43 AC_MSG_ERROR([*** Maybe you want to --enable-ltdl-install?])
48 ## ------------------------ ##
49 ## Automake Initialisation. ##
50 ## ------------------------ ##
51 AM_INIT_AUTOMAKE([1.9.1])
55 ## ------------------ ##
56 ## C compiler checks. ##
57 ## ------------------ ##
63 ## ----------------------- ##
64 ## Libtool initialisation. ##
65 ## ----------------------- ##
68 AC_SUBST([LIBTOOL_DEPS])
76 AC_CONFIG_FILES([Makefile])