blob: 86b048e03b62aa9d997f14b1149b2125c79897cb (
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
|
From 20bac6d6419bae95fdad1734e48302e7545dd7c5 Mon Sep 17 00:00:00 2001
From: Peter Alfredsen <loki_val@gentoo.org>
Date: Thu, 22 Jan 2009 13:25:56 +0100
Subject: [PATCH 03/10] Fix compilation of xmlrpc_pstream with gcc-4.3+
---
tools/xmlrpc_pstream/xmlrpc_pstream.cpp | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/tools/xmlrpc_pstream/xmlrpc_pstream.cpp b/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
index 399e1b3..df4ef56 100644
--- a/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
+++ b/tools/xmlrpc_pstream/xmlrpc_pstream.cpp
@@ -3,11 +3,12 @@
#include <string>
#include <vector>
#include <list>
-#include <string.h>
-#include <stdio.h>
-#include <stdlib.h>
+#include <cstring>
+#include <cstdio>
+#include <cstdlib>
#include <unistd.h>
#include <signal.h>
+#include <iostream>
#include <readline/readline.h>
#include "cmdline_parser.hpp"
--
1.6.1
|