2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / libjava / libltdl / configure.ac
blobc30a8459610a4671e3203717ceef4e1af7b44f6c
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
17 # 02111-1307  USA
20 ## ------------------------ ##
21 ## Autoconf initialisation. ##
22 ## ------------------------ ##
23 AC_PREREQ(2.59)
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
40   else
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?])
44   fi
48 ## ------------------------ ##
49 ## Automake Initialisation. ##
50 ## ------------------------ ##
51 AM_INIT_AUTOMAKE([1.9.1])
52 AM_MAINTAINER_MODE
55 ## ------------------ ##
56 ## C compiler checks. ##
57 ## ------------------ ##
58 AC_PROG_CC
59 AC_C_CONST
60 AC_C_INLINE
63 ## ----------------------- ##
64 ## Libtool initialisation. ##
65 ## ----------------------- ##
66 AC_LIBTOOL_WIN32_DLL
67 AC_PROG_LIBTOOL
68 AC_SUBST([LIBTOOL_DEPS])
70 AC_LIB_LTDL
73 ## -------- ##
74 ## Outputs. ##
75 ## -------- ##
76 AC_CONFIG_FILES([Makefile])
77 AC_OUTPUT