summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2014-01-26 21:02:11 +0100
committermannol <eniz_vukovic@hotmail.com>2014-01-26 21:02:11 +0100
commit88f97078a2700e1a988a225f8b25be0b2e80949a (patch)
tree065858bc79fb52a1fa9fbb657b0889ba4001853d
parent142340aa632335952948119c42bab399abc6c960 (diff)
Small fix
-rw-r--r--INSTALL.md23
-rwxr-xr-xtoxav/toxrtp.h4
2 files changed, 22 insertions, 5 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 8223e940..8f31b86e 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,7 +1,7 @@
1#Install Instructions 1#Install Instructions
2 2
3- [Installation](#installation) 3- [Installation](#installation)
4 - [GNU/Linux](#gnu/linux) 4 - [Unix like](#unix)
5 - [OS X](#osx) 5 - [OS X](#osx)
6 - [Homebrew](#homebrew) 6 - [Homebrew](#homebrew)
7 - [Non-Homebrew](#non-homebrew) 7 - [Non-Homebrew](#non-homebrew)
@@ -10,11 +10,15 @@
10<a name="installation" /> 10<a name="installation" />
11##Installation 11##Installation
12 12
13<a name="gnu/linux" /> 13<a name="unix" />
14###GNU/Linux: 14###Most Unix like OSes:
15 15
16Build dependencies: 16Build dependencies:
17 17
18Note: package fetching commands may vary by OS.
19
20On Ubuntu:
21
18```bash 22```bash
19sudo apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall check git libswscale-dev libsdl-dev libopenal-dev libopus-dev libvpx-dev yasm 23sudo apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall check git libswscale-dev libsdl-dev libopenal-dev libopus-dev libvpx-dev yasm
20``` 24```
@@ -26,6 +30,17 @@ yum groupinstall "Development Tools"
26yum install libtool autoconf automake libconfig-devel ncurses-devel check check-devel 30yum install libtool autoconf automake libconfig-devel ncurses-devel check check-devel
27``` 31```
28 32
33On SunOS:
34
35```pfexcec
36pkg install autoconf automake gcc-47
37```
38On FreeBSD 10+:
39
40```tcsh
41pkg install automake autoconf
42```
43
29Note that `libconfig-dev` should be >= 1.4. 44Note that `libconfig-dev` should be >= 1.4.
30 45
31You should get and install [libsodium](https://github.com/jedisct1/libsodium): 46You should get and install [libsodium](https://github.com/jedisct1/libsodium):
@@ -241,4 +256,4 @@ Advance configure options:
241 256
242<a name="Clients" /> 257<a name="Clients" />
243####Clients: 258####Clients:
244While [Toxic](https://github.com/tox/toxic) is no longer in core, a list of Tox clients are located in our [wiki](http://wiki.tox.im/client) 259While [Toxic](https://github.com/tox/toxic) is no longer in core, a list of Tox clients are located in our [wiki](http://wiki.tox.im/client) \ No newline at end of file
diff --git a/toxav/toxrtp.h b/toxav/toxrtp.h
index bb40f343..32234ebe 100755
--- a/toxav/toxrtp.h
+++ b/toxav/toxrtp.h
@@ -31,8 +31,10 @@
31 31
32#define MAX_SEQU_NUM 65535 32#define MAX_SEQU_NUM 65535
33 33
34
34/** 35/**
35 * Standard rtp header 36 * @brief Standard rtp header.
37 *
36 */ 38 */
37 39
38typedef struct _RTPHeader { 40typedef struct _RTPHeader {