diff options
author | DJ Delorie <dj@redhat.com> | 2004-02-10 17:57:02 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2004-02-10 17:57:02 +0000 |
commit | a2592b1b53ce511170e80e1e5a08d1594b87b842 (patch) | |
tree | a0c537558dd43bb6828a0ef2742c9103699c2d17 /configure.in | |
parent | 4ff2cc4dfbf4f37d2922491e0e4f3d0e0dad5199 (diff) | |
download | gdb-a2592b1b53ce511170e80e1e5a08d1594b87b842.zip gdb-a2592b1b53ce511170e80e1e5a08d1594b87b842.tar.gz gdb-a2592b1b53ce511170e80e1e5a08d1594b87b842.tar.bz2 |
2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
Nathanael Nerode <neroden@gcc.gnu.org>
PR ada/6637, PR ada/5911
Merge with libada-branch:
* configure.in, Makefile.tpl, Makefile.def: Add target-libada,
with appropriate dependencies. Add --enable-libada configure switch.
* configure, Makefile.in: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in index eb374a4..5657a2d 100644 --- a/configure.in +++ b/configure.in @@ -151,7 +151,8 @@ target_libraries="target-libiberty \ target-libstdc++-v3 \ target-libf2c \ ${libgcj} \ - target-libobjc" + target-libobjc \ + target-libada" # these tools are built using the target libraries, and are intended to # run only in the target environment @@ -306,6 +307,14 @@ case "${host}" in ;; esac +AC_ARG_ENABLE(libada, +[ --enable-libada Builds libada directory], +ENABLE_LIBADA=$enableval, +ENABLE_LIBADA=yes) +if test "${ENABLE_LIBADA}" != "yes" ; then + noconfigdirs="$noconfigdirs target-libada" +fi + # Save it here so that, even in case of --enable-libgcj, if the Java # front-end isn't enabled, we still get libgcj disabled. libgcj_saved=$libgcj |