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

Merge pull request #3174

Diadlo (1):
      docs(INSTALL.md): Added language to markdown code tags
This commit is contained in:
Zetok Zalbavar 2016-04-22 10:41:36 +01:00
commit f2b8b10cc9
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -307,7 +307,7 @@ and install `toxcore` and `libfilteraudio`:
If you've used script, you can skip directly to [compiling qTox](#compile-qtox).
If you want to compile and install it manually:
```
```bash
git clone https://github.com/irungentoo/filter_audio
cd filter_audio
make -j$(nproc)
@ -321,7 +321,7 @@ If you are not using Fedora, skip this section, and go directly to compiling
This method automatically detects whether to link statically or dynamically,
depending on your system configs.
```
```bash
git clone https://github.com/sqlcipher/sqlcipher
cd sqlcipher
autoreconf -if
@ -335,7 +335,7 @@ If you wish to explicitly link sqlcipher
[dynamically](#dynamically-linked-sqlcipher).
#### Statically linked sqlcipher
```
```bash
git clone https://github.com/sqlcipher/sqlcipher
cd sqlpcipher
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" \
@ -346,7 +346,7 @@ cd ..
```
#### Dynamically linked sqlcipher
```
```bash
git clone https://github.com/sqlcipher/sqlcipher
cd sqlcipher
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" \
@ -400,7 +400,7 @@ make
#### Debian / Ubuntu / Mint
If the compiling process stops with a missing dependency like:
`... libswscale/swscale.h missing` try:
```
```bash
apt-file search libswscale/swscale.h
```
And install the package that provides the missing file.