diff options
author | Lukas Rusak <lorusak@gmail.com> | 2020-03-14 13:08:21 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2020-03-18 09:36:32 -0700 |
commit | 00a6fbbd71047c4dd3ec5f8e60cf2ac48059266a (patch) | |
tree | 044f61b8ecb8156be52ce220742932d28355abc2 /docs/README.FreeBSD.md | |
parent | fe157eb163d65461ca4cd94024023df9d72e85d7 (diff) |
[docs] update FreeBSD build instructions for 12.1
Diffstat (limited to 'docs/README.FreeBSD.md')
-rw-r--r-- | docs/README.FreeBSD.md | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/README.FreeBSD.md b/docs/README.FreeBSD.md index d65af3f8c0..d28b1c742e 100644 --- a/docs/README.FreeBSD.md +++ b/docs/README.FreeBSD.md @@ -1,7 +1,7 @@ ![Kodi Logo](resources/banner_slim.png) # FreeBSD build guide -This guide has been tested with FreeBSD 11.1 x86_64. Please read it in full before you proceed to familiarize yourself with the build procedure. +This guide has been tested with FreeBSD 12.1 x86_64. Please read it in full before you proceed to familiarize yourself with the build procedure. Several other distributions have **[specific build guides](README.md)** and a general **[Linux build guide](README.Linux.md)** is also available. @@ -76,7 +76,7 @@ If you get a `package not found` type of message with the below command, remove Install build dependencies: ``` -sudo pkg install autoconf automake avahi-app binutils cmake curl dbus doxygen e2fsprogs-libuuid enca encodings flac flatbuffers font-util fontconfig freetype2 fribidi gawk gettext-tools giflib git glew gmake gmp gnutls gperf gstreamer1-vaapi hal jpeg-turbo libaacs libass libbdplus libbluray libcapn libcdio libcec libedit libfmt libgcrypt libgpg-error libidn libinotify libmicrohttpd libnfs libogg libplist librtmp libtool libudev-devd libva libvdpau libvorbis libxslt lirc lzo2 m4 mesa-libs mysql57-client nasm openjdk8 p8-platform pkgconf python3 py-pillow rapidjson samba46 shairplay sndio sqlite3 swig30 taglib tiff tinyxml xf86-input-keyboard xf86-input-mouse xorg-proto xorg-server xrandr zip +sudo pkg install autoconf automake avahi-app binutils cmake curl dbus doxygen e2fsprogs-libuuid enca encodings flac flatbuffers font-util fontconfig freetype2 fribidi fstrcmp gawk gettext-tools giflib git glew gmake gmp gnutls gperf gstreamer1-vaapi hal jpeg-turbo libaacs libass libbdplus libbluray libcapn libcdio libcec libedit libfmt libgcrypt libgpg-error libidn libinotify libmicrohttpd libnfs libogg libplist librtmp libtool libudev-devd libva libvdpau libvorbis libxslt lirc lzo2 m4 mesa-libs mysql57-client nasm openjdk8 p8-platform pkgconf python3 rapidjson shairplay sndio sqlite3 swig30 taglib tiff tinyxml xf86-input-keyboard xf86-input-mouse xorg-server xrandr zip ``` **WARNING:** Make sure you copy paste the entire line or you might receive an error or miss a few dependencies. @@ -116,11 +116,9 @@ cd $HOME/kodi-build Configure build: ``` -cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DENABLE_INTERNAL_FSTRCMP=1 +cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local ``` -Internal libfstrcmp is used since it is not available through pkg. - ### 4.2. Build ``` cmake --build . -- VERBOSE=1 -j$(sysctl hw.ncpu | awk '{print $2}') |