From 177df99bd7b7ba397069cafa7191a43c0df4c159 Mon Sep 17 00:00:00 2001 From: Martin Wilke Date: Sun, 19 Jan 2014 09:28:21 +0000 Subject: - Fix build with clang PR: 185506 Submitted by: ports fury --- net/netmap/files/patch-netmap__netmap.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 net/netmap/files/patch-netmap__netmap.c (limited to 'net/netmap/files/patch-netmap__netmap.c') diff --git a/net/netmap/files/patch-netmap__netmap.c b/net/netmap/files/patch-netmap__netmap.c new file mode 100644 index 000000000000..488673ef8522 --- /dev/null +++ b/net/netmap/files/patch-netmap__netmap.c @@ -0,0 +1,26 @@ +--- netmap/netmap.c.orig ++++ netmap/netmap.c +@@ -1,4 +1,4 @@ +-#include ++#include + #include + #include + +@@ -18,7 +18,7 @@ + Dbgfile dbgs; + int cdb = 1; + +-static void copy_line(strstream& os, istream& inf) ++static void copy_line(stringstream& os, istream& inf) + { + string result; + +@@ -67,7 +67,7 @@ + int nr_hops = 0; + int invalid_hosts_found = 0; + while(inf && !inf.eof()) { +- strstream line; ++ stringstream line; + copy_line(line, inf); + + if(max_hops && ++nr_hops > max_hops) { -- cgit v1.2.3