From 72b49b23bf9a8933b9e0a1d862d87a4271780f94 Mon Sep 17 00:00:00 2001 From: aranyasinha <32277085+aranyasinha@users.noreply.github.com> Date: Mon, 8 Apr 2019 23:44:11 +0530 Subject: [PATCH] Fixed fedora package name for aac and cmake option for enabling ffmpeg. --- Building-for-Linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 2a0184f..f105d41 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -17,7 +17,7 @@ You'll need to download and install the following to build Citra: - FDK-AAC * Deb: `apt-get install libfdk-aac-dev` * Arch: `pacman -S libfdk-aac-dev` - * Fedora: `dnf install fdk-aac-free-devel` + * Fedora: `dnf install fdk-aac-devel` - [FFMPEG](https://ffmpeg.org/download.html#build-linux) 4.0+ * Compiler: GCC or Clang. You only need one of these two: * GCC 7.0+. @@ -53,7 +53,7 @@ cmake ../ make sudo make install (optional) ``` -- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG` instead. +- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG=ON` instead. Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI). @@ -78,7 +78,7 @@ cmake .. -DCMAKE_BUILD_TYPE=Release make sudo make install (optional) ``` -- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG` instead. +- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG=ON` instead. ### Building with debug symbols: