2004-02-10 11:44:14 +01:00
|
|
|
# Configure script for libada.
|
|
|
|
# Copyright 2003, 2004 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2004-03-02 15:35:09 +01:00
|
|
|
AC_INIT
|
2004-03-11 01:27:41 +01:00
|
|
|
AC_PREREQ([2.59])
|
2004-02-10 11:44:14 +01:00
|
|
|
|
2004-04-15 05:38:59 +02:00
|
|
|
AC_CONFIG_SRCDIR([Makefile.in])
|
|
|
|
|
|
|
|
# Command-line options.
|
2004-02-10 11:44:14 +01:00
|
|
|
# Very limited version of AC_MAINTAINER_MODE.
|
2004-04-15 05:38:59 +02:00
|
|
|
AC_ARG_ENABLE([maintainer-mode],
|
|
|
|
[AC_HELP_STRING([--enable-maintainer-mode],
|
2004-02-10 11:44:14 +01:00
|
|
|
[enable make rules and dependencies not useful (and
|
2004-04-15 05:38:59 +02:00
|
|
|
sometimes confusing) to the casual installer])],
|
2004-02-10 11:44:14 +01:00
|
|
|
[case ${enable_maintainer_mode} in
|
|
|
|
yes) MAINT='' ;;
|
|
|
|
no) MAINT='#' ;;
|
|
|
|
*) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
|
|
|
|
esac
|
|
|
|
maintainer_mode=${enableval}],
|
|
|
|
[MAINT='#'])
|
|
|
|
AC_SUBST([MAINT])dnl
|
|
|
|
|
2004-04-15 05:38:59 +02:00
|
|
|
AC_ARG_ENABLE([shared],
|
|
|
|
[AC_HELP_STRING([--disable-shared],
|
|
|
|
[don't provide a shared libgnat])],
|
|
|
|
[
|
|
|
|
case $enable_shared in
|
2004-02-10 11:44:14 +01:00
|
|
|
yes | no) ;;
|
|
|
|
*)
|
|
|
|
enable_shared=no
|
|
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
|
|
|
for pkg in $enableval; do
|
2004-04-15 05:38:59 +02:00
|
|
|
case $pkg in
|
|
|
|
ada | libada)
|
|
|
|
enable_shared=yes ;;
|
|
|
|
esac
|
2004-02-10 11:44:14 +01:00
|
|
|
done
|
|
|
|
IFS="$ac_save_ifs"
|
|
|
|
;;
|
2004-04-15 05:38:59 +02:00
|
|
|
esac
|
2004-02-10 11:44:14 +01:00
|
|
|
], [enable_shared=yes])
|
2004-04-15 05:38:59 +02:00
|
|
|
AC_SUBST([enable_shared])
|
|
|
|
|
|
|
|
# Start of actual configure tests
|
|
|
|
|
(top level)
Merged from libada-gnattools-branch:
2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
* gnattools: New directory.
* Makefile.def: Add gnattools as a module, depending on target-libada.
* Makefile.in: Regenerate.
* configure.in: Include gnattools in host_tools; disable it if ada
is disabled.
* configure: Regenerate.
(gcc)
* configure.ac: Rename cc_for_cross_gnattools to host_cc_for_libada.
* configure: Regenerate.
* libada-mk.in: Remove CC; rename
cc_for_cross_gnattools / cc_set_by_configure to host_cc_for_libada.
(gcc/ada)
Partial merge from libada-gnattools-branch:
2004-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Move gnattools{1,1re,2,3,4} and corresponding flags
into code in gnattools/Makefile.in. Remove direct dependencies on
stamp-tools by tools clauses.
2004-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
* config-lang.in: Add gnattools to $lang_dirs.
(libada)
2004-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Add stamp file for building libada, to avoid
duplicate builds every time all-gnattools is called.
2004-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Build gcc/ada/Makefile (by running gcc/ada/configure)
here.
2004-08-16 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.ac: Replace AC_CANONICAL_SYSTEM with _BUILD, _HOST,
_TARGET.
* configure: Regenerate.
2004-07-18 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.ac, Makefile.in: Remove gnattools-specific code
(see gnattools directory).
* Makefile.in: Remove dead rts-* targets.
* configure: Regenerate.
(gnattools)
2005-02-02 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Remove use of cc_set_by_configure; just use
plain old CC from the top level in this case.
2005-01-30 Nathanael Nerode <neroden@gcc.gnu.org>
Merge from mainline at tag libada-gnattools-merge-20050129:
* configure.ac: Changes propagated from gcc/ada/Makefile.in.
* Makefile.in: Changes relocated from gcc/ada/Makefile.in.
2004-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Reinstate stamp-gnatlib check.
2004-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Inline gnattools{1,1-re,2,3,4} targets from
gcc/ada/configure.ac into gnattools-native and gnattools-cross
targets, collecting flags as appropriate from here,
gcc/ada/Makefile.in, gcc/ada/configure.ac, etc. Attempt to retain
identical behavior.
* configure.ac: Add necessary configure bits from
gcc/ada/configure.ac.
* configure: Regenerate.
2004-08-16 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.ac: Replace AC_CANONICAL_SYSTEM with _BUILD, _HOST,
_TARGET. Replace _GCC_TOPLEV_NONCANONICAL_TARGET with
ACX_NONCANONICAL_TARGET, and replace now-redundant AC_SUBST.
* configure: Regenerate.
2004-07-18 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, configure.ac: Remove libada-specific targets and
variables.
* configure: Regenerate.
* New directory, cloned from libada.
From-SVN: r95594
2005-02-26 22:43:33 +01:00
|
|
|
AC_CANONICAL_BUILD
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AC_CANONICAL_TARGET
|
2004-04-15 05:38:59 +02:00
|
|
|
|
|
|
|
# Need to pass this down for now :-P
|
|
|
|
AC_PROG_LN_S
|
|
|
|
|
|
|
|
# Determine x_ada_cflags
|
|
|
|
case $host in
|
|
|
|
hppa*) x_ada_cflags=-mdisable-indexing ;;
|
|
|
|
*) x_ada_cflags= ;;
|
|
|
|
esac
|
|
|
|
AC_SUBST([x_ada_cflags])
|
|
|
|
|
|
|
|
# Determine what to build for 'gnatlib'
|
|
|
|
if test $build = $target \
|
|
|
|
&& test ${enable_shared} = yes ; then
|
|
|
|
# Note that build=target is almost certainly the wrong test; FIXME
|
|
|
|
default_gnatlib_target="gnatlib-shared"
|
|
|
|
else
|
2004-04-18 05:07:02 +02:00
|
|
|
default_gnatlib_target="gnatlib-plain"
|
2004-04-15 05:38:59 +02:00
|
|
|
fi
|
|
|
|
AC_SUBST([default_gnatlib_target])
|
2004-04-25 23:29:37 +02:00
|
|
|
|
2004-04-15 05:38:59 +02:00
|
|
|
# Output: create a Makefile.
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
2004-02-10 11:44:14 +01:00
|
|
|
|
|
|
|
AC_OUTPUT
|