SQLite

Check-in [1e0f4869de]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the build for compilation using separate files rather than the amalgamation.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | sha3
Files: files | file ages | folders
SHA3-256: 1e0f4869dedabec03b6eafeffa5ed3e43b70f2ca5b27816bb8a56dba7b5fd94f
User & Date: drh 2019-08-12 15:37:28.352
Context
2019-08-12
15:37
Fix the build for compilation using separate files rather than the amalgamation. (Leaf check-in: 1e0f4869de user: drh tags: sha3)
15:19
Make the sha3 extension part of the amalgamation, enabled using SQLITE_ENABLE_SHA3. (check-in: a48a7b7859 user: drh tags: sha3)
Changes
Unified Diff Ignore Whitespace Patch
Changes to ext/misc/shathree.c.
30
31
32
33
34
35
36
37


38
39
40
41
42
43
44
#if !defined(SQLITEINT_H)
#include "sqlite3ext.h"
#endif
SQLITE_EXTENSION_INIT1
#include <assert.h>
#include <string.h>
#include <stdarg.h>
#ifndef SQLITE_CORE


typedef sqlite3_uint64 u64;
#endif

/******************************************************************************
** The Hash Engine
*/
/*







|
>
>







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#if !defined(SQLITEINT_H)
#include "sqlite3ext.h"
#endif
SQLITE_EXTENSION_INIT1
#include <assert.h>
#include <string.h>
#include <stdarg.h>
#ifdef SQLITE_CORE
#include "sqliteInt.h"
#else
typedef sqlite3_uint64 u64;
#endif

/******************************************************************************
** The Hash Engine
*/
/*