Skip to content

Commit ab33bb2

Browse files
vkuttypCopilot
andcommitted
fix: use full path /usr/include/sqlite3.h in CSQLite module map
Bare 'sqlite3.h' requires pkg-config to resolve the include path. Using the absolute path works reliably on Linux after libsqlite3-dev is installed, without depending on pkg-config being configured. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a6ce650 commit ab33bb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/CSQLite/module.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module CSQLite [system] {
2-
header "sqlite3.h"
2+
header "/usr/include/sqlite3.h"
33
link "sqlite3"
44
export *
55
}

0 commit comments

Comments
 (0)