<p>On Oct 28, 2011 4:47 PM, "B Watson" <<a href="mailto:yalhcru@gmail.com">yalhcru@gmail.com</a>> wrote:<br>
><br>
> On 10/28/11, Graham Lawrence <<a href="mailto:gl00637@gmail.com">gl00637@gmail.com</a>> wrote:<br>
><br>
> > root@a:/usr/pkgs# updatedb<br>
> > root@a:/usr/pkgs# locate libsigc++-2*<br>
> > /usr/pkgs/libsigc++-2.2.9-i486-1_SBo.tgz<br>
><br>
> This doesn't do what you expect. On UNIX and its kin, the shell does<br>
> wildcard expansion before running commands. This means the * in your<br>
> command was never "seen" by the locate command (instead, the shell<br>
> expanded it to "libsigc++-2.2.9-i486-1_SBo.tgz", and your command ran as<br>
> "locate libsigc++-2.2.9-i486-1_SBo.tgz"). So it only found the package<br>
> file (you were probably trying to locate the files installed by the<br>
> package, not the actual package file itself...)<br>
><br>
> One way to check whether libsigc++ is installed:<br>
><br>
> $ ls /usr/lib/libsigc*.so<br>
> /usr/lib/<a href="http://libsigc-2.0.so">libsigc-2.0.so</a><br>
><br>
> Another way:<br>
><br>
> $ pkg-config --list-all|grep -i sigc<br>
> sigc++-2.0                  libsigc++ - Typesafe signal and callback<br>
> system for C++<br>
><br>
> (The "pkg-config" command, confusingly, has nothing to do with the<br>
> slackware packaging system)<br>
><br>
> When your nzbget ./configure script fails, look for a file called<br>
> "config.log", usually found in the same directory as the configure<br>
> script. This will have the details (*lots* of details) on what the<br>
> configure script did and why it failed. Try searching for sigc++ in that<br>
> file (with "less", or with a text editor).<br>
><br>
> Another thing that happens fairly often with configure scripts: if<br>
> the script fails because some library was missing, and you install the<br>
> library and re-run the script in-place, it may fail again even though<br>
> it shouldn't... because configure scripts can cache their results. Try<br>
> completely deleting the nzbget-0.7.0 directory, untar it again, and<br>
> start over.<br>
><br>
> I just built nzbget-0.7.0 on 64-bit slackware 13.37 using the libsigc++<br>
> and libpar2 from <a href="http://slackbuilds.org">slackbuilds.org</a>, and it built just fine. No way to test<br>
> that it runs correctly though (I have no access to any nntp servers).<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">http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users</a><br>
> Archives - <a href="http://lists.slackbuilds.org/pipermail/slackbuilds-users/">http://lists.slackbuilds.org/pipermail/slackbuilds-users/</a><br>
> FAQ - <a href="http://slackbuilds.org/faq/">http://slackbuilds.org/faq/</a><br>
></p>
<p>You can also view the package manifest:</p>
<p>$ less /var/log/packages/libsigc*</p>
<p>--JK</p>