Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Typo in amalgamation non-x86 builds (CVS 4831) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | a8424e06064ee356db8231820737a7d5 |
User & Date: | mlcreech 2008-03-06 09:19:00 |
Context
2008-03-06
| ||
09:58 | Handle non-autoconf build correctly with new changes (CVS 4832) check-in: e2a9f5f1 user: mlcreech tags: trunk | |
09:19 | Typo in amalgamation non-x86 builds (CVS 4831) check-in: a8424e06 user: mlcreech tags: trunk | |
09:16 | Don't try and include common.h on stand-alone amalgamation builds (CVS 4830) check-in: 9898320b user: mlcreech tags: trunk | |
Changes
Changes to src/sqliteInt.h.
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
** 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. ** ************************************************************************* ** Internal interface definitions for SQLite. ** ** @(#) $Id: sqliteInt.h,v 1.667 2008/03/06 09:16:24 mlcreech Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ /* ** Do not try to include this file when building the amalgamation outside of ** the SQLite source tree. ................................................................................ typedef UINT8_TYPE i8; /* 1-byte signed integer */ /* ** Macros to determine whether the machine is big or little endian, ** evaluated at runtime. */ #ifdef SQLITE_AMALGAMATION const int sqlite3One; #else extern const int sqlite3one; #endif #if defined(i386) || defined(__i386__) || defined(_M_IX86) # define SQLITE_BIGENDIAN 0 # define SQLITE_LITTLEENDIAN 1 # define SQLITE_UTF16NATIVE SQLITE_UTF16LE |
|
|
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
** 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. ** ************************************************************************* ** Internal interface definitions for SQLite. ** ** @(#) $Id: sqliteInt.h,v 1.668 2008/03/06 09:19:00 mlcreech Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ /* ** Do not try to include this file when building the amalgamation outside of ** the SQLite source tree. ................................................................................ typedef UINT8_TYPE i8; /* 1-byte signed integer */ /* ** Macros to determine whether the machine is big or little endian, ** evaluated at runtime. */ #ifdef SQLITE_AMALGAMATION const int sqlite3one; #else extern const int sqlite3one; #endif #if defined(i386) || defined(__i386__) || defined(_M_IX86) # define SQLITE_BIGENDIAN 0 # define SQLITE_LITTLEENDIAN 1 # define SQLITE_UTF16NATIVE SQLITE_UTF16LE |