Discussion:
[stunnel-users] Fwd: Do Not Make Stunnel on El Capitan
(too old to reply)
Michał Trojnara
2016-01-02 20:00:11 UTC
Permalink
Hi WATANABE, Takeo,

I've heard that El Capitan no longer installs OpenSSL headers. You may need to install OpenSSL (either directly from source, or using a package manager).

Mike



-------- Original message --------
Subject:[stunnel-users] Do Not Make Stunnel on El Capitan
From:WATANABE Takeo <***@kasaneiro.jp>
To:stunnel-***@stunnel.org
Cc:

Dear all.

Hi. My name is WATANABE, Takeo in Japan.
There is a thing that is very troubled,
it will post to this ML.

It is in OS X El Capitan(10.11.x),
it is stunnel of make it is that does not pass.
The rootkill mechanism I think is causing,
but tried again to disable this,
even doing several times, not as make is.

Even latest Stunnel, make will fail.

Where everyone is, what you can well Build.

If you have person there know what measures
and successes such as a, please tell me.
Warm Regards.

Sincerely yours.
Thireus
2016-01-02 20:11:41 UTC
Permalink
Hi Takeo,

These are my raw notes you can use to compile OpenSSL and stunnel (OpenSSL static lib, no SSLv3).

------------------------

bash

cd ~/Downloads && wget https://github.com/openssl/openssl/archive/OpenSSL_1_0_2e.tar.gz && \
tar xvf OpenSSL_1_0_2e.tar.gz && \
cd ~/Downloads/openssl-OpenSSL_1_0_2e && \
./Configure darwin64-x86_64-cc threads -fPIC zlib no-dso no-ssl3 --prefix=~/Downloads/openssl-built/ --openssldir=~/Downloads/openssl-built/ssl && \
make depend
make && make install

cd ~/Downloads && rm -rf stunnel-* && \
wget https://www.stunnel.org/downloads/stunnel-5.28.tar.gz && \
tar xvf stunnel-5.28.tar.gz && \
cd ~/Downloads/stunnel-5.28 && \
./configure --with-ssl=~/Downloads/openssl-built --enable-static --disable-shared && \
make && sudo make install

/usr/local/bin/stunnel -version

------------------------

Cheers,

Thireus (***@gmail.com <mailto:***@gmail.com>),
IT Security Engineer Consultant.
http://blog.thireus.com <http://blog.thireus.com/>
Post by Michał Trojnara
Hi WATANABE, Takeo,
I've heard that El Capitan no longer installs OpenSSL headers. You may need to install OpenSSL (either directly from source, or using a package manager).
Mike
-------- Original message --------
Subject:[stunnel-users] Do Not Make Stunnel on El Capitan
Dear all.
Hi. My name is WATANABE, Takeo in Japan.
There is a thing that is very troubled,
it will post to this ML.
It is in OS X El Capitan(10.11.x),
it is stunnel of make it is that does not pass.
The rootkill mechanism I think is causing,
but tried again to disable this,
even doing several times, not as make is.
Even latest Stunnel, make will fail.
Where everyone is, what you can well Build.
If you have person there know what measures
and successes such as a, please tell me.
Warm Regards.
Sincerely yours.
_______________________________________________
stunnel-users mailing list
https://www.stunnel.org/cgi-bin/mailman/listinfo/stunnel-users
_______________________________________________
stunnel-users mailing list
https://www.stunnel.org/cgi-bin/mailman/listinfo/stunnel-users
Loading...