Hi,

> snapshot of 3-9
> cc -I.. -I../../include -O -Wall   -c b_print.c -o b_print.o
> b_print.c:205: warning: redefinition of macro MAX
> /NextLibrary/Frameworks/System.framework/Headers/bsd/libc.p:0: warning:
> this is the location of the previous definition
> cc -I.. -I../../include -O -Wall   -c bss_bio.c -o bss_bio.o
> bss_bio.c:209: undefined type, found `ssize_t'
> bss_bio.c:247: undefined type, found `ssize_t'
> make[2]: *** [bss_bio.o] Error 1
> make[2]: Leaving directory `/root/temp/openssl-SNAP-20000309/crypto/bio'
> make[1]: *** [subdirs] Error 1
> make[1]: Leaving directory `/root/temp/openssl-SNAP-20000309/crypto'
> make: *** [all] Error 1

You need a "#define ssize_t int" in the file "e_os.h", something like this  
(search for "NeXT" in e_os.h):

#ifdef NeXT
#define pid_t int
#define ssize_t int
#endif

Bye,

   Juergen
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to