This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

merged libiberty fix to 3.1



I also removed a duplicate "gcc 3.1 released" changelog entry.

2002-05-31  Roman Lechtchinsky  <rl@cs.tu-berlin.de>

	* configure.in: Fix typo in the code checking for sys_errlist.
	* configure: Regenerated.
  
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libiberty/configure.in,v
retrieving revision 1.46.2.1
diff -p -3 -r1.46.2.1 configure.in
*** configure.in	8 May 2002 04:26:02 -0000	1.46.2.1
--- configure.in	31 May 2002 19:35:24 -0000
*************** if test -z "${setobjs}"; then
*** 371,377 ****
    for v in $vars; do
      AC_MSG_CHECKING([for $v])
      AC_CACHE_VAL(libiberty_cv_var_$v,
!       [AC_TRY_LINK([int *p;], [extern int $v []; p = &$v;],
  		   [eval "libiberty_cv_var_$v=yes"],
  		   [eval "libiberty_cv_var_$v=no"])])
      if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
--- 371,377 ----
    for v in $vars; do
      AC_MSG_CHECKING([for $v])
      AC_CACHE_VAL(libiberty_cv_var_$v,
!       [AC_TRY_LINK([int *p;], [extern int $v []; p = $v;],
  		   [eval "libiberty_cv_var_$v=yes"],
  		   [eval "libiberty_cv_var_$v=no"])])
      if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]