The new patch file fixes the following compiler error.
../../../sqlite-src-3430000/ext/misc/pcachetrace.c:29:8: error: unknown type name 'sqlite3_pcache_methods2'
29 | static sqlite3_pcache_methods2 pcacheBase;
| ^~~~~~~~~~~~~~~~~~~~~~~
11 lines
246 B
Diff
11 lines
246 B
Diff
--- a/ext/misc/pcachetrace.c
|
|
+++ b/ext/misc/pcachetrace.c
|
|
@@ -24,6 +24,7 @@
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
+#include "sqlite3.h"
|
|
|
|
/* The original page cache routines */
|
|
static sqlite3_pcache_methods2 pcacheBase;
|