mirror of git://gcc.gnu.org/git/gcc.git
aclocal.m4: Assume strncmp works in cross case.
2011-12-20 Tristan Gingold <gingold@adacore.com> * aclocal.m4: Assume strncmp works in cross case. * configure: Regenerate From-SVN: r182520
This commit is contained in:
parent
0f172beec4
commit
8c3db96e64
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-20 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* aclocal.m4: Assume strncmp works in cross case.
|
||||||
|
* configure: Regenerate
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -72,7 +72,7 @@ main ()
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
], ac_cv_func_strncmp_works=yes, ac_cv_func_strncmp_works=no,
|
], ac_cv_func_strncmp_works=yes, ac_cv_func_strncmp_works=no,
|
||||||
ac_cv_func_strncmp_works=no)
|
ac_cv_func_strncmp_works=yes)
|
||||||
rm -f core core.* *.core])
|
rm -f core core.* *.core])
|
||||||
if test $ac_cv_func_strncmp_works = no ; then
|
if test $ac_cv_func_strncmp_works = no ; then
|
||||||
AC_LIBOBJ([strncmp])
|
AC_LIBOBJ([strncmp])
|
||||||
|
|
|
@ -6824,7 +6824,7 @@ if test "${ac_cv_func_strncmp_works+set}" = set; then :
|
||||||
$as_echo_n "(cached) " >&6
|
$as_echo_n "(cached) " >&6
|
||||||
else
|
else
|
||||||
if test "$cross_compiling" = yes; then :
|
if test "$cross_compiling" = yes; then :
|
||||||
ac_cv_func_strncmp_works=no
|
ac_cv_func_strncmp_works=yes
|
||||||
else
|
else
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
Loading…
Reference in New Issue