configure.in: Remove check for whether ${ADAC} accepts -Wno-long-long.

* configure.in: Remove check for whether ${ADAC} accepts -Wno-long-long.
	* configure: Regenerate.

From-SVN: r73958
This commit is contained in:
Nathanael Nerode 2003-11-26 19:01:16 +00:00
parent f627fd15aa
commit f73ccc50a8
3 changed files with 239 additions and 274 deletions

View File

@ -1,3 +1,8 @@
2003-11-26 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.in: Remove check for whether ${ADAC} accepts -Wno-long-long.
* configure: Regenerate.
2003-11-26 Eric Botcazou <ebotcazou@libertysurf.fr>
Olivier Hainque <hainque@act-europe.fr>

489
gcc/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -284,29 +284,12 @@ fi
# See if GNAT has been installed
gcc_AC_PROG_GNAT
if test x$have_gnat != xno ; then
AC_CACHE_CHECK(whether ${ADAC} accepts -Wno-long-long,
ac_cv_prog_adac_no_long_long,
[cat >conftest.adb <<EOF
procedure conftest is begin null; end conftest;
EOF
if $ADAC -Wno-long-long -c conftest.adb 1>&5 2>&5 ; then
ac_cv_prog_adac_no_long_long=yes
else
ac_cv_prog_adac_no_long_long=no
fi
rm -f conftest*])
else
ac_cv_prog_adac_no_long_long=yes
fi
# ---------------------
# Warnings and checking
# ---------------------
strict1_warn=
if test $ac_cv_prog_cc_no_long_long = yes && \
test $ac_cv_prog_adac_no_long_long = yes ; then
if test $ac_cv_prog_cc_no_long_long = yes ; then
strict1_warn="-pedantic -Wno-long-long"
fi
AC_SUBST(strict1_warn)