Date: Sun, 1 Nov 2015 23:20:51 +0900 From: Tomoaki AOKI <junchoon@dec.sakura.ne.jp> To: freebsd-current@freebsd.org Subject: Re: [HEADSUP] OpenSSL updated to 1.0.2d Message-ID: <20151101232051.5495e5eae1ee7ed9337349e3@dec.sakura.ne.jp> In-Reply-To: <5634CECA.6080405@vangyzen.net> References: <5633D9C9.2060906@FreeBSD.org> <20151031112545.46aa9dca.ohartman@zedat.fu-berlin.de> <5634CECA.6080405@vangyzen.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Thanks! Yours is very much faster than what I was trying. :-) Attached is a modified one to generate updating script. Currently it uses ports-mgmt/portupgrade(-devel), but modifying to use other options or any other tool (such as ports-mgmt/portmaster). Caution: No error checking for generated script. (Command line length, and so on are NOT checked.) On Sat, 31 Oct 2015 09:23:06 -0500 Eric van Gyzen <eric@vangyzen.net> wrote: > On 10/31/15 5:25 AM, O. Hartmann wrote: > > Am Fri, 30 Oct 2015 16:57:45 -0400 > > Jung-uk Kim <jkim@FreeBSD.org> schrieb: > > > >> -----BEGIN PGP SIGNED MESSAGE----- > >> Hash: SHA256 > >> > >> OpenSSL on head has been updated to 1.0.2d. Please make sure to > >> recompile all binaries depending on libcrypto.so.7 or libssl.so.7. > > > > That is good news. > > > > Could you provide, please, some hints how one could check all installed ports for the > > usage of those specific libraries? Or could you provide a hint towards an existing port > > already providing those tools? It would be great for those "from the set of ordinary > > people" using FreeBSD. > > > > I ask for that because I recall that there were a couple of ports which explicitely asks > > for a selection of what SSL lib should be used and in my case, I use the base system's > > one. > > I expect there's a port, but I'm not aware of one. > > This should work: > > find /usr/local/*bin /usr/local/lib* -type f | \ > while read F; do \ > objdump -x $F 2>&1 | grep -Eq 'NEEDED *lib(crypto|ssl).so.7' && \ > echo $F; \ > done > > This is in /bin/sh (or bash). You could change "echo" to "pkg which" > to show the package names. > > Cheers, > > Eric > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > -- Tomoaki AOKI junchoon@dec.sakura.ne.jp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20151101232051.5495e5eae1ee7ed9337349e3>