zsh-workers
 help / color / mirror / code / Atom feed
* zsh-3.0.2-test2
@ 1996-12-11  3:03 Zoltan Hidvegi
  1996-12-11 12:23 ` zsh-3.0.2-test2 C. v. Stuckrad
  0 siblings, 1 reply; 6+ messages in thread
From: Zoltan Hidvegi @ 1996-12-11  3:03 UTC (permalink / raw)
  To: Zsh hacking and development

You can find a patch for zsh-3.0.2-test2 on

ftp://ftp.cs.elte.hu/pub/zsh/testing/zsh-3.0.2-test2.diff.gz

Date/size:

    38038 Dec 11 03:57 zsh-3.0.2-test2.diff.gz

md5 checksum:

6009e8c858215ab40558b822a5e45c3d  zsh-3.0.2-test2.diff.gz

It should be applied to the clean zsh-3.0.1 source.  The first hunk of the
FAQ will fail since the patch is generated by RCS.

It contains Peter's recent alias cleanup.  I looked at that code and it
seems to be OK.

Zoltan


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

* Re: zsh-3.0.2-test2
  1996-12-11  3:03 zsh-3.0.2-test2 Zoltan Hidvegi
@ 1996-12-11 12:23 ` C. v. Stuckrad
  1996-12-11 14:53   ` zsh-3.0.2-test2 Zefram
  0 siblings, 1 reply; 6+ messages in thread
From: C. v. Stuckrad @ 1996-12-11 12:23 UTC (permalink / raw)
  To: Zoltan Hidvegi; +Cc: Zsh hacking and development

On Wed, 11 Dec 1996, Zoltan Hidvegi wrote:

> ftp://ftp.cs.elte.hu/pub/zsh/testing/zsh-3.0.2-test2.diff.gz
Got this...

> It should be applied to the clean zsh-3.0.1 source.  The first hunk of the
> FAQ will fail since the patch is generated by RCS.
OK, it did exacly that...

So I let it configure...

Well, NOW something changed !

Up to *-test1 configure dids assume we HAVE FIFOS,
BUT NOW IT SAYS WE HAVE NO(!) FIFOS in the *-test2 !

Its on the same machine (sun-sparc-10) same system (Solaris 2.4)
in the same source-tree (I found it by doing:
1) unpacking *3.0.1.tar.gz
2) then patching
3) configure --enable-etcdir=...
4) DOING: cd ..; diff -b -r -c zsh*-test? | less

I tried to compare with a *3.0.2-test1 generated by unpacking, patching,
configuring, THEN APPLYING THE THREE PATCHES FROM THE LIST, then
reconfiguring.  I was intrested how much the tree patches of the list
did differ from the *-test2. AND THEN I WAS SUPRIZED !!!

Any ideas how our FIFOs got lost ?

Stucki

Christoph von Stuckrad       * *  | talk to  | <stucki@math.fu-berlin.de> \
Freie Universitaet Berlin    |/_* | nickname | ...!unido!fub!leibniz!stucki|
Fachbereich Mathematik, EDV  |\ * | 'stucki' | Tel:+49 30 838-7545{9|8}    |
Arnimallee 2-6/14195 Berlin  * *  |  on IRC  | Fax:+49 30 838-5913        /


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

* Re: zsh-3.0.2-test2
  1996-12-11 12:23 ` zsh-3.0.2-test2 C. v. Stuckrad
@ 1996-12-11 14:53   ` Zefram
  1996-12-11 21:58     ` zsh-3.0.2-test2 did it again (partly?) C. v. Stuckrad
  0 siblings, 1 reply; 6+ messages in thread
From: Zefram @ 1996-12-11 14:53 UTC (permalink / raw)
  To: stucki; +Cc: Z Shell workers mailing list

>Up to *-test1 configure dids assume we HAVE FIFOS,
>BUT NOW IT SAYS WE HAVE NO(!) FIFOS in the *-test2 !

The configure script didn't change between -test1 and -test2, and that
test works for me on Solaris 2.4 (and, indeed, all the other OSes I
have access to).  In any case, it could only generate false positives,
not false negatives.  There must be something different about the way
you are building -test2.

-zefram


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

* Re: zsh-3.0.2-test2 did it again (partly?)
  1996-12-11 14:53   ` zsh-3.0.2-test2 Zefram
@ 1996-12-11 21:58     ` C. v. Stuckrad
  1996-12-12  1:43       ` Zoltan Hidvegi
  1996-12-12  1:45       ` Zoltan Hidvegi
  0 siblings, 2 replies; 6+ messages in thread
From: C. v. Stuckrad @ 1996-12-11 21:58 UTC (permalink / raw)
  To: Zefram; +Cc: Z Shell workers mailing list


(I wrote)
> >Up to *-test1 configure dids assume we HAVE FIFOS,
> >BUT NOW IT SAYS WE HAVE NO(!) FIFOS in the *-test2 !

(Zoltan wrote)
> The configure script didn't change between -test1 and -test2, and that
> test works for me on Solaris 2.4 (and, indeed, all the other OSes I
> have access to).  In any case, it could only generate false positives,
> not false negatives.  There must be something different about the way
> you are building -test2.

Well, I did it again the followin way:
1) gtar xvzf zah-3.0.1.tar.gz
2) cd zsh-3.0.1
3) patch -N < ../diffs-test2
4) ./configure --enable-etcdir=/usr/local/etc
-- may be pathch -N is wrong ?
5) cd ..
6) diff -r -b -c zsh-*-test[12] | less

(I now did it in LINUX too, with the same result)

The diff shows, that the whole check for 'working named fifos' is
'eliminated' by the diffs.

*-test1/config.h contains.
/* Define to 1 if system has working FIFO's */
#define HAVE_FIFOS 1

*-test2/config.h contains.
/* Define to 1 if system has working FIFO's */
/* #undef HAVE_FIFOS */

(I tried reinserting the lines which were shown with '- ..'
in the diff, and then I get the 'old' result as in *-test1.)

May be the Version in *-test2 is correct ?
And HAVE_FIFOS is set somewhere else ?


Clueless... Stucki


Christoph von Stuckrad       * *  | talk to  | <stucki@math.fu-berlin.de> \
Freie Universitaet Berlin    |/_* | nickname | ...!unido!fub!leibniz!stucki|
Fachbereich Mathematik, EDV  |\ * | 'stucki' | Tel:+49 30 838-7545{9|8}    |
Arnimallee 2-6/14195 Berlin  * *  |  on IRC  | Fax:+49 30 838-5913        /



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

* Re: zsh-3.0.2-test2 did it again (partly?)
  1996-12-11 21:58     ` zsh-3.0.2-test2 did it again (partly?) C. v. Stuckrad
@ 1996-12-12  1:43       ` Zoltan Hidvegi
  1996-12-12  1:45       ` Zoltan Hidvegi
  1 sibling, 0 replies; 6+ messages in thread
From: Zoltan Hidvegi @ 1996-12-12  1:43 UTC (permalink / raw)
  To: stucki; +Cc: zsh-workers

> (Zoltan wrote)
> > The configure script didn't change between -test1 and -test2, and that
> > test works for me on Solaris 2.4 (and, indeed, all the other OSes I
> > have access to).  In any case, it could only generate false positives,

It was Zefram who wrote it.  He was right of course, since configure is
identical to the one in zsh-3.0.1 both in test1 and in test2.  What
happened is that I forgot to check in configure.  Here is the patch to
configure.  It is gzipped and uuencoded.

Zoltan

begin 644 configure.patch.gz
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
9(_[%\SBTIZC1`)N#D:S5_@>0](%(8%X```XK
`
end


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

* Re: zsh-3.0.2-test2 did it again (partly?)
  1996-12-11 21:58     ` zsh-3.0.2-test2 did it again (partly?) C. v. Stuckrad
  1996-12-12  1:43       ` Zoltan Hidvegi
@ 1996-12-12  1:45       ` Zoltan Hidvegi
  1 sibling, 0 replies; 6+ messages in thread
From: Zoltan Hidvegi @ 1996-12-12  1:45 UTC (permalink / raw)
  To: stucki; +Cc: zefram, zsh-workers

> (Zoltan wrote)
> > The configure script didn't change between -test1 and -test2, and that
> > test works for me on Solaris 2.4 (and, indeed, all the other OSes I

And it seems he was right, configure fails to find working fifo's on
Solaris 2.5.1 :-(.

Zoltan


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

end of thread, other threads:[~1996-12-12  3:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1996-12-11  3:03 zsh-3.0.2-test2 Zoltan Hidvegi
1996-12-11 12:23 ` zsh-3.0.2-test2 C. v. Stuckrad
1996-12-11 14:53   ` zsh-3.0.2-test2 Zefram
1996-12-11 21:58     ` zsh-3.0.2-test2 did it again (partly?) C. v. Stuckrad
1996-12-12  1:43       ` Zoltan Hidvegi
1996-12-12  1:45       ` Zoltan Hidvegi

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).