pkg check

VirtualBox_freebsd-rc3_24_07_2017_18_37_32.png

Hi,
When I run pkg check -a -d -v I get the following output shown in screenshot above, the 2 libraries shown missing are installed.
 
tray this commands to know the missing packages
# pkg check -Bsdr
and these check which ports are outdated:
# pkg version -v | grep need
 
the result is:
Code:
root@bsdrc3:~ # pkg check -Bsdr
Checking all packages: 100%
virtualbox-ose-additions is missing a required shared library: libXfixes.so
virtualbox-ose-additions is missing a required shared library: libXext.so
 
so i tried to compile and install libXfixes, the result:
Code:
====> Compressing man pages (compress-man)
===>  Installing for libXfixes-5.0.3
===>  Checking if libXfixes already installed
===>   libXfixes-5.0.3 is already installed
      You may wish to ``make deinstall'' and install this port again
      by ``make reinstall'' to upgrade it properly.
      If you really wish to overwrite the old port of libXfixes
      without deleting it first, set the variable "FORCE_PKG_REGISTER"
      in your environment or the "make install" command line.
*** Error code 1

Stop.
make: stopped in /usr/ports/x11/libXfixes
so it is already installed.
 
so i tried to compile and install libXfixes, the result:
Code:
====> Compressing man pages (compress-man)
===>  Installing for libXfixes-5.0.3
===>  Checking if libXfixes already installed
===>   libXfixes-5.0.3 is already installed
      You may wish to ``make deinstall'' and install this port again
      by ``make reinstall'' to upgrade it properly.
      If you really wish to overwrite the old port of libXfixes
      without deleting it first, set the variable "FORCE_PKG_REGISTER"
      in your environment or the "make install" command line.
*** Error code 1

Stop.
make: stopped in /usr/ports/x11/libXfixes
so it is already installed.

make clean
make reinstall clean
 
Back
Top