diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/sqlite3/add-config-include.patch | |
Diffstat (limited to 'vcpkg/ports/sqlite3/add-config-include.patch')
| -rw-r--r-- | vcpkg/ports/sqlite3/add-config-include.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vcpkg/ports/sqlite3/add-config-include.patch b/vcpkg/ports/sqlite3/add-config-include.patch new file mode 100644 index 0000000..1b9183d --- /dev/null +++ b/vcpkg/ports/sqlite3/add-config-include.patch @@ -0,0 +1,24 @@ +diff --git a/sqlite3.c b/sqlite3.c +index 80433f6..cfd213b 100644 +--- a/sqlite3.c ++++ b/sqlite3.c +@@ -25,6 +25,7 @@ + #ifndef SQLITE_AMALGAMATION + #define SQLITE_CORE 1 + #define SQLITE_AMALGAMATION 1 ++#include "sqlite3-vcpkg-config.h" + #ifndef SQLITE_PRIVATE + # define SQLITE_PRIVATE static + #endif +diff --git a/sqlite3.h b/sqlite3.h +index 4ed8428..f1cf6d4 100644 +--- a/sqlite3.h ++++ b/sqlite3.h +@@ -32,6 +32,7 @@ + */ + #ifndef SQLITE3_H + #define SQLITE3_H ++#include "sqlite3-vcpkg-config.h" + #include <stdarg.h> /* Needed for the definition of va_list */ + + /* |