Re: Build of 0.9.8e fails in shared debug-linux-elf

2007-05-20 Thread Andy Polyakov
I downloaded the new 0.9.8e and compiled it on various platforms. AIX, HP-UX, Solaris and Windows were ok (debug release), but it failed on (shared) debug-linux-elf in crypto/engine/eng_padlock.c. gcc -I.. -I../.. -I../../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN

Re: [openssl.org #1521] bug report

2007-05-20 Thread Andy Polyakov via RT
Title: Failed to link static openssl libraries (or non-PIC x86_64cpuid.s) OS: FC4 HARDWARE: AMD x86 64bit OPENSSL VERSION: 0.9.8e OPTIONS: CFLAGS=-fPIC -O2 ./config no-dso no-shared no-threads no-zlib -fPIC -O2 --prefix=/home/dmitri/php/install Details: It worked just fine with all

Re: [openssl.org #1515] Error in make test on Solaris 5.10 - OpenSSL 0.9.8e

2007-05-20 Thread Andy Polyakov via RT
I am experiencing an issue when run make test during Open SSL 0.9.8e installation on Sun Solaris 5.10. Below is the test report and attached the complete test log. Can you please help me with this? Testing cipher AES-128-ECB(encrypt) Key 00 01 02 03 04 05 06 07 08 09 0a 0b 0c

Re: [openssl.org #1514] is openssl supported on scratchbox?

2007-05-20 Thread Andy Polyakov via RT
i'm building openssl-0.9.8d on a KUBUNTO OS and under scratchbox 0.9.8.8 to be able to export it on the pda nokia 770 when i run [sbox-SDK_ARMEL: ~/openssl-0.9.8d] ./config -t i have: Operating system: i686-whatever-linux2 Does nokia run on x86 processor? I think not. I had an

Re: [openssl.org #1521] bug report

2007-05-20 Thread Kurt Roeckx
On Sun, May 20, 2007 at 02:42:59PM +0200, Andy Polyakov via RT wrote: Title: Failed to link static openssl libraries (or non-PIC x86_64cpuid.s) OS: FC4 HARDWARE: AMD x86 64bit OPENSSL VERSION: 0.9.8e OPTIONS: CFLAGS=-fPIC -O2 ./config no-dso no-shared no-threads no-zlib -fPIC -O2

Re: [openssl.org #1521] bug report

2007-05-20 Thread Andy Polyakov
The problem is that he's trying to make a shared library linked to a static library, and the static library isn't built with -fPIC. No. The way I read it, his static library is build with -fPIC. The user surely wants to include copy of OpenSSL code into own .so. I mean as alternative to

Re: [openssl.org #1526] x86cpuid-elf.s cannot be compiled by Sun assembler on x86

2007-05-20 Thread Victor B. Wagner
On 2007.05.19 at 20:20:14 +0200, Andy Polyakov via RT wrote: In the revision 1.9 of file x86cpuid.pl there appeared block with some setne instructions: These instructions are translated under Solaris x86 into setneb assembler instruction which causes Illegal mnemonic error with

Re: [openssl.org #1526] x86cpuid-elf.s cannot be compiled by Sun assembler on x86

2007-05-20 Thread Andy Polyakov
Also, expression and (edx, ~(128)) is incorrectly translated into andl$18446744073441116159,%edx on 32-bit platform (should be andl $4026531839,%edx ) which causes as to complain about Value out of range. It looks like problem somewhere in the perlasm which incorrectly uses

[openssl.org #1437] Resolved: [patch] include sys/types.h in sha.h

2007-05-20 Thread Andy Polyakov via RT
According to our records, your request has been resolved. If you have any further questions or concerns, please respond to this message. __ OpenSSL Project http://www.openssl.org Development Mailing

Re: [openssl.org #1521] bug report

2007-05-20 Thread Kurt Roeckx
On Sun, May 20, 2007 at 03:21:56PM +0200, Andy Polyakov wrote: The problem is that he's trying to make a shared library linked to a static library, and the static library isn't built with -fPIC. No. The way I read it, his static library is build with -fPIC. The user Right, it seems that it