Hello, I was trying to build virt-manager with dependencies, and a problem occured with `spice` <http://slackbuilds.org/repository/14.1/network/spice/>:
~~~~ make[4]: Entering directory `/tmp/SBo/spice-0.12.5/server' CC agent-msg-filter.lo CC char_device.lo CC glz_encoder.lo CC glz_encoder_dictionary.lo CC inputs_channel.lo CC jpeg_encoder.lo CC main_channel.lo CC mjpeg_encoder.lo CC red_channel.lo CC dispatcher.lo CC red_dispatcher.lo CC main_dispatcher.lo CC red_memslots.lo CC red_parse_qxl.lo CC red_worker.lo CC reds.lo CC reds_stream.lo CC reds_sw_canvas.lo CC snd_worker.lo CC spicevmc.lo CC spice_timer_queue.lo CC zlib_encoder.lo CC spice_bitmap_utils.lo CC spice_image_cache.lo CCLD libspice-server.la gcc: error: /usr/lib64/libcelt051.so: No such file or directory ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ make[4]: *** [libspice-server.la] Error 1 make[4]: Leaving directory `/tmp/SBo/spice-0.12.5/server' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/tmp/SBo/spice-0.12.5/server' make[2]: *** [all] Error 2 make[2]: Leaving directory `/tmp/SBo/spice-0.12.5/server' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/tmp/SBo/spice-0.12.5' make: *** [all] Error 2 Total build time for package spice : 41.58 Sec ~~~~ `celt051` <http://slackbuilds.org/repository/14.1/audio/celt051/> was built and installed before, but the file expected during the spice build - `/usr/lib64/libcelt051.so` - was not available: # ls -la /usr/lib64/libcelt051.so ls: cannot access /usr/lib64/libcelt051.so: No such file or directory There was a file: # ls -la /usr/lib64/libcelt051.so.0 lrwxrwxrwx 1 root root 19 Aug 9 01:57 /usr/lib64/libcelt051.so.0 -> libcelt051.so.0.0.0 What solved this issue was: ~~~~ cd /usr/lib64 && ln -s libcelt051.so.0 libcelt051.so ~~~~ So I guess `celt051.SlackBuild` needs an update? -- Thomas Szteliga
smime.p7s
Description: S/MIME Cryptographic Signature
_______________________________________________ SlackBuilds-users mailing list [email protected] http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users Archives - http://lists.slackbuilds.org/pipermail/slackbuilds-users/ FAQ - http://slackbuilds.org/faq/
