Compile on AIX not working

2000-11-27 Thread Scott Davis

Sorry for the last long email.
I narrowed things down since.
I made the following change to make the compile work:
while (*value && (cnt < max)) {
/* Had to fix this:
doapr_outch(sbuffer, buffer, currlen, maxlen, *value++);*/
/* To this */
doapr_outch(sbuffer, buffer, currlen, maxlen, *value);
++value;
/* End Change */
++cnt;
}
-
Can someone confirm that this is okay?
The post decrement and pointer deference on the same line made my compiler
puke.
I hope I preserved the logic though...

__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



OpenSSL on AIX 4.3.3

2000-11-27 Thread Scott Davis

I followed the instructions and ran ./config and then /bin/make and during
the make I got this:

... (lots of successful compiles) ...
making all in crypto/buffer...
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
buffer.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
buf_err.c
ar r ../../libcrypto.a buffer.o buf_err.o
/bin/ranlib ../../libcrypto.a
Target "all" is up to date.
making all in crypto/bio...
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bio_lib.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bio_cb.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bio_err.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_mem.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_null.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_fd.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_file.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_sock.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bss_conn.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bf_null.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
bf_buff.c
cc -I.. -I../../include -O -DAIX -DB_ENDIAN -qmaxmem=16384 -c
b_print.c
cc: 1501-230 Internal compiler error; please contact your Service
Representative
make: 1254-004 The error code from the last command is 40.
(more errors before stopping)
---
What the hey?
Anyone got any ideas?

__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]