configure.ac: Add changequote around __LONG_DOUBLE_MATH_OPTIONAL test.

* configure.ac: Add changequote around __LONG_DOUBLE_MATH_OPTIONAL
	test.
	* configure: Rebuilt.

From-SVN: r118780
This commit is contained in:
Jakub Jelinek 2006-11-13 23:38:21 +01:00 committed by Jakub Jelinek
parent 597c25e65d
commit 65280f6ca6
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-11-13 Jakub Jelinek <jakub@redhat.com>
* configure.ac: Add changequote around __LONG_DOUBLE_MATH_OPTIONAL
test.
* configure: Rebuilt.
2006-11-13 Andrew Pinski <andrew_pinski@playstation.sony.com>
* config/rs6000/cell.md: New file.

3
gcc/configure vendored
View File

@ -18255,9 +18255,10 @@ else
else
glibc_header_dir=/usr/include
fi
grep '^ *#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
$glibc_header_dir/bits/wordsize.h > /dev/null 2>&1 \
&& gcc_cv_target_ldbl128=yes
fi
;;

View File

@ -3353,9 +3353,12 @@ case "$target" in
else
glibc_header_dir=/usr/include
fi
changequote(,)dnl
grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
$glibc_header_dir/bits/wordsize.h > /dev/null 2>&1 \
&& gcc_cv_target_ldbl128=yes])
&& gcc_cv_target_ldbl128=yes
changequote([,])dnl
])
;;
esac
if test x$gcc_cv_target_ldbl128 = xyes; then