Small fix

This commit is contained in:
mannol 2014-01-26 21:02:11 +01:00
parent 142340aa63
commit 88f97078a2
2 changed files with 22 additions and 5 deletions

View File

@ -1,7 +1,7 @@
#Install Instructions #Install Instructions
- [Installation](#installation) - [Installation](#installation)
- [GNU/Linux](#gnu/linux) - [Unix like](#unix)
- [OS X](#osx) - [OS X](#osx)
- [Homebrew](#homebrew) - [Homebrew](#homebrew)
- [Non-Homebrew](#non-homebrew) - [Non-Homebrew](#non-homebrew)
@ -10,11 +10,15 @@
<a name="installation" /> <a name="installation" />
##Installation ##Installation
<a name="gnu/linux" /> <a name="unix" />
###GNU/Linux: ###Most Unix like OSes:
Build dependencies: Build dependencies:
Note: package fetching commands may vary by OS.
On Ubuntu:
```bash ```bash
sudo 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 sudo 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
``` ```
@ -26,6 +30,17 @@ yum groupinstall "Development Tools"
yum install libtool autoconf automake libconfig-devel ncurses-devel check check-devel yum install libtool autoconf automake libconfig-devel ncurses-devel check check-devel
``` ```
On SunOS:
```pfexcec
pkg install autoconf automake gcc-47
```
On FreeBSD 10+:
```tcsh
pkg install automake autoconf
```
Note that `libconfig-dev` should be >= 1.4. Note that `libconfig-dev` should be >= 1.4.
You should get and install [libsodium](https://github.com/jedisct1/libsodium): You should get and install [libsodium](https://github.com/jedisct1/libsodium):
@ -241,4 +256,4 @@ Advance configure options:
<a name="Clients" /> <a name="Clients" />
####Clients: ####Clients:
While [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) While [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)

View File

@ -31,8 +31,10 @@
#define MAX_SEQU_NUM 65535 #define MAX_SEQU_NUM 65535
/** /**
* Standard rtp header * @brief Standard rtp header.
*
*/ */
typedef struct _RTPHeader { typedef struct _RTPHeader {