File: fix-FTBFS-missing-includes.patch

package info (click to toggle)
cclive 0.9.3-0.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,432 kB
  • sloc: sh: 11,339; cpp: 3,198; makefile: 138
file content (48 lines) | stat: -rw-r--r-- 1,251 bytes parent folder | download | duplicates (3)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
Index: cclive-0.9.3/src/cc/error.h
===================================================================
--- cclive-0.9.3.orig/src/cc/error.h
+++ cclive-0.9.3/src/cc/error.h
@@ -29,6 +29,7 @@
 #include <boost/exception/errinfo_errno.hpp>
 #include <boost/tuple/tuple.hpp>
 #include <cerrno>
+#include <iostream>
 
 namespace cc
 {
Index: cclive-0.9.3/src/cc/options.h
===================================================================
--- cclive-0.9.3.orig/src/cc/options.h
+++ cclive-0.9.3/src/cc/options.h
@@ -38,6 +38,7 @@
 #include <boost/foreach.hpp>
 #include <boost/format.hpp>
 #include <fstream>
+#include <iostream>
 
 #include <ccerror>
 #include <ccre>
Index: cclive-0.9.3/src/cc/sig.h
===================================================================
--- cclive-0.9.3.orig/src/cc/sig.h
+++ cclive-0.9.3/src/cc/sig.h
@@ -28,6 +28,7 @@
 #include <unistd.h>
 #include <csignal>
 #include <cstdio>
+#include <iostream>
 
 namespace cc
 {
Index: cclive-0.9.3/src/cc/error.cpp
===================================================================
--- cclive-0.9.3.orig/src/cc/error.cpp
+++ cclive-0.9.3/src/cc/error.cpp
@@ -20,7 +20,6 @@
 
 #include <ccinternal>
 
-#include <iostream>
 #include <climits>
 #include <cstring>
 #include <cerrno>