Codebase list dssp / b8b4151
Remove unneeded patch Andreas Tille 6 years ago
2 changed file(s) with 0 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
0 thread_include
10 makefile
21 hardening.patch
+0
-23
debian/patches/thread_include less more
0 Description: moving boost thread include out of header that does not use it
1 Patch is not yet forwarded upstream.
2 Author: Laszlo Kajan <lkajan@rostlab.org>
3 --- a/src/utils.h
4 +++ b/src/utils.h
5 @@ -10,7 +10,6 @@
6 #endif
7
8 #include <time.h>
9 -#include <boost/thread.hpp>
10 #include <boost/lexical_cast.hpp>
11 #include <boost/format.hpp>
12 #include <boost/filesystem.hpp>
13 --- a/src/structure.cpp
14 +++ b/src/structure.cpp
15 @@ -18,6 +18,7 @@
16 #define foreach BOOST_FOREACH
17 #include <boost/algorithm/string.hpp>
18 #include <boost/math/special_functions/round.hpp>
19 +#include <boost/thread.hpp>
20
21 #include "align-2d.h"
22 #include "utils.h"