Skip to content

Installing Netatalk 3 on FreeBSD

Daniel Markstedt edited this page Apr 23, 2024 · 10 revisions

Due to earlier bugs in Netatalk, please use version 3.1.16 or later for building on FreeBSD.

Packages

Packages required to bootstrap the code:

pkg install autoconf automake libtool pkgconf

Packages required to build the code:

pkg install -y \
  avahi \
  bison \
  db5 \
  flex \
  gmake \
  libevent \
  libgcrypt \
  libressl \
  openldap26-client-2.6.7 \
  talloc \
  tracker3

Build

Bootstrap, configure, build, and install the code:

./bootstrap
./configure \
  --with-ldap=/usr/local \
  --with-ssl-dir=/usr/local \
  --with-tracker-pkgconfig-version=3.0 \
  MAKE=gmake
gmake
gmake install
Clone this wiki locally