Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Matt Caswell
On 30/06/16 20:23, Salz, Rich wrote: > >> Specify neither if you want most stuff to be installed in /usr/local and >> config >> files/default cert/keystore in /usr/local/ssl >> >> Specify just --openssldir if you want just config files/default >> cert/keystore to >> go into and everything

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Salz, Rich
> Specify neither if you want most stuff to be installed in /usr/local and > config > files/default cert/keystore in /usr/local/ssl > > Specify just --openssldir if you want just config files/default cert/keystore > to > go into and everything else in /usr/local > > Specify just --prefix if

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Matt Caswell
On 30/06/16 17:59, noloa...@gmail.com via RT wrote: > On Thu, Jun 30, 2016 at 12:52 PM, Salz, Rich via RT wrote: >>> I don't want either of them. I only want to install the library in the >>> directory of >>> my choosing :) >> >> #! /bin/sh >> make $* && cp *.a $MYDIR >> >>

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread noloa...@gmail.com via RT
On Thu, Jun 30, 2016 at 12:52 PM, Salz, Rich via RT wrote: >> I don't want either of them. I only want to install the library in the >> directory of >> my choosing :) > > #! /bin/sh > make $* && cp *.a $MYDIR > > Less flippantly, not everything is supported :) Thanks Rich. So

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Richard Levitte
In message on Thu, 30 Jun 2016 16:49:11 +, "noloa...@gmail.com via RT" said: noloader> I don't want either of them. I only want to install the library in the noloader> directory of my choosing :) Then configure with

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Salz, Rich via RT
> I don't want either of them. I only want to install the library in the > directory of > my choosing :) #! /bin/sh make $* && cp *.a $MYDIR Less flippantly, not everything is supported :) -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4601 Please log in as guest with password

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread noloa...@gmail.com via RT
On Thu, Jun 30, 2016 at 11:29 AM, Jeffrey Walton wrote: > On Thu, Jun 30, 2016 at 11:12 AM, Richard Levitte via RT > wrote: >> That's correct for 1.1.0. install_sw honors --prefix. We made that change to >> get away from all the weird magic around the

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Richard Levitte
[taking this out of RT] In message on Thu, 30 Jun 2016 15:29:54 +, "noloa...@gmail.com via RT" said: noloader> On Thu, Jun 30, 2016 at 11:12 AM, Richard Levitte via RT wrote: noloader> > That's

Re: [openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread noloa...@gmail.com via RT
On Thu, Jun 30, 2016 at 11:12 AM, Richard Levitte via RT wrote: > That's correct for 1.1.0. install_sw honors --prefix. We made that change to > get away from all the weird magic around the combinations of --prefix and > --openssldir that happened in previous versions. > > In

[openssl-dev] Low priority feature request: EVP_SIG object

2016-06-30 Thread Bill Cox
This is low priority, IMO, but it would help with my current task. I happen to be updating my token binding library at work to use the new more compact HTTP headers. We write the X, Y, R, and S values, length-prefixed, for ECDSA-P256, and the modulus and exponent for RSA. My previous code uses

[openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread Richard Levitte via RT
That's correct for 1.1.0. install_sw honors --prefix. We made that change to get away from all the weird magic around the combinations of --prefix and --openssldir that happened in previous versions. In other words, it's not a bug, it's a feature. Closing this ticket. Cheers, Richard On Thu Jun

Re: [openssl-dev] BUG - FIPS capable OpenSSL fails to build on Linux PPC64

2016-06-30 Thread Cristi Fati
Thank you Marcus for the comments. Couple of notes: - My archs are Big Endian. - I was aiming for openssl1.0.2(h) since this is the LTS version. Short recap: - *On (Linux running on) PPC64*, openssl 1.0.2h + openssl-fips-2.0.12, when both are automatically configured (using *config*) *does not

[openssl-dev] [openssl.org #4601] install_sw does not honor --openssldir

2016-06-30 Thread noloa...@gmail.com via RT
Working on OS 10.8.5. Working from Master, 8a3c000c8f621cd01929313fcb7d0cc23fb516a6. Using the following configure line: $ KERNEL_BITS=64 ./config no-shared enable-ec_nistp_64_gcc_128 --openssldir=/usr/local/ssl/1.1.0 Later, when I attempt to compile: $ gcc -I/usr/local/ssl/1.1.0/include

Re: [openssl-dev] aarch64 64bit build with linaro tools

2016-06-30 Thread Catalin Vasile
Sorry, it was my bad. I used some old scripts I made, where I only modified some env variables. From what I remembered the scripts also did the "make install", but I was wrong. The library and linaro tools worked perfectly. Catalin Vasile From: openssl-dev

Re: [openssl-dev] aarch64 64bit build with linaro tools

2016-06-30 Thread Andy Polyakov
> I'm trying to build a 64bit aarch64 OpenSSL library with linaro tools[1]. > Whatever I try, the library compiles to the 32bit version. > How do I get a 64bit library version? I'm using very same toolchain, and I get as 64-bit AArch64 library as it can possibly get. Though truth be told I'm

[openssl-dev] aarch64 64bit build with linaro tools

2016-06-30 Thread Catalin Vasile
Hi, I'm trying to build a 64bit aarch64 OpenSSL library with linaro tools[1]. Whatever I try, the library compiles to the 32bit version. How do I get a 64bit library version? This is my config command: perl ./Configure -no-ssl3 --prefix=... --openssldir=/usr/lib/ssl --libdir=lib shared