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]

Update to Netlib version of 1999-06-18


Committed to mainline, after undoing a bit of Wednesday's patch (which
I forgot to email to this list).

        tq vm, (burley)


egcs/gcc/f/ChangeLog:
Fri Jun 18 11:26:50 1999  Craig Burley  <craig@jcb-sc.com>

	* news.texi: New heading for development version.
	Doc upgrade to netlib libf2c as of today.

*** g77-e/gcc/f/news.texi.~1~	Wed Jun 16 12:00:22 1999
--- g77-e/gcc/f/news.texi	Fri Jun 18 11:26:47 1999
***************
*** 10,14 ****
  @set copyrights-news 1995-1999
  
! @set last-update-news 1999-06-16
  
  @include root.texi
--- 10,14 ----
  @set copyrights-news 1995-1999
  
! @set last-update-news 1999-06-18
  
  @include root.texi
*************** is available at
*** 151,154 ****
--- 151,162 ----
  
  The following information was last updated on @value{last-update-news}:
+ 
+ @heading In development:
+ @itemize @bullet
+ @ifclear USERVISONLY
+ @item
+ Upgrade to @code{libf2c} as of 1999-06-18.
+ @end ifclear
+ @end itemize
  
  @heading In 0.5.25, @code{GCC} 2.95 (@code{EGCS} 1.2) versus @code{EGCS} 1.1.2:

egcs/libf2c/ChangeLog:
Fri Jun 18 11:22:21 1999  Craig Burley  <craig@jcb-sc.com>

	Update to Netlib version of 1999-05-10:
	* changes.netlib, libI77/Version.c, libI77/backspace.c
	readme.netlib: See changes.netlib for info.

*** g77-e/libf2c/changes.netlib.~1~	Mon May 10 10:40:49 1999
--- g77-e/libf2c/changes.netlib	Fri Jun 18 11:23:39 1999
*************** libf2c; two new casts in libf2c/open.c t
*** 3015,3016 ****
--- 3015,3021 ----
  and one more tweak (libf2c/c_log.c) for pathological equivalences.
    Minor update to "fc" script: new -L flag and comment correction.
+ 
+ Fri Jun 18 02:33:08 EDT 1999
+   libf2c.zip: rename backspace.c backspac.c, and fix a glitch in it
+ -- b->ufd may change in t_runc().  (For now, it's still backspace.c
+ in the libi77 bundle.)
*** g77-e/libf2c/libI77/Version.c.~1~	Wed Jun 16 12:00:43 1999
--- g77-e/libf2c/libI77/Version.c	Fri Jun 18 11:20:44 1999
***************
*** 1,3 ****
! static char junk[] = "\n@(#) LIBI77 VERSION pjw,dmg-mods 19990503\n";
  
  /*
--- 1,3 ----
! static char junk[] = "\n@(#) LIBI77 VERSION pjw,dmg-mods 19990618\n";
  
  /*
*************** wrtfmt.c:
*** 302,305 ****
--- 302,306 ----
  		 by formats Inn or Lnn with nn > 83. */
  /* 3 May 1999:	open.c: insert two casts for machines with 64-bit longs. */
+ /* 18 June 1999: backspace.c: allow for b->ufd changing in t_runc */
  
  
*** g77-e/libf2c/libI77/backspace.c.~1~	Fri Jun 18 11:14:46 1999
--- g77-e/libf2c/libI77/backspace.c	Fri Jun 18 11:19:55 1999
*************** integer f_back(alist *a)
*** 18,22 ****
  		err(a->aerr,101,"backspace");
  	if(b->useek==0) err(a->aerr,106,"backspace");
! 	if((f = b->ufd) == NULL) {
  		fk_open(1, 1, a->aunit);
  		return(0);
--- 18,22 ----
  		err(a->aerr,101,"backspace");
  	if(b->useek==0) err(a->aerr,106,"backspace");
! 	if(b->ufd == NULL) {
  		fk_open(1, 1, a->aunit);
  		return(0);
*************** integer f_back(alist *a)
*** 27,34 ****
  	}
  	if(b->uwrt) {
! 		(void) t_runc(a);
  		if (f__nowreading(b))
  			err(a->aerr,errno,"backspace");
  		}
  	if(b->url>0)
  	{
--- 27,35 ----
  	}
  	if(b->uwrt) {
! 		t_runc(a);
  		if (f__nowreading(b))
  			err(a->aerr,errno,"backspace");
  		}
+ 	f = b->ufd;	/* may have changed in t_runc() */
  	if(b->url>0)
  	{
*** g77-e/libf2c/readme.netlib.~1~	Mon May 10 10:40:50 1999
--- g77-e/libf2c/readme.netlib	Fri Jun 18 11:23:39 1999
*************** and one more tweak (libf2c/c_log.c) for 
*** 712,717 ****
  
  Tue May  4 10:06:26 EDT 1999
!    libf77, libf2c.zip: forgot to copy yesterday's latest updates to
  netlib.
  
  Current timestamps of files in "all from f2c/src", sorted by time,
--- 712,722 ----
  
  Tue May  4 10:06:26 EDT 1999
!   libf77, libf2c.zip: forgot to copy yesterday's latest updates to
  netlib.
+ 
+ Fri Jun 18 02:33:08 EDT 1999
+   libf2c.zip: rename backspace.c backspac.c, and fix a glitch in it
+ -- b->ufd may change in t_runc().  (For now, it's still backspace.c
+ in the libi77 bundle.)
  
  Current timestamps of files in "all from f2c/src", sorted by time,


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