mirror of
https://github.com/curl/curl.git
synced 2025-01-30 14:22:33 +08:00
config-win32.h: Updated for VC12
Bug: http://curl.haxx.se/bug/view.cgi?id=1378 Reported and Patched-by: Marcel Raad
This commit is contained in:
parent
5468a2122c
commit
65467cf9cb
@ -53,6 +53,11 @@
|
|||||||
#define HAVE_GETOPT_H 1
|
#define HAVE_GETOPT_H 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
|
||||||
|
#define HAVE_INTTYPES_H 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define if you have the <io.h> header file. */
|
/* Define if you have the <io.h> header file. */
|
||||||
#define HAVE_IO_H 1
|
#define HAVE_IO_H 1
|
||||||
|
|
||||||
@ -87,6 +92,11 @@
|
|||||||
/* Define if you have the <ssl.h> header file. */
|
/* Define if you have the <ssl.h> header file. */
|
||||||
/* #define HAVE_SSL_H 1 */
|
/* #define HAVE_SSL_H 1 */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdbool.h> header file. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
|
||||||
|
#define HAVE_STDBOOL_H 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define if you have the <stdlib.h> header file. */
|
/* Define if you have the <stdlib.h> header file. */
|
||||||
#define HAVE_STDLIB_H 1
|
#define HAVE_STDLIB_H 1
|
||||||
|
|
||||||
@ -160,6 +170,11 @@
|
|||||||
/* Define if you can safely include both <sys/time.h> and <time.h>. */
|
/* Define if you can safely include both <sys/time.h> and <time.h>. */
|
||||||
/* #define TIME_WITH_SYS_TIME 1 */
|
/* #define TIME_WITH_SYS_TIME 1 */
|
||||||
|
|
||||||
|
/* Define to 1 if bool is an available type. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
|
||||||
|
#define HAVE_BOOL_T 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
/* FUNCTIONS */
|
/* FUNCTIONS */
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
@ -250,7 +265,8 @@
|
|||||||
#define HAVE_STRSTR 1
|
#define HAVE_STRSTR 1
|
||||||
|
|
||||||
/* Define if you have the strtoll function. */
|
/* Define if you have the strtoll function. */
|
||||||
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__POCC__)
|
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__POCC__) || \
|
||||||
|
(defined(_MSC_VER) && (_MSC_VER >= 1800))
|
||||||
#define HAVE_STRTOLL 1
|
#define HAVE_STRTOLL 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user