1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

pg: fix compilation on macs with clang (libpq installed through brew)

This commit is contained in:
Delyan Angelov 2023-01-12 02:21:00 +02:00
parent 131086b647
commit 49a434e11f

View File

@ -7,6 +7,10 @@ import io
#flag darwin -I/opt/local/include/postgresql11
#flag darwin -I/opt/homebrew/include
#flag darwin -L/opt/homebrew/lib
#flag darwin -I/opt/homebrew/opt/libpq/include
#flag darwin -L/opt/homebrew/opt/libpq/lib
#flag windows -I @VEXEROOT/thirdparty/pg/include
#flag windows -L @VEXEROOT/thirdparty/pg/win64
@ -24,7 +28,7 @@ import io
pub struct DB {
mut:
conn &C.PGconn = unsafe { nil }
conn voidptr = unsafe { nil }
}
pub struct Row {