0

When trying to install Graphicsmagick binaries to FreeBSD using

sudo pkg install GraphicsMagick

via SSH shell, I get this error message:

/usr/local/lib/libpkg.so.3: Undefined symbol "openat"

What is wrong?

Mateusz Piotrowski
  • 8,029
  • 10
  • 53
  • 79
Igor P.
  • 1,407
  • 2
  • 20
  • 34
  • 1
    What version is your FreeBSD system? The `openat` syscall was added in FreeBSD 8.0, while `pkg` was introduced in 9.1. Probably your system is too old be be supported by the current ports tree. – Roland Smith Jan 09 '17 at 23:00

1 Answers1

1

You need to update FreeBSD. You're trying to use a port too current for the system you are running. You can either perform a binary upgrade, or you can update the source and build the kernel & world.

alzee
  • 1,393
  • 1
  • 10
  • 21