mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 07:22:34 +00:00
Fix of configure --enable-openssl-base processing
This commit is contained in:
parent
d605ab57f5
commit
5ee79624b6
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
CHANGES
|
@ -243,6 +243,9 @@ Porting:
|
|||
Renewed port to OpenBSD:
|
||||
Guard OPENSSL_INIT_SETTINGS; and minor changes.
|
||||
|
||||
Thanks to Paul Hunt for sending a fix of the configure
|
||||
--enable-openssl-base processing.
|
||||
|
||||
Testing:
|
||||
Removed obselete parts from test.sh
|
||||
|
||||
|
|
|
@ -587,7 +587,8 @@ AC_ARG_ENABLE(openssl_base, [ --enable-openssl-base specify directory with in
|
|||
#
|
||||
if test -n "$WITH_OPENSSL"; then
|
||||
if test -n "$OPENSSL_BASE"; then
|
||||
sc_cv_have_openssl_ssl_h=yes; OPENSSL_BASE="$D"
|
||||
sc_cv_have_openssl_ssl_h=yes;
|
||||
CPPFLAGS="-I$OPENSSL_BASE/include $CPPFLAGS"
|
||||
else
|
||||
AC_MSG_NOTICE(checking for components of OpenSSL)
|
||||
# first, we need to find the include file <openssl/ssl.h>
|
||||
|
|
Loading…
Reference in a new issue