<p dir="ltr">for file in $(find . -type f | xargs file | grep ELF | cut -d : -f 1); do<br>
d=$(strings $file | grep OpenSSL)<br>
if [ ${#d} -gt 0 ]; then<br>
echo $file<br>
echo $d<br>
echo<br>
fi<br>
done</p>
<div class="gmail_quote">On Apr 11, 2014 5:41 PM, "B Watson" <<a href="mailto:yalhcru@gmail.com">yalhcru@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 4/11/14, mancha <<a href="mailto:mancha1@hush.com">mancha1@hush.com</a>> wrote:<br>
> If we're sure the linking is dynamic then re-compilation is not needed.<br>
<br>
Need a reliable way to tell whether a binary is statically linked with<br>
openssl... grep for some symbol that's always linked I suppose.<br>
<br>
Would require actually building the stuff you're trying to check though,<br>
not just grepping the build script.<br>
_______________________________________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org">SlackBuilds-users@slackbuilds.org</a><br>
<a href="http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" target="_blank">http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users</a><br>
Archives - <a href="http://lists.slackbuilds.org/pipermail/slackbuilds-users/" target="_blank">http://lists.slackbuilds.org/pipermail/slackbuilds-users/</a><br>
FAQ - <a href="http://slackbuilds.org/faq/" target="_blank">http://slackbuilds.org/faq/</a><br>
<br>
</blockquote></div>