Commit 9f3dbd92 by Roman Lechtchinsky Committed by DJ Delorie

configure.in: Fix typo in the code checking for sys_errlist.

* configure.in: Fix typo in the code checking for sys_errlist.
* configure: Regenerated.

From-SVN: r53747
parent 19f71cd7
2002-05-22 Roman Lechtchinsky <rl@cs.tu-berlin.de>
* configure.in: Fix typo in the code checking for sys_errlist.
* configure: Regenerated.
2002-05-13 Andreas Schwab <schwab@suse.de> 2002-05-13 Andreas Schwab <schwab@suse.de>
* config.table: Use mh-x86pic also for x86-64. * config.table: Use mh-x86pic also for x86-64.
......
...@@ -2860,7 +2860,7 @@ else ...@@ -2860,7 +2860,7 @@ else
#include "confdefs.h" #include "confdefs.h"
int *p; int *p;
int main() { int main() {
extern int $v []; p = &$v; extern int $v []; p = $v;
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
......
...@@ -401,7 +401,7 @@ if test -z "${setobjs}"; then ...@@ -401,7 +401,7 @@ if test -z "${setobjs}"; then
for v in $vars; do for v in $vars; do
AC_MSG_CHECKING([for $v]) AC_MSG_CHECKING([for $v])
AC_CACHE_VAL(libiberty_cv_var_$v, AC_CACHE_VAL(libiberty_cv_var_$v,
[AC_TRY_LINK([int *p;], [extern int $v []; p = &$v;], [AC_TRY_LINK([int *p;], [extern int $v []; p = $v;],
[eval "libiberty_cv_var_$v=yes"], [eval "libiberty_cv_var_$v=yes"],
[eval "libiberty_cv_var_$v=no"])]) [eval "libiberty_cv_var_$v=no"])])
if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment