diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-22 14:25:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-22 14:25:19 +0000 |
commit | 9a48ca69fcf385d5f7822dfde62243faf19ba6f5 (patch) | |
tree | e1db752d86bcb285990ad19f58af8d150b2fc35e | |
parent | a259f66fa4b8663803b5604917457d32dee90540 (diff) |
Gisle Vanem's fix, mingw as strtoll
-rw-r--r-- | lib/config-win32.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/config-win32.h b/lib/config-win32.h index 6d60735a7..cb6017ae0 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -91,6 +91,11 @@ /* Define if you have the strstr function. */ #define HAVE_STRSTR 1 +/* Define if you have the strtoll function. */ +#ifdef MINGW32 +#define HAVE_STRTOLL 1 +#endif + /* Define if you have the tcgetattr function. */ /*#define HAVE_TCGETATTR 1*/ |