Re: ssl/kssl.c fails on NetBSD

2005-06-15 Thread GOTOU Yuuzou
In message [EMAIL PROTECTED], `GOTOU Yuuzou [EMAIL PROTECTED]' wrote: This error could be avoided if we read at least one standard header file before setting _XOPEN_SOURCE macro. -#include stdio.h #include openssl/opensslconf.h #define _XOPEN_SOURCE 500 /* glibc2 needs this to declare

Re: ssl/kssl.c fails on NetBSD

2005-06-15 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Wed, 15 Jun 2005 05:37:15 +0900 (JST), GOTOU Yuuzou [EMAIL PROTECTED] said: gotoyuzo Hi, gotoyuzo gotoyuzo Compilation of ssl/kssl.c fails on NetBSD 3.99.5. gotoyuzo gotoyuzo gcc -I../crypto -I.. -I../include -DOPENSSL_THREADS -pthread -D_THREAD_SAFE

Re: windows ce port

2005-06-15 Thread Pablo J Royo
Have you looked at MatrixSSL? It is designed to provide SSL for devices and works on Windows CE and Symbian (among many other OSes too numerous to list). It is under a dual source license so if you can use a GPL or commercial license it will work for your project. Yes, I know it. But my

Re: ssl/kssl.c fails on NetBSD

2005-06-15 Thread GOTOU Yuuzou
In message [EMAIL PROTECTED], `Richard Levitte - VMS Whacker [EMAIL PROTECTED]' wrote: In message [EMAIL PROTECTED] on Wed, 15 Jun 2005 05:37:15 +0900 (JST), GOTOU Yuuzou [EMAIL PROTECTED] said: gotoyuzo Hi, gotoyuzo gotoyuzo Compilation of ssl/kssl.c fails on NetBSD 3.99.5. gotoyuzo

Re: crypt/des/dx86-out.s fails on NetBSD

2005-06-15 Thread Andy Polyakov
cyrpt/des/dx86-out.s makes some errors in build process. For now, I can only attach a summary of make report. Please let me know if you need more information. gcc -I.. -I../.. -I../../include -DOPENSSL_THREADS -pthread -D_THREAD_SAFE -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN

openssl-0.9.8-beta5 solaris64-sparcv9-cc make test fails

2005-06-15 Thread Jostein Tveit
Solaris /dev/random patch is installed. $ uname -a SunOS bid-dev22 5.8 Generic_117350-08 sun4u sparc SUNW,Sun-Fire-V240 $ cc -V cc: Sun C 5.7 2005/01/07 $ ./Configure solaris64-sparcv9-cc shared $ make test [...] Generate and certify a test certificate make a certificate request using 'req'

Re: crypt/des/dx86-out.s fails on NetBSD

2005-06-15 Thread GOTOU Yuuzou
Hi, In message [EMAIL PROTECTED], `Andy Polyakov [EMAIL PROTECTED]' wrote: Target: BSD-x86 Configured with: ... --target=i386--netbsdelf Apparently it fails to recognize your target as ELF. 1. Verify that you can build if you configure with './Configure BSD-x86-elf ...',

Re: crypt/des/dx86-out.s fails on NetBSD

2005-06-15 Thread Andy Polyakov
2. See ./config script line 663 and below and speculate why do you think it doesn't recognize your system as ELF? Maybe shared libraries reside in /shlib? Hmm, file(1) doesn't follow symlinks by default. How about to use -L option? % file /usr/lib/libc.so.12.129 /usr/lib/libc.so.12.129:

Re: crypt/des/dx86-out.s fails on NetBSD

2005-06-15 Thread GOTOU Yuuzou
In message [EMAIL PROTECTED], `Andy Polyakov [EMAIL PROTECTED]' wrote: 2. See ./config script line 663 and below and speculate why do you think it doesn't recognize your system as ELF? Maybe shared libraries reside in /shlib? Hmm, file(1) doesn't follow symlinks by default. How about

Re: Openssl 0.9.7g encrypt/decrypt incompatable with Openssl 0.9.6m

2005-06-15 Thread Dr. Stephen Henson
On Wed, Jun 15, 2005, Belliappa, Ashith Muddiana (STSD) wrote: Hi All, I am facing a problem while performing encryption and decryption using 0.9.7g. Here I am encrypting data using openssl 0.9.7g and decrypting using 0.9.6m., and vice versa. Basically, I find the incompatibility is

Re: ssl/kssl.c fails on NetBSD

2005-06-15 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Wed, 15 Jun 2005 18:38:27 +0900 (JST), GOTOU Yuuzou [EMAIL PROTECTED] said: gotoyuzo It may be an issue of NetBSD, but #undef _XOPEN_SOURCE gotoyuzo seems a little wrong too. Does it work if I remove the #undef _XOPEN_SOURCE? I had it there for paranoid reasons,

Re: ssl/kssl.c fails on NetBSD

2005-06-15 Thread GOTOU Yuuzou
In message [EMAIL PROTECTED], `Richard Levitte - VMS Whacker [EMAIL PROTECTED]' wrote: In message [EMAIL PROTECTED] on Wed, 15 Jun 2005 18:38:27 +0900 (JST), GOTOU Yuuzou [EMAIL PROTECTED] said: gotoyuzo It may be an issue of NetBSD, but #undef _XOPEN_SOURCE gotoyuzo seems a little wrong