Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Compile Error on DigitalUNIX
- X-seq: zsh-workers 2756
- From: Karl-Heinz Dewenter <khd@xxxxxxxxxxxxxxxx>
- To: zsh-workers-ml <zsh-workers@xxxxxxxxxxxxxxx>
- Subject: Compile Error on DigitalUNIX
- Date: Thu, 09 Jan 1997 11:52:28 +0100
- Organization: AEG Atlas
- Sender: khd@xxxxxxxxxxxx
Hi,
excuse me, I'm new on this list and the error is quite old:
I get
> zle_tricky.c: In function `maketildelist':
> zle_tricky.c:1553: warning: assignment from incompatible pointer type
> zle_tricky.c:1555: incompatible type for argument 3 of `yp_all'
> *** Exit 1
when compiling zsh on AlphaWorkstation with DigitalUNIX 3.2G.
The problem is quite easy to patch, perhaps anyone can patch the
original soure.
In zle_tricky.c I replaced the line
yp_all(domain, PASSWD_MAP, &cb);
by the following construct:
#ifdef __osf__
yp_all(domain, PASSWD_MAP, cb);
#else
yp_all(domain, PASSWD_MAP, &cb);
#endif
! zsh works on these systems very well. I like it!
--
Karl-Heinz Dewenter
AEG Atlas Schutz- und Leittechnik, Bremen, Germany
--- please answer to <khdewenter@xxxxxxxxxxxx> ---
Messages sorted by:
Reverse Date,
Date,
Thread,
Author