Problems compiling Citadel/UX

1999-08-16 Thread Michael Merten
Hi, I'm trying to compile Citadel/UX bbs software and have hit a snag. At one point I get the following error message and the compile stops (no errors or warnings up to this point): [snip] gcc -g -O2 -Wall -Wstrict-prototypes -I. -DHAVE_CONFIG_H -c base64.c base64.c:26: initializer element is

Re: Problems compiling Citadel/UX

1999-08-16 Thread Eric G . Miller
Sounds like the code in question is trying to use a variable to initialize another const variable. This is not supported under ANSI C, though I think gcc will allow it if the compiler flags are correct. I think the -Wall flag could be what stops it. Why don't you post the beginning of

Re: Problems compiling Citadel/UX

1999-08-16 Thread Michael Merten
On Sun, Aug 15, 1999 at 09:16:53PM -0700, Eric G . Miller wrote: Sounds like the code in question is trying to use a variable to initialize another const variable. This is not supported under ANSI C, though I think gcc will allow it if the compiler flags are correct. I think the -Wall

Re: Problems compiling Citadel/UX

1999-08-16 Thread Eric G . Miller
Well, that all looked hunky-dory, so I don't know what to tell you. -- Eric G. Miller Powered by the POTATO (http://www.debian.org)!

Re: Problems compiling Citadel/UX

1999-08-16 Thread Michael Merten
On Sun, Aug 15, 1999 at 10:09:31PM -0700, Eric G . Miller wrote: Well, that all looked hunky-dory, so I don't know what to tell you. Thanks for trying, anyway :) I found an email address where I can possibly get some help, so I'll wait and see what comes of that. Mike [Private mail welcome,

Re: Problems compiling Citadel/UX

1999-08-16 Thread Eric Gillespie, Jr.
On Sun, Aug 15, 1999 at 11:43:27PM -0500, Michael Merten [EMAIL PROTECTED] wrote: === /* Encode or decode file as MIME base64 (RFC 1341) by John Walker

Re: Problems compiling Citadel/UX

1999-08-16 Thread Michael Merten
On Mon, Aug 16, 1999 at 12:49:55AM -0500, Eric Gillespie, Jr. wrote: On Sun, Aug 15, 1999 at 11:43:27PM -0500, Michael Merten [EMAIL PROTECTED] wrote: static FILE *fi = stdin; /* Input file */ static FILE *fo = stdout; /* Output file */ The problem is in the previous