File: 10_gcc4.3.patch

package info (click to toggle)
tigr-glimmer 3.02b-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,948 kB
  • sloc: cpp: 24,416; awk: 232; csh: 220; makefile: 147; sh: 51
file content (175 lines) | stat: -rw-r--r-- 3,440 bytes parent folder | download | duplicates (5)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
Author: Kumar Appaiah
Description: Fix #461691

--- a/src/Common/delcher.cc
+++ b/src/Common/delcher.cc
@@ -9,6 +9,7 @@
 
 #include  "delcher.hh"
 
+#include <cstring>
 
 const int  COMMATIZE_BUFF_LEN = 50;
   // Length of buffer for creating string with commas
--- a/src/Common/fasta.cc
+++ b/src/Common/fasta.cc
@@ -9,7 +9,7 @@
 
 #include  "fasta.hh"
 
-
+#include <cstring>
 
 void  Fasta_Print
     (FILE * fp, const char * s, const char * hdr, int fasta_width)
--- a/src/Common/gene.cc
+++ b/src/Common/gene.cc
@@ -10,6 +10,7 @@
 #include "delcher.hh"
 #include "gene.hh"
 
+#include <cstring>
 
 static const char  COMPLEMENT_TABLE []
     = "nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn"
--- a/src/Glimmer/anomaly.cc
+++ b/src/Glimmer/anomaly.cc
@@ -12,6 +12,7 @@
 
 #include  "anomaly.hh"
 
+#include <cstring>
 
 // Global variables
 
--- a/src/ICM/icm.cc
+++ b/src/ICM/icm.cc
@@ -15,6 +15,8 @@
 
 #include  "icm.hh"
 
+#include <cstring>
+
 using namespace std;
 
 extern int  Verbose;
--- a/src/Util/entropy-score.cc
+++ b/src/Util/entropy-score.cc
@@ -9,7 +9,7 @@
 //  regions in it by entropy distance.  Results are output
 //  to  stdout .
 
-
+#include <cstring>
 
 #include  "entropy-score.hh"
 
--- a/src/Glimmer/glimmer3.cc
+++ b/src/Glimmer/glimmer3.cc
@@ -12,11 +12,10 @@
 //  Copyright (c) 2006 University of Maryland Center for Bioinformatics
 //  & Computational Biology
 
-
+#include <cstring>
 
 #include  "glimmer3.hh"
 
-
 static int  For_Edwin = 0;
 
 
--- a/src/ICM/build-icm.cc
+++ b/src/ICM/build-icm.cc
@@ -13,6 +13,7 @@
 
 #include  "build-icm.hh"
 
+#include <cstring>
 
 static int  Genbank_Xlate_Code = 0;
   // Holds the Genbank translation table number that determines
--- a/src/Util/extract.cc
+++ b/src/Util/extract.cc
@@ -9,7 +9,7 @@
 //  sequences specified by coordinates.  The resulting sequences
 //  are output (in multifasta or two-string format) to stdout.
 
-
+#include <cstring>
 
 #include  "extract.hh"
 
--- a/src/Glimmer/glimmer2.cc
+++ b/src/Glimmer/glimmer2.cc
@@ -37,6 +37,7 @@
 #include  "delcher.h"
 #include  "gene.h"
 
+#include <cstring>
 
 const int  DEFAULT_MIN_GENE_LEN = 90;
 const double  DEFAULT_MIN_OLAP_PERCENT = 0.10;
--- a/src/Glimmer/long-orfs.cc
+++ b/src/Glimmer/long-orfs.cc
@@ -15,7 +15,7 @@
 
 #include  "long-orfs.hh"
 
-
+#include <cstring>
 
 // External variables
 
--- a/src/ICM/build-fixed.cc
+++ b/src/ICM/build-fixed.cc
@@ -12,6 +12,7 @@
 
 #include  "build-fixed.hh"
 
+#include <cstring>
 
 static FILE  * Index_File_fp = NULL;
   // File containing a list of subscripts of strings to train model
--- a/src/ICM/score-fixed.cc
+++ b/src/ICM/score-fixed.cc
@@ -8,6 +8,7 @@
 
 #include  "score-fixed.hh"
 
+#include <cstring>
 
 static char  * Pos_Model_Path;
   // Name of file containing the positive model
--- a/src/Util/multi-extract.cc
+++ b/src/Util/multi-extract.cc
@@ -10,7 +10,7 @@
 //  resulting sequences are output (in multifasta or two-string format)
 //  to stdout.
 
-
+#include <cstring>
 
 #include  "multi-extract.hh"
 
--- a/src/Util/start-codon-distrib.cc
+++ b/src/Util/start-codon-distrib.cc
@@ -17,6 +17,7 @@
 
 #include  "start-codon-distrib.hh"
 
+#include <cstring>
 
 // External variables
 
--- a/src/Util/uncovered.cc
+++ b/src/Util/uncovered.cc
@@ -10,7 +10,7 @@
 //  specified in the file named as the second command-line argument.
 //  Output is a multifasta file sent to stdout.
 
-
+#include <cstring>
 
 #include  "uncovered.hh"