zsh-workers
 help / color / mirror / code / Atom feed
* zsh-3.1.5-pws-4.tar.gz available
@ 1998-12-18 13:23 Peter Stephenson
  1998-12-18 17:18 ` PATCH: " Bart Schaefer
  1998-12-21 12:51 ` Andrej Borsenkow
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Stephenson @ 1998-12-18 13:23 UTC (permalink / raw)
  To: Zsh hackers list

The following files are now available:
http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.tar.gz
http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.tar.bz2
http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.doc.tar.gz
http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.doc.tar.bz2

These are the complete source package, and the zsh-3.1.5/Doc directory
with texi and info files and nroff manual pages created for those
without Yodl and Texinfo, in both gzip and bzip2 formats.  They have
the following sizes:

-rw-r--r--   1 pws   quadrics   793838 Dec 18 14:06 zsh-3.1.5-pws-4.tar.gz
-rw-r--r--   1 pws   quadrics   639687 Dec 18 14:06 zsh-3.1.5-pws-4.tar.bz2
-rw-r--r--   1 pws   quadrics   418719 Dec 18 14:06 zsh-3.1.5-pws-4.doc.tar.gz
-rw-r--r--   1 pws   quadrics   276596 Dec 18 14:06 zsh-3.1.5-pws-4.doc.tar.bz2

This has been tested with dynamic loading under AIX 3.2, Irix 6.2,
SunOS 5.6 and HPUX 10.20, and with static loading under AIX 3.2.
There is reportedly a problem with dynamic loading under Digital UNIX
4.0, and in one case when compiling with egcs under SunOS 5.
Otherwise it seems pretty stable (=> we haven't found the other bugs
yet).

The following patches have been applied since pws-3, which has
disappeared.  (Finally, I have also added links in
http://www.ifh.de/~pws/computing/ .)


Compilation fix for static linking, 4779

Phil's patch for wtmp in /var/log on Linux, which someone else sent
before (except that it needed to be applied to aczsh.m4 and propagated
from there), 4783

Phil's removal of now useless j in glob.c, 4784

Bart's collection in 4788:  put back some missing patches.

Param's patches from Bart in 4789, 4794, 4795: fix sethparam() and move
flags; make sure setsparam() and sethparam() are consistent with
existing parameters; allow assoc array assignment with
${(AA)=assoc::=key1 value1 key2 value2}

Return to not hashing PWD from Bart in 4791

Handle --program-suffix and --program-prefix (but not --target, so I
removed the comment) from Bart in 4792

Compilation with no HAVE_GETPWUID, 4801

INADDR_NONE in zftp, 4805

Sven's unloading modules, 4806, 4815, 4820, plus my AIX (and
DYNAMIC_NAME_CLASH_OK) fix, 4822, then Sven's 4830

Parameter's documentation changes by Bart, 4817

Network order fix for zftp from Sven, 4821

My patch (with Gene Cohler's suggestions) for dynamical loading under
HPUX 10, 4824, plus fixes, 4833, 4843

Bart's random assoc array fixes, 4826, 4836, plus Sven's 4831

Sven's ignored character fix, 4828

More Sven condition patches, 4837, 4842

Final (???) isident() fix from Sven, 4845

-- 
Peter Stephenson <pws@ibmth.df.unipi.it>       Tel: +39 050 844536
WWW:  http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy


^ permalink raw reply	[flat|nested] 3+ messages in thread

* PATCH: Re: zsh-3.1.5-pws-4.tar.gz available
  1998-12-18 13:23 zsh-3.1.5-pws-4.tar.gz available Peter Stephenson
@ 1998-12-18 17:18 ` Bart Schaefer
  1998-12-21 12:51 ` Andrej Borsenkow
  1 sibling, 0 replies; 3+ messages in thread
From: Bart Schaefer @ 1998-12-18 17:18 UTC (permalink / raw)
  To: Peter Stephenson, Zsh hackers list

On Dec 18,  2:23pm, Peter Stephenson wrote:
} Subject: zsh-3.1.5-pws-4.tar.gz available
}
} The following patches have been applied since pws-3, which has
} disappeared.

One fragment of my fix to sethparam() got missed somehow.

WARNING, THIS DIFF IS REVERSED!  The top part is the correct code.
Index: Src/params.c
===================================================================
*** params.c	1998/12/18 16:09:26	1.19
--- params.c	1998/12/18 16:56:33
***************
*** 1577,1583 ****
      } else {
  	if (!(v = getvalue(&s, 1)))
  	    createparam(t, PM_HASHED);
! 	else if (!(PM_TYPE(v->pm->flags) & PM_HASHED) &&
  		 !(v->pm->flags & PM_SPECIAL)) {
  	    unsetparam(t);
  	    createparam(t, PM_HASHED);
--- 1577,1583 ----
      } else {
  	if (!(v = getvalue(&s, 1)))
  	    createparam(t, PM_HASHED);
! 	else if (!(PM_TYPE(v->pm->flags) & (PM_ARRAY|PM_HASHED)) &&
  		 !(v->pm->flags & PM_SPECIAL)) {
  	    unsetparam(t);
  	    createparam(t, PM_HASHED);

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: zsh-3.1.5-pws-4.tar.gz available
  1998-12-18 13:23 zsh-3.1.5-pws-4.tar.gz available Peter Stephenson
  1998-12-18 17:18 ` PATCH: " Bart Schaefer
@ 1998-12-21 12:51 ` Andrej Borsenkow
  1 sibling, 0 replies; 3+ messages in thread
From: Andrej Borsenkow @ 1998-12-21 12:51 UTC (permalink / raw)
  To: Peter Stephenson, Zsh hackers list



> -----Original Message-----
> From: Peter Stephenson [mailto:pws@ibmth.df.unipi.it]
> Sent: Friday, December 18, 1998 4:23 PM
> To: Zsh hackers list
> Subject: zsh-3.1.5-pws-4.tar.gz available
>
>
> The following files are now available:
> http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.tar.gz
> http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.tar.bz2
> http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.doc.tar.gz
> http://www.ifh.de/~pws/computing/zsh-3.1.5-pws-4.doc.tar.bz2
>

I just grabbed one if them, and it untars in zsh-3.1.5. It clobbered
original zsh there :-) Better would be zsh-3.1.5-pws-4 IMHO.

/andrej


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~1998-12-21 13:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-12-18 13:23 zsh-3.1.5-pws-4.tar.gz available Peter Stephenson
1998-12-18 17:18 ` PATCH: " Bart Schaefer
1998-12-21 12:51 ` Andrej Borsenkow

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).