mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
net/spoofer: fix build on GCC architectures
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)
This commit is contained in:
parent
7840093c8a
commit
bd42759faa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=513388
15
net/spoofer/files/patch-configure
Normal file
15
net/spoofer/files/patch-configure
Normal file
@ -0,0 +1,15 @@
|
||||
--- 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
|
Loading…
Reference in New Issue
Block a user