Browse code

fix mingw compile errors

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/seqbias@52629 bc3139a8-67e5-0310-9ffc-ced21a209358

Daniel Jones authored on 12/02/2011 03:53:41
Showing 5 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: seqbias
2
-Version: 0.99.4
2
+Version: 0.99.5
3 3
 Date: 25-12-2010
4 4
 Title: Estimation of per-position bias in high-throughput sequencing data
5 5
 Description: This package implements a model of per-position sequencing bias in
... ...
@@ -12,9 +12,9 @@ generated by GNU Autoconf 2.67.  Invocation command line was
12 12
 
13 13
 hostname = dtp2
14 14
 uname -m = i686
15
-uname -r = 2.6.35-22-generic-pae
15
+uname -r = 2.6.35-25-generic-pae
16 16
 uname -s = Linux
17
-uname -v = #34-Ubuntu SMP Sun Oct 10 11:03:48 UTC 2010
17
+uname -v = #44-Ubuntu SMP Fri Jan 21 19:01:46 UTC 2011
18 18
 
19 19
 /usr/bin/uname -p = unknown
20 20
 /bin/uname -X     = unknown
... ...
@@ -118,7 +118,7 @@ configure:2948: result: yes
118 118
 configure:2948: checking for pow
119 119
 configure:2948: gcc -o conftest -g -O2   conftest.c -lz  >&5
120 120
 conftest.c:35: warning: conflicting types for built-in function 'pow'
121
-/tmp/ccoIQCRB.o: In function `main':
121
+/tmp/ccEJjBMZ.o: In function `main':
122 122
 /home/dcjones/bio/seqbias/conftest.c:46: undefined reference to `pow'
123 123
 collect2: ld returned 1 exit status
124 124
 configure:2948: $? = 1
... ...
@@ -176,7 +176,7 @@ configure:2948: result: no
176 176
 configure:2948: checking for sqrt
177 177
 configure:2948: gcc -o conftest -g -O2   conftest.c -lz  >&5
178 178
 conftest.c:35: warning: conflicting types for built-in function 'sqrt'
179
-/tmp/ccAAPyGF.o: In function `main':
179
+/tmp/ccxSUiW2.o: In function `main':
180 180
 /home/dcjones/bio/seqbias/conftest.c:46: undefined reference to `sqrt'
181 181
 collect2: ld returned 1 exit status
182 182
 configure:2948: $? = 1
... ...
@@ -24,7 +24,7 @@
24 24
      STATIC             Set to 'static' to declare the function static.  */
25 25
 
26 26
 //#if HAVE_FEATURES_H
27
-# include <features.h> /* for __GLIBC__, __UCLIBC__ */
27
+//# include <features.h> [> for __GLIBC__, __UCLIBC__ <]
28 28
 //#endif
29 29
 
30 30
 #include "printf-args.h"
... ...
@@ -54,9 +54,9 @@
54 54
 #ifndef VASNPRINTF
55 55
 /*# include <config.h>*/
56 56
 #endif
57
-#ifndef IN_LIBINTL
58
-# include <alloca.h>
59
-#endif
57
+/*#ifndef IN_LIBINTL*/
58
+/*# include <alloca.h>*/
59
+/*#endif*/
60 60
 
61 61
 /* Specification.  */
62 62
 #ifndef VASNPRINTF
... ...
@@ -30,6 +30,11 @@
30 30
 
31 31
 #include "vasnprintf.h"
32 32
 
33
+#ifndef EOVERFLOW
34
+#define EOVERFLOW 75
35
+#endif
36
+
37
+
33 38
 int
34 39
 vasprintf (char **resultp, const char *format, va_list args)
35 40
 {