GCC from ports on GCC architectures fails to build this port when base OpenSSL is used because -L/usr/lib takes over -L/usr/local/lib/gcc9 and in result, base libstdc++ is used instead of the one from ports. Fix this issue with patch to configure script. PR: 240690 Approved by: linimon (mentor), portmgr (blanket: build fix)
16 lines
704 B
Plaintext
16 lines
704 B
Plaintext
--- configure.orig 2019-07-03 23:43:25 UTC
|
|
+++ configure
|
|
@@ -11092,8 +11092,10 @@ fi
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for openssl/ssl.h in $ssldir" >&5
|
|
$as_echo_n "checking for openssl/ssl.h in $ssldir... " >&6; }
|
|
if test -f "$ssldir/include/openssl/ssl.h"; then
|
|
- OPENSSL_INCLUDES="-I$ssldir/include"
|
|
- OPENSSL_LDFLAGS="-L$ssldir/lib"
|
|
+ if test $ssldir != /usr; then
|
|
+ OPENSSL_INCLUDES="-I$ssldir/include"
|
|
+ OPENSSL_LDFLAGS="-L$ssldir/lib"
|
|
+ fi
|
|
OPENSSL_LIBS="-lssl -lcrypto"
|
|
found=true
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|