aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qtopia/zsafe/zsafe-2.1.3/stream_h.patch
blob: 1f575f452ea134abadd22010170e820699f22d1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Replace legacy header usage to fix compilation

stream.h is no longer provided on modern systems, use iostream instead.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>

--- zsafe-2.1.3-r1.orig/zsafe.h
+++ zsafe-2.1.3-r1/zsafe.h
@@ -16,7 +16,7 @@
 
 #ifndef WIN32
 #ifndef DESKTOP
-#include <stream.h>
+#include <iostream>
 #else
 #include <sstream>
 #endif