blob: 3e445337d6b9514496d95f7aed4b9861119b1705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Description: Fix FTBFS with gcc 4.3
Author: Luk Claes <luk@debian.org>
Bug-Debian: https://bugs.debian.org/417779
Last-Update: 2016-03-15
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/libs-external/USI++/src/ip.cc
+++ b/libs-external/USI++/src/ip.cc
@@ -13,6 +13,7 @@
#include "usi++/ip.h"
#include "config.h"
+#include <cstdlib>
#include <iostream>
#include <string.h>
#include <errno.h>
--- a/libs-external/USI++/src/misc.cc
+++ b/libs-external/USI++/src/misc.cc
@@ -1,5 +1,6 @@
#include "usi++/usi++"
#include "usi++/usi-structs.h"
+#include <cstdlib>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
--- a/libs-external/USI++/usi++/tcp.h
+++ b/libs-external/USI++/usi++/tcp.h
@@ -15,6 +15,7 @@
#include "usi-structs.h"
#include "datalink.h"
#include "ip.h"
+#include <cstring>
namespace usipp {
|