summaryrefslogtreecommitdiff
path: root/net/kiax/patches
diff options
context:
space:
mode:
authorreinoud <reinoud@pkgsrc.org>2006-07-07 16:50:35 +0000
committerreinoud <reinoud@pkgsrc.org>2006-07-07 16:50:35 +0000
commit55a683367ba97b5bc6faeea2cf24b5ba3f3c2224 (patch)
tree7e7b8033644f2ee649b99d2ea0ca94fcd680fd8a /net/kiax/patches
parente23ddaa146eefa4ba0d2c14bdb964d6d1fb65e78 (diff)
downloadpkgsrc-55a683367ba97b5bc6faeea2cf24b5ba3f3c2224.tar.gz
Update net/kiax to version 0.8.51 fixing the security issue in 0.8.5
From the change log: # Patched security flaw in iaxclient # Patched md5 to work on amd64 (Jasmin Buchert) # Added Malay translation (Mohd Effendi Jaafar)
Diffstat (limited to 'net/kiax/patches')
-rw-r--r--net/kiax/patches/patch-ae10
-rw-r--r--net/kiax/patches/patch-ai8
2 files changed, 9 insertions, 9 deletions
diff --git a/net/kiax/patches/patch-ae b/net/kiax/patches/patch-ae
index 4b523d1ce5c..f1b3f41b98a 100644
--- a/net/kiax/patches/patch-ae
+++ b/net/kiax/patches/patch-ae
@@ -1,6 +1,6 @@
-$NetBSD: patch-ae,v 1.3 2006/04/14 09:56:03 adam Exp $
+$NetBSD: patch-ae,v 1.4 2006/07/07 16:50:35 reinoud Exp $
---- lib/libiax2/src/iax.c.orig 2006-02-05 01:01:33.000000000 +0100
+--- lib/libiax2/src/iax.c.orig 2006-06-08 00:03:53.000000000 +0200
+++ lib/libiax2/src/iax.c
@@ -38,6 +38,7 @@ void gettimeofday(struct timeval *tv, vo
@@ -11,7 +11,7 @@ $NetBSD: patch-ae,v 1.3 2006/04/14 09:56:03 adam Exp $
#include <sys/socket.h>
#include <netinet/in.h>
@@ -62,7 +63,7 @@ void gettimeofday(struct timeval *tv, vo
- #ifndef MACOSX
+ #if !defined(MACOSX) && !defined(__FreeBSD__)
#include <malloc.h>
#ifndef SOLARIS
-#if !defined(__NetBSD__) && !defined(__FreeBSD__)
@@ -23,8 +23,8 @@ $NetBSD: patch-ae,v 1.3 2006/04/14 09:56:03 adam Exp $
#ifdef SOLARIS
#define IAX_SOCKOPTS MSG_DONTWAIT
#else
--#ifdef __NetBSD__
-+#if defined(__NetBSD__) || defined(__DragonFly__)
+-#if defined(__FreeBSD__) || defined(__NetBSD__)
++#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
#define IAX_SOCKOPTS MSG_DONTWAIT
#else /* Linux and others */
#define IAX_SOCKOPTS MSG_DONTWAIT | MSG_NOSIGNAL
diff --git a/net/kiax/patches/patch-ai b/net/kiax/patches/patch-ai
index facc2d7583e..e62bb291b5a 100644
--- a/net/kiax/patches/patch-ai
+++ b/net/kiax/patches/patch-ai
@@ -1,11 +1,11 @@
-$NetBSD: patch-ai,v 1.3 2006/04/14 09:56:03 adam Exp $
+$NetBSD: patch-ai,v 1.4 2006/07/07 16:50:35 reinoud Exp $
---- lib/libiax2/src/md5.c.orig 2006-02-05 01:25:25.000000000 +0100
+--- lib/libiax2/src/md5.c.orig 2006-06-07 23:53:12.000000000 +0200
+++ lib/libiax2/src/md5.c
-@@ -1,7 +1,7 @@
- /* MD5 checksum routines used for authentication. Not covered by GPL, but
+@@ -2,7 +2,7 @@
in the public domain as per the copyright below */
+ #include <stdint.h>
-#if defined(__FreeBSD__) || defined(__NetBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
# include <machine/endian.h>