~ubuntu-branches/ubuntu/hardy/linphone/hardy

« back to all changes in this revision

Viewing changes to debian/patches/missing_headers.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2006-10-11 11:33:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061011113353-mnnkce31bu61g80s
Tags: 1.5.0-1
* New upstream release.
* Removed ice.dpatch and stun_sparc.dpatch, integrated upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh /usr/share/dpatch/dpatch-run
2
 
## missing_headers.dpatch by Samuel Mimram <smimram@debian.org>
3
 
##
4
 
## All lines beginning with `## DP:' are a description of the patch.
5
 
## DP: Include missing header files.
6
 
 
7
 
@DPATCH@
8
 
diff -urNad linphone-1.3.5~/console/commands.c linphone-1.3.5/console/commands.c
9
 
--- linphone-1.3.5~/console/commands.c  2006-03-04 11:17:10.000000000 +0000
10
 
+++ linphone-1.3.5/console/commands.c   2006-05-15 11:04:47.000000000 +0000
11
 
@@ -30,6 +30,7 @@
12
 
 #include <limits.h>
13
 
 #include <ctype.h>
14
 
 #include <unistd.h>
15
 
+#include <readline/readline.h>
16
 
 #include <linphonecore.h>
17
 
 #include "linphonec.h"
18
 
 
19
 
diff -urNad linphone-1.3.5~/console/linphonec.c linphone-1.3.5/console/linphonec.c
20
 
--- linphone-1.3.5~/console/linphonec.c 2006-03-16 17:17:40.000000000 +0000
21
 
+++ linphone-1.3.5/console/linphonec.c  2006-05-15 11:04:30.000000000 +0000
22
 
@@ -31,6 +31,8 @@
23
 
 #include <string.h>
24
 
 #include <signal.h>
25
 
 #include <limits.h>
26
 
+#include <readline/readline.h>
27
 
+#include <readline/history.h>
28
 
 #include <linphonecore.h>
29
 
 #include "linphonec.h"
30
 
 #include "../config.h"
31
 
diff -urNad linphone-1.3.5~/exosip/eXutils.c linphone-1.3.5/exosip/eXutils.c
32
 
--- linphone-1.3.5~/exosip/eXutils.c    2005-09-09 10:47:05.000000000 +0000
33
 
+++ linphone-1.3.5/exosip/eXutils.c     2006-05-15 11:04:11.000000000 +0000
34
 
@@ -218,6 +218,7 @@
35
 
 #include <sys/param.h>
36
 
 
37
 
 #include <stdio.h>
38
 
+#include <errno.h>
39
 
 
40
 
 static int ppl_dns_default_gateway_ipv4 (char *address, int size);
41
 
 static int ppl_dns_default_gateway_ipv6 (char *address, int size);
42
 
diff -urNad linphone-1.3.5~/exosip/jcallback.c linphone-1.3.5/exosip/jcallback.c
43
 
--- linphone-1.3.5~/exosip/jcallback.c  2006-03-08 11:48:57.000000000 +0000
44
 
+++ linphone-1.3.5/exosip/jcallback.c   2006-05-15 11:04:11.000000000 +0000
45
 
@@ -41,6 +41,8 @@
46
 
 #include <sys/types.h>
47
 
 #include <sys/socket.h>
48
 
 #include <netdb.h>
49
 
+
50
 
+#include <errno.h>
51
 
 #endif
52
 
 
53
 
 #include <eXosip.h>
54
 
diff -urNad linphone-1.3.5~/exosip/udp.c linphone-1.3.5/exosip/udp.c
55
 
--- linphone-1.3.5~/exosip/udp.c        2006-02-18 14:40:19.000000000 +0000
56
 
+++ linphone-1.3.5/exosip/udp.c 2006-05-15 11:04:11.000000000 +0000
57
 
@@ -36,9 +36,10 @@
58
 
 #endif
59
 
 #else
60
 
 #include <windows.h>
61
 
-#include <errno.h>
62
 
 #endif
63
 
 
64
 
+#include <errno.h>
65
 
+
66
 
 extern eXosip_t eXosip;
67
 
 
68
 
 /* Private functions */