1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #4475

Andrew (anoa) (1):
      docs(INSTALL): update install docs with workaround for fedora 25
This commit is contained in:
Zetok Zalbavar 2017-06-18 17:54:16 +01:00
commit 05ba157e83
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -556,13 +556,19 @@ echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf
sudo ldconfig sudo ldconfig
``` ```
### Compile qTox ### Compile qTox
**Make sure that all the dependencies are installed.** If you experience **Make sure that all the dependencies are installed.** If you experience
problems with compiling, it's most likely due to missing dependencies, so please problems with compiling, it's most likely due to missing dependencies, so please
make sure that you did install *all of them*. make sure that you did install *all of them*.
If you are compiling on Fedora 25, you must add libtoxcore to the
`PKG_CONFIG_PATH` environment variable manually:
```
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
```
Run in qTox directory to compile: Run in qTox directory to compile:
```bash ```bash