File: config.h

package info (click to toggle)
sqlite3 3.5.9-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 11,520 kB
  • ctags: 7,648
  • sloc: ansic: 82,579; tcl: 21,877; sh: 8,440; makefile: 960; yacc: 832; awk: 208
file content (99 lines) | stat: -rw-r--r-- 2,368 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* config.h.  Generated from config.h.in by configure.  */
/*
** 2008 March 6
**
** The author disclaims copyright to this source code.  In place of
** a legal notice, here is a blessing:
**
**    May you do good and not evil.
**    May you find forgiveness for yourself and forgive others.
**    May you share freely, never taking more than you give.
**
*************************************************************************
** Configuration header template to be filled in by 'configure' script
**
** @(#) $Id: config.h.in,v 1.2 2008/05/06 02:28:06 mlcreech Exp $
*/
#ifndef _CONFIG_H_
#define _CONFIG_H_


/*****************************
** Data types
*****************************/

/* Define as 1 if you have the int8_t type */
#define HAVE_INT8_T 1

/* Define as 1 if you have the int16_t type */
#define HAVE_INT16_T 1

/* Define as 1 if you have the int32_t type */
#define HAVE_INT32_T 1

/* Define as 1 if you have the int64_t type */
#define HAVE_INT64_T 1

/* Define as 1 if you have the intptr_t type */
#define HAVE_INTPTR_T 1

/* Define as 1 if you have the uint8_t type */
#define HAVE_UINT8_T 1

/* Define as 1 if you have the uint16_t type */
#define HAVE_UINT16_T 1

/* Define as 1 if you have the uint32_t type */
#define HAVE_UINT32_T 1

/* Define as 1 if you have the uint64_t type */
#define HAVE_UINT64_T 1

/* Define as 1 if you have the uintptr_t type */
#define HAVE_UINTPTR_T 1


/*****************************
** Header Files
*****************************/

/* Define as 1 if you have the sys/types.h header */
#define HAVE_SYS_TYPES_H 1

/* Define as 1 if you have the stdlib.h header */
#define HAVE_STDLIB_H 1

/* Define as 1 if you have the stdint.h header */
#define HAVE_STDINT_H 1

/* Define as 1 if you have the inttypes.h header */
#define HAVE_INTTYPES_H 1


/*****************************
** Functions
*****************************/

/* Define as 1 if you have the usleep() function */
#define HAVE_USLEEP 1

/* Define as 1 if you have the fdatasync() function */
#define HAVE_FDATASYNC 1

/* Define as 1 if you have the gmtime_r() function */
#define HAVE_GMTIME_R 1

/* Define as 1 if you have the localtime_r() function */
#define HAVE_LOCALTIME_R 1


/*****************************
** Large file support
*****************************/

/* #undef _FILE_OFFSET_BITS */
/* #undef _LARGE_FILES */


/* End of header */
#endif