1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

HAVE_STDINT_H, SIZEOF_LONG_LONG.

This commit is contained in:
Gisle Vanem 2008-09-09 09:29:50 -07:00
parent 8216f0acc5
commit 3516195389
3 changed files with 11 additions and 3 deletions

View 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,

View 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

View File

@ -158,7 +158,7 @@
#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
@ -214,5 +214,3 @@
/* Include compiler-specific defines. */
#include "config-compiler.h"
#include "config-post.h"