mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
config.h updates for Mingw.
This commit is contained in:
parent
e0b8a67d33
commit
b0b6b22347
@ -1,3 +1,9 @@
|
|||||||
|
2009-09-03 Gisle Vanem <giva@bgnett.no>
|
||||||
|
|
||||||
|
* config.h (HAVE_STRING_H): Define for all Windows build
|
||||||
|
platforms.
|
||||||
|
(socklen_t): Define conditionally.
|
||||||
|
|
||||||
2008-09-09 Gisle Vanem <gvanem@broadpark.no>
|
2008-09-09 Gisle Vanem <gvanem@broadpark.no>
|
||||||
|
|
||||||
* config-compiler.h: MingW do have <stdint.h>; added HAVE_STDINT_H.
|
* config-compiler.h: MingW do have <stdint.h>; added HAVE_STDINT_H.
|
||||||
|
@ -91,6 +91,9 @@
|
|||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
/* #undef HAVE_STDINT_H */
|
/* #undef HAVE_STDINT_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#define HAVE_STRING_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the `strcasecmp' function. */
|
/* Define to 1 if you have the `strcasecmp' function. */
|
||||||
/* #undef HAVE_STRCASECMP */
|
/* #undef HAVE_STRCASECMP */
|
||||||
|
|
||||||
@ -204,8 +207,10 @@
|
|||||||
/* Define to `unsigned' if <sys/types.h> does not define. */
|
/* Define to `unsigned' if <sys/types.h> does not define. */
|
||||||
/* #undef size_t */
|
/* #undef size_t */
|
||||||
|
|
||||||
|
#if !defined(_MSC_VER) || (defined(_MSC_VER) && (_MSC_VER < 1500))
|
||||||
/* Define to int or size_t on systems without socklen_t. */
|
/* Define to int or size_t on systems without socklen_t. */
|
||||||
#define socklen_t int
|
#define socklen_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define to empty if the keyword `volatile' does not work. Warning: valid
|
/* Define to empty if the keyword `volatile' does not work. Warning: valid
|
||||||
code using `volatile' can become incorrect without. Disable with care. */
|
code using `volatile' can become incorrect without. Disable with care. */
|
||||||
|
Loading…
Reference in New Issue
Block a user