diff options
author | drh <> | 2021-07-29 17:23:23 +0000 |
---|---|---|
committer | drh <> | 2021-07-29 17:23:23 +0000 |
commit | 5025cb581f4c1949342b491ec8ce4d9dab749b0b (patch) | |
tree | 31c2330327d12576d08b1f75bc2e84de05be82e9 /src/sqliteInt.h | |
parent | 944d85dfe23b12d7055c0e4452f8b5d99c1906a9 (diff) | |
download | sqlite-5025cb581f4c1949342b491ec8ce4d9dab749b0b.tar.gz sqlite-5025cb581f4c1949342b491ec8ce4d9dab749b0b.zip |
Complete warning-free build on old PPC iBook.
FossilOrigin-Name: ef2a0850394b1c6c1fc84b26694a3712ae1e50d52bb78fea2ec40148a7d833de
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
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 |