]> sjero.net Git - wget/commitdiff
HAVE_STDINT_H, SIZEOF_LONG_LONG.
authorGisle Vanem <gvanem@broadpark.no>
Tue, 9 Sep 2008 16:29:50 +0000 (09:29 -0700)
committerGisle Vanem <gvanem@broadpark.no>
Tue, 9 Sep 2008 16:29:50 +0000 (09:29 -0700)
windows/ChangeLog
windows/config-compiler.h
windows/config.h

index 8890265ac89b72b96948d610d03c1054cd9b291f..fd8d815752ea478b5f5c47d9f661ff144dfc7bd7 100644 (file)
@@ -1,3 +1,11 @@
+2008-09-09  Gisle Vanem  <gvanem@broadpark.no>
+
+       * config-compiler.h: MingW do have <stdint.h>; added HAVE_STDINT_H.
+       Added _CRT_SECURE_NO_WARNINGS to supress warnings in MSVC8+ about
+       using "old" ANSI-functions.
+
+       * config.h: config-post.h is gone. SIZEOF_LONG_LONG is 8.
+
 2008-01-25  Micah Cowan  <micah@cowan.name>
 
        * Makefile.am, Makefile.doc, Makefile.src, Makefile.top,
index 3ee0e638820657d7fb477d49c3abf6bc56653a44..a71fb42996bf6571d724c8d37fc6a1ece207753a 100644 (file)
@@ -83,6 +83,7 @@ as that of the covered work.  */
 
 /* MinGW and GCC support some POSIX and C99 features.  */
 #define HAVE_INTTYPES_H 1
+#define HAVE_STDINT_H 1
 
 #define HAVE__BOOL 1
 #undef SIZEOF_LONG_LONG                /* avoid redefinition warning */
@@ -128,6 +129,7 @@ as that of the covered work.  */
 #if _MSC_VER >= 1400
 #pragma warning ( disable : 4996 )
 #define _CRT_SECURE_NO_DEPRECATE
+#define _CRT_SECURE_NO_WARNINGS
 #endif
 
 \f
index 9736b1963f5fa3bc677ad243a3e535a2925f732f..20aa77241536b49cd956b3bd4db553b8331b2f14 100644 (file)
 #define SIZEOF_LONG 4
 
 /* The size of a `long long', as computed by sizeof. */
-#define SIZEOF_LONG_LONG 0
+#define SIZEOF_LONG_LONG 8
 
 /* The size of a `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
 /* Include compiler-specific defines. */
 #include "config-compiler.h"
 
-#include "config-post.h"
-