Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: AIX dependencies and AIX compile problem
- X-seq: zsh-workers 11032
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: Re: PATCH: AIX dependencies and AIX compile problem
- Date: Sun, 30 Apr 2000 18:43:29 +0000
- In-reply-to: <Pine.LNX.3.96.1000430184456.24933A-100000@xxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <Pine.LNX.3.96.1000430184456.24933A-100000@xxxxxxxxxxxxxxxxxxxx>
On Apr 30, 6:54pm, Oliver Kiddle wrote:
} Subject: PATCH: AIX dependencies and AIX compile problem
}
} There may be more to come because I haven't yet got a clean compile: I get
} an error message for lines 925 and 968 of init.c saying 'Operands must be
} pointers to compatible types'
It's just a signed/unsigned thing.
--- zsh-forge/current/Src/init.c Thu Apr 6 08:28:31 2000
+++ Src/init.c Sun Apr 30 11:40:26 2000
@@ -905,7 +905,7 @@
int oldshst, osubsh, oloops;
FILE *obshin;
char *old_scriptname = scriptname, *us;
- char *ocs;
+ unsigned char *ocs;
int ocsp;
if (!s ||
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author