aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-07-29 17:31:40 +0000
committerdrh <>2021-07-29 17:31:40 +0000
commitb71959cb4e75840e85d71ec90a2c7a05cab4867d (patch)
treef0e93ed178b4ed5f052e8de035c43960bbc7e738 /src/sqliteInt.h
parent02a9996e40dd60a11b614f797550abe2449a7ff9 (diff)
parent5025cb581f4c1949342b491ec8ce4d9dab749b0b (diff)
downloadsqlite-b71959cb4e75840e85d71ec90a2c7a05cab4867d.tar.gz
sqlite-b71959cb4e75840e85d71ec90a2c7a05cab4867d.zip
Improvements to asserts to enforce magic numbers in the wal-index format.
Also improve automatic configure and make builds on legacy PPC iBooks. FossilOrigin-Name: 87b8d47889f1990442aa90398614656658207085d064381074f72bda9bdcbfa5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 651116aa9..25eb9f108 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -861,6 +861,7 @@ typedef INT16_TYPE LogEst;
# define SQLITE_PTRSIZE __SIZEOF_POINTER__
# elif defined(i386) || defined(__i386__) || defined(_M_IX86) || \
defined(_M_ARM) || defined(__arm__) || defined(__x86) || \
+ (defined(__APPLE__) && defined(__POWERPC__)) || \
(defined(__TOS_AIX__) && !defined(__64BIT__))
# define SQLITE_PTRSIZE 4
# else