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

pg: comment out C.CONNECTION_GSS_STARTUP, which is not available on Debian 10 (PG 11)

This commit is contained in:
Delyan Angelov 2022-12-14 16:39:23 +02:00
parent 8e3a90ae79
commit 3b683f11e0
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -61,7 +61,7 @@ pub enum ConnStatusType {
needed = C.CONNECTION_NEEDED // Internal state: connect() needed
check_writable = C.CONNECTION_CHECK_WRITABLE // Check if we could make a writable connection.
consume = C.CONNECTION_CONSUME // Wait for any pending message and consume them.
gss_startup = C.CONNECTION_GSS_STARTUP // Negotiating GSSAPI.
// gss_startup = C.CONNECTION_GSS_STARTUP // Negotiating GSSAPI; available since PG 12
}
[typedef]