Open pdvnl opened 4 years ago
The code in trunk compiles fine with OpenSSL 1.1.1g. Here is how I tested it:
./configure --prefix=/usr/local/ssl111g
make
sudo make install
./configure --with-openssl=/usr/local/ssl111g
make clean
make
./mailsend -h
On 2020-06-17, at 17:07:43, muquit notifications@github.com wrote:
The code in trunk compiles fine with OpenSSL 1.1.1g. Here is how I tested it:
Compile and install OpenSSL 1.1.1g say in /usr/local/ssl111g ./configure --prefix=/usr/local/ssl111g make sudo make install Now compile mailsend ./configure --with-openssl=/usr/local/ssl111g make clean make ./mailsend -h — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/muquit/mailsend/issues/153#issuecomment-645433262, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEMAUOZHWTLEJGILTCQI2TTRXDL35ANCNFSM4OAVRDPA.
macports works like bsd ports: it does install from source.
i want to make a port for mailsend so i have to use the macports openssl
openssl by macports installs /opt/local/{bin,include,lib}/openssl, so i think i must use ./configure --with-openssl=/opt/local because mailsend needs include and libs. it finds the include otherwise the error would have been different.
any suggestions?
Makes sense.
./configure --help|grep openssl
--with-openssl=PATH where the root of OpenSSL is installed
--with-openssl-includes where the OpenSSL includes are.
--with-openssl-libraris where the OpenSSL library is installed.
If headers and libs are different locations, that can be specified as well
i'm using to make macport for mailsend using openssl 1.1.g but get an error . maybe incompatibility with openssl 1.1 ?