/lib/libc.so.7: version FBSD_1.6 required by /usr/local/lib/libepoll-shim.so.0 not found

Getting this when running startx to start Mate.
Never had this problem until doing this fresh install of 11.2.
Any tips?
 
Your package "libepoll-shim" is outdated. Reinstall everything and relax with following commands,
Code:
pkg update -f
pkg upgrade -f
This should normally bring all your libraries to the correct versions.
 
I see. How do you build from ports using which tool ?. And do you mix ports and packages ?
You can safely update the package database
Code:
pkg update -f
And then check which ports are outdated with,
Code:
pkg version -v | grep updating
Then chose to rebuild those port and it's dependencies (best choice),

Or reinstall the package (mix package/ports is a bad idea) with,
Code:
pkg install -y -f thepackage
 
https://pkg-status.freebsd.org/builds?type=package&jailname=112amd64 no builds since October 2019.

possible the package was build on 11.4

Most recently for AMD64 latest (default): no log for libepoll-shim at <http://beefy9.nyi.freebsd.org/data/114amd64-default/c9afda5a14a3/logs/> or <http://beefy9.nyi.freebsd.org/data/114amd64-default/c9afda5a14a3/logs/errors/> however it's tabled at <https://www.freshports.org/devel/libepoll-shim/#packages> so maybe I'm looking at the wrong log set.

user00 for the future, ports-mgmt/pkg-provides is our friend.

Code:
% pkg provides /usr/local/lib/libepoll-shim.so.0
Name    : libepoll-shim-0.0.20210418
Desc    : Small epoll implementation using kqueue
Repo    : FreeBSD
Filename: usr/local/lib/libepoll-shim.so.0
% freebsd-version -kru
14.0-CURRENT
14.0-CURRENT
14.0-CURRENT
%
 
Back
Top