Updating siproxd to 0.8.1, and libosip.

This commit is contained in:
Lluís Batlle i Rossell 2013-06-28 23:47:54 +02:00
parent 8b1d65f894
commit 748a0f607b
3 changed files with 21 additions and 6 deletions

View file

@ -0,0 +1,13 @@
diff --git a/src/dejitter.c b/src/dejitter.c
index 1904ab3..cb3624d 100644
--- a/src/dejitter.c
+++ b/src/dejitter.c
@@ -22,6 +22,8 @@
#include <errno.h>
+#include <string.h>
+#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

View file

@ -1,13 +1,15 @@
{ stdenv, fetchurl, libosip }:
stdenv.mkDerivation {
name = "siproxd-0.8.0";
stdenv.mkDerivation rec {
name = "siproxd-0.8.1";
src = fetchurl {
url = mirror://sourceforge/siproxd/siproxd-0.8.0.tar.gz;
sha256 = "0hl51z33cf68ki707jkrrjjc3a5vpaf49gbrsz3g4rfxypdhc0qs";
url = "mirror://sourceforge/siproxd/${name}.tar.gz";
sha256 = "1bcxl0h5nc28m8lcdhpbl5yc93w98xm53mfzrf04knsvmx7z0bfz";
};
patches = [ ./cheaders.patch ];
buildInputs = [ libosip ];
meta = {

View file

@ -1,9 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.6.0";
version = "4.0.0";
src = fetchurl {
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
sha256 = "1kcndqvsyxgbhkksgydvvjw15znfq6jiznvw058d21h5fq68p8f9";
sha256 = "05dhj4s5k4qmhn2amca070xgh1gkcl42n040fhwsn3vm86524bdv";
};
name = "libosip2-${version}";