23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
*/
#define _LARGE_FILE 1
#ifndef _FILE_OFFSET_BITS
# define _FILE_OFFSET_BITS 64
#endif
#define _LARGEFILE_SOURCE 1
/* Make sure that in 64-bit builds, _USE_32BIT_TIME_T is NEVER defined. */
#ifdef _WIN64
# undef _USE_32BIT_TIME_T
#endif
#ifdef HAVE_AUTOCONFIG_H
#include "autoconfig.h"
#endif
#ifndef _RC_COMPILE_
|
|
|
|
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
*/
#define _LARGE_FILE 1
#ifndef _FILE_OFFSET_BITS
# define _FILE_OFFSET_BITS 64
#endif
#define _LARGEFILE_SOURCE 1
/* Make sure that in Win32 builds, _USE_32BIT_TIME_T is always defined. */
#if defined(_WIN32) && !defined(_WIN64)
# define _USE_32BIT_TIME_T
#endif
#ifdef HAVE_AUTOCONFIG_H
#include "autoconfig.h"
#endif
#ifndef _RC_COMPILE_
|
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# elif defined(__GNUC__)
# define COMPILER_NAME "gcc-" __VERSION__
# else
# define COMPILER_NAME "unknown"
# endif
#endif
#ifndef _RC_COMPILE_
#include "sqlite3.h"
/*
** On Solaris, getpass() will only return up to 8 characters. getpassphrase() returns up to 257.
*/
#if HAVE_GETPASSPHRASE
|
|
|
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# elif defined(__GNUC__)
# define COMPILER_NAME "gcc-" __VERSION__
# else
# define COMPILER_NAME "unknown"
# endif
#endif
#if !defined(_RC_COMPILE_) && !defined(SQLITE_AMALGAMATION)
#include "sqlite3.h"
/*
** On Solaris, getpass() will only return up to 8 characters. getpassphrase() returns up to 257.
*/
#if HAVE_GETPASSPHRASE
|