Re: [fossil-users] OpenSSL in the source tree

2016-11-02 Thread Adam Jensen
On 11/02/2016 06:33 AM, Martin Gagnon wrote: > If you want to use openssl from your distro, you need to install the > development package of openssl. > > I think it's "openssl-devel" on CentOS. > > I'm not very familiar with CentOS but if you do: > > $ yum install openssl-devel > > the config

Re: [fossil-users] OpenSSL in the source tree

2016-11-02 Thread Adam Jensen
On 11/02/2016 05:45 AM, Jan Nijtmans wrote: > 2016-11-02 7:29 GMT+01:00 Joe Mistachkin: >> I think using OpenSSL 1.1 will only work on the "openssl-1.1.0" branch. > > For Windows, that's true. For other platforms, openssl-1.1 works fine > in Fossil 1.36 or later. The reason is that dll names were

Re: [fossil-users] OpenSSL in the source tree

2016-11-02 Thread Adam Jensen
On 11/02/2016 02:29 AM, Joe Mistachkin wrote: > I think using OpenSSL 1.1 will only work on the "openssl-1.1.0" branch. > > Here are the commands I generally use to get things all working in the > source tree: > > cd compat/zlib && ./configure && make > cd .. > wget -4 https://www.openssl.org/sou

Re: [fossil-users] OpenSSL in the source tree

2016-11-02 Thread Martin Gagnon
On Wed, Nov 02, 2016 at 02:18:50AM -0400, Adam Jensen wrote: > When compiling on CentOS-7, 'configure --with-openssl=auto' doesn't find > what is needed. How can OpenSSL or LibreSSL source be placed in the > 'fossil/compat' directory such that 'configure --with-openssl=tree' will > work? I've tried

Re: [fossil-users] OpenSSL in the source tree

2016-11-02 Thread Jan Nijtmans
2016-11-02 7:29 GMT+01:00 Joe Mistachkin: > I think using OpenSSL 1.1 will only work on the "openssl-1.1.0" branch. For Windows, that's true. For other platforms, openssl-1.1 works fine in Fossil 1.36 or later. The reason is that dll names were changed in openssl-1.1.0, this needs some build chang

Re: [fossil-users] OpenSSL in the source tree

2016-11-01 Thread Joe Mistachkin
Adam Jensen wrote: > > But that results in: > --- > Checking for ssl in source tree...no > Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS > support > ---

[fossil-users] OpenSSL in the source tree

2016-11-01 Thread Adam Jensen
When compiling on CentOS-7, 'configure --with-openssl=auto' doesn't find what is needed. How can OpenSSL or LibreSSL source be placed in the 'fossil/compat' directory such that 'configure --with-openssl=tree' will work? I've tried both: tar xzf openssl-1.1.0b.tar.gz -C ~/build/fossil/compat/ cd ~/