View | Details | Raw Unified | Return to bug 237947 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 lines)
Lines 17-23 Link Here
17
BROKEN_armv6=		fails to compile: use of overloaded operator << is ambiguous
17
BROKEN_armv6=		fails to compile: use of overloaded operator << is ambiguous
18
BROKEN_armv7=		fails to compile: use of overloaded operator << is ambiguous
18
BROKEN_armv7=		fails to compile: use of overloaded operator << is ambiguous
19
BROKEN_sparc64=		fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt
19
BROKEN_sparc64=		fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt
20
BROKEN_powerpc64=	fails to compile: dnslabeltext.cc: undefined reference to std::__cxx11::basic_string
21
20
22
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
21
BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
23
LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
22
LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
(-)files/patch-configure (+15 lines)
Line 0 Link Here
1
--- configure.orig	2019-05-17 10:25:29 UTC
2
+++ configure
3
@@ -19350,8 +19350,10 @@ fi
4
             { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openssl/crypto.h in $ssldir" >&5
5
 $as_echo_n "checking for openssl/crypto.h in $ssldir... " >&6; }
6
             if test -f "$ssldir/include/openssl/crypto.h"; then
7
-                LIBCRYPTO_INCLUDES="-I$ssldir/include"
8
-                LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
9
+		if test $ssldir != /usr; then
10
+                	LIBCRYPTO_INCLUDES="-I$ssldir/include"
11
+                	LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
12
+		fi
13
                 LIBCRYPTO_LIBS="-lcrypto"
14
                 found=true
15
                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5

Return to bug 237947