Skip to content

Commit

Permalink
* configure: Regenerate.
Browse files Browse the repository at this point in the history
config/
	* acx.m4 (Test for GNAT): Update comment and add quotes in final test.
  • Loading branch information
ebotcazou committed Dec 18, 2011
1 parent e0e9c73 commit 75a41b6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2011-12-18 Eric Botcazou <[email protected]>

* configure: Regenerate.

2011-12-15 Jeff Johnston <[email protected]>

* COPYING.LIBGLOSS: Add GPL with exception license.
Expand Down
4 changes: 4 additions & 0 deletions config/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2011-12-18 Eric Botcazou <[email protected]>

* acx.m4 (Test for GNAT): Update comment and add quotes in final test.

2011-11-02 Rainer Orth <[email protected]>

* mh-interix (LIBGCC2_DEBUG_CFLAGS): Remove.
Expand Down
8 changes: 4 additions & 4 deletions config/acx.m4
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ m4_define([AC_CHECK_HEADER],m4_defn([_AC_CHECK_HEADER_OLD]))
ac_c_preproc_warn_flag=yes])# AC_PROG_CPP_WERROR

# Test for GNAT.
# We require the gnatbind program, and a compiler driver that
# understands Ada. We use the user's CC setting, already found,
# and possibly add $1 to the command-line parameters.
# We require the gnatbind & gnatmake programs, as well as a compiler driver
# that understands Ada. We use the user's CC setting, already found, and
# possibly add $1 to the command-line parameters.
#
# Sets the shell variable have_gnat to yes or no as appropriate, and
# substitutes GNATBIND and GNATMAKE.
Expand Down Expand Up @@ -387,7 +387,7 @@ if test x"$errors" = x && test -f conftest.$ac_objext; then
fi
rm -f conftest.*])
if test x$GNATBIND != xno && test x$GNATMAKE != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
if test "x$GNATBIND" != xno && test "x$GNATMAKE" != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
have_gnat=yes
else
have_gnat=no
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -4977,7 +4977,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_cc_gcc_supports_ada" >&5
$as_echo "$acx_cv_cc_gcc_supports_ada" >&6; }
if test x$GNATBIND != xno && test x$GNATMAKE != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
if test "x$GNATBIND" != xno && test "x$GNATMAKE" != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
have_gnat=yes
else
have_gnat=no
Expand Down

0 comments on commit 75a41b6

Please sign in to comment.