]> git.ipfire.org Git - thirdparty/gcc.git/blame - libada/configure.ac
(top level)
[thirdparty/gcc.git] / libada / configure.ac
CommitLineData
b0b70d84
AC
1# Configure script for libada.
2# Copyright 2003, 2004 Free Software Foundation, Inc.
3#
4# This file is free software; you can redistribute it and/or modify it
5# 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, but
10# WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
215cae7b 18AC_INIT
8ab705be 19AC_PREREQ([2.59])
b0b70d84 20
80dab182
NN
21AC_CONFIG_SRCDIR([Makefile.in])
22
23# Command-line options.
b0b70d84 24# Very limited version of AC_MAINTAINER_MODE.
80dab182
NN
25AC_ARG_ENABLE([maintainer-mode],
26 [AC_HELP_STRING([--enable-maintainer-mode],
b0b70d84 27 [enable make rules and dependencies not useful (and
80dab182 28 sometimes confusing) to the casual installer])],
b0b70d84
AC
29 [case ${enable_maintainer_mode} in
30 yes) MAINT='' ;;
31 no) MAINT='#' ;;
32 *) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
33 esac
34 maintainer_mode=${enableval}],
35 [MAINT='#'])
36AC_SUBST([MAINT])dnl
37
80dab182
NN
38AC_ARG_ENABLE([shared],
39[AC_HELP_STRING([--disable-shared],
40 [don't provide a shared libgnat])],
41[
42case $enable_shared in
b0b70d84
AC
43 yes | no) ;;
44 *)
45 enable_shared=no
46 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
47 for pkg in $enableval; do
80dab182
NN
48 case $pkg in
49 ada | libada)
50 enable_shared=yes ;;
51 esac
b0b70d84
AC
52 done
53 IFS="$ac_save_ifs"
54 ;;
80dab182 55esac
b0b70d84 56], [enable_shared=yes])
80dab182
NN
57AC_SUBST([enable_shared])
58
59# Start of actual configure tests
60
5395b47b
NN
61AC_CANONICAL_BUILD
62AC_CANONICAL_HOST
63AC_CANONICAL_TARGET
80dab182
NN
64
65# Need to pass this down for now :-P
66AC_PROG_LN_S
67
68# Determine x_ada_cflags
69case $host in
70 hppa*) x_ada_cflags=-mdisable-indexing ;;
71 *) x_ada_cflags= ;;
72esac
73AC_SUBST([x_ada_cflags])
74
75# Determine what to build for 'gnatlib'
76if test $build = $target \
77 && test ${enable_shared} = yes ; then
78 # Note that build=target is almost certainly the wrong test; FIXME
79 default_gnatlib_target="gnatlib-shared"
80else
f206bf50 81 default_gnatlib_target="gnatlib-plain"
80dab182
NN
82fi
83AC_SUBST([default_gnatlib_target])
d743b2b6 84
80dab182
NN
85# Output: create a Makefile.
86AC_CONFIG_FILES([Makefile])
b0b70d84
AC
87
88AC_OUTPUT