Date: Sat, 14 Sep 2013 16:03:16 +0200 From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= <des@des.no> To: Ian Lepore <ian@FreeBSD.org> Cc: freebsd-security@FreeBSD.org, current@FreeBSD.org Subject: Re: HEADS UP: OpenSSH with DNSSEC support in 10 Message-ID: <86ob7vlcuz.fsf@nine.des.no> In-Reply-To: <1379166722.1197.3.camel@revolution.hippie.lan> (Ian Lepore's message of "Sat, 14 Sep 2013 07:52:02 -0600") References: <86hadre740.fsf@nine.des.no> <1379166722.1197.3.camel@revolution.hippie.lan>
next in thread | previous in thread | raw e-mail | index | archive | help
Ian Lepore <ian@FreeBSD.org> writes:
> I just ran into a build error related to this:
> [...]
> I find that the attached patch fixes it for me.
> [...]
> @@ -1468,7 +1468,7 @@ lib/libcxxrt__L: gnu/lib/libgcc__L
> lib/libradius lib/libsbuf lib/libtacplus \
> ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
> ${_cddl_lib_libzfs_core} \
> - lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
> + lib/libutil ${_lib_libypclnt} lib/libldns lib/libz lib/msun \
> ${_secure_lib_libcrypto} ${_secure_lib_libssh} \
> ${_secure_lib_libssl}
>=20=20
That's not going to work, because libldns requires libcrypto. You
should try the following:
@@ -1470,8 +1470,8 @@
${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
${_cddl_lib_libzfs_core} \
lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
- ${_secure_lib_libcrypto} ${_secure_lib_libssh} \
- ${_secure_lib_libssl}
+ ${_secure_lib_libcrypto} ${_lib_libldns} \
+ ${_secure_lib_libssh} ${_secure_lib_libssl}
=20
.if ${MK_ATF} !=3D "no"
_lib_atf_libatf_c=3D lib/atf/libatf-c
Oh, wait, that's actually an excerpt from the commit that enabled LDNS
in OpenSSH. What a coincidence!
DES
--=20
Dag-Erling Sm=C3=B8rgrav - des@des.no
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86ob7vlcuz.fsf>
