2021-03-20 00:51:52 +08:00
{
"name" : "libpq" ,
2023-03-02 03:04:27 +08:00
"version" : "15.2" ,
2023-04-25 08:32:34 +08:00
"port-version" : 3 ,
2021-03-20 00:51:52 +08:00
"description" : "The official database access API of postgresql" ,
"homepage" : "https://www.postgresql.org/" ,
2022-03-24 07:41:00 +08:00
"license" : "PostgreSQL" ,
2021-03-20 00:51:52 +08:00
"supports" : "!uwp" ,
"dependencies" : [
{
"name" : "libpq" ,
"default-features" : false ,
"features" : [
"bonjour"
] ,
"platform" : "osx"
2022-08-05 10:31:00 +08:00
} ,
{
"name" : "vcpkg-cmake-get-vars" ,
"host" : true
2021-03-20 00:51:52 +08:00
}
] ,
"default-features" : [
2022-03-24 07:41:00 +08:00
"lz4" ,
2021-03-20 00:51:52 +08:00
"openssl" ,
"zlib"
] ,
"features" : {
"bonjour" : {
2022-05-28 08:03:32 +08:00
"description" : "Build with Bonjour support (--with-bonjour)" ,
"supports" : "osx"
2021-03-20 00:51:52 +08:00
} ,
"client" : {
2022-05-28 08:03:32 +08:00
"description" : "Build all client tools and libraries (dynamic only?)" ,
"supports" : "!(windows & !mingw & static)"
2021-03-20 00:51:52 +08:00
} ,
"icu" : {
"description" : "Build with support for the ICU library (--with-icu)" ,
"dependencies" : [
"icu"
]
} ,
2022-03-24 07:41:00 +08:00
"lz4" : {
"description" : "Use lz4 (else --without-lz4)" ,
"dependencies" : [
"lz4"
]
} ,
2021-03-20 00:51:52 +08:00
"nls" : {
"description" : "Native Language Support (--enable-nls[=LANGUAGES])" ,
2023-04-25 08:32:34 +08:00
"supports" : "!osx" ,
2021-03-20 00:51:52 +08:00
"dependencies" : [
2022-03-24 07:41:00 +08:00
"gettext" ,
{
"name" : "gettext" ,
"host" : true ,
"features" : [
"tools"
]
}
2021-03-20 00:51:52 +08:00
]
} ,
"openssl" : {
"description" : "support for encrypted client connections and random number generation on platforms that do not have \"/dev/urandom\" (except windows) (--with-openssl)" ,
"dependencies" : [
"openssl"
]
} ,
"python" : {
"description" : "build the PL/Python server programming language (dynamic only?) (--with-python)" ,
2022-05-28 08:03:32 +08:00
"supports" : "!(windows & (static | mingw))" ,
2021-03-20 00:51:52 +08:00
"dependencies" : [
{
"name" : "libpq" ,
"default-features" : false ,
"features" : [
"client"
]
} ,
"python3"
]
} ,
"readline" : {
"description" : "Use readline (else --without-readline)" ,
2022-05-28 08:03:32 +08:00
"supports" : "!windows, mingw" ,
2021-03-20 00:51:52 +08:00
"dependencies" : [
"readline"
]
} ,
"tcl" : {
"description" : "build the PL/Tcl procedural language(dynamic only?) (--with-tcl)" ,
2022-05-28 08:03:32 +08:00
"supports" : "!(windows & (static | mingw))" ,
2021-03-20 00:51:52 +08:00
"dependencies" : [
{
"name" : "libpq" ,
"default-features" : false ,
"features" : [
"client"
]
} ,
"tcl"
]
} ,
"xml" : {
"description" : "Build with libxml (--with-libxml)" ,
"dependencies" : [
"libxml2"
]
} ,
"xslt" : {
"description" : "Build with libxslt (--with-libxslt)" ,
"dependencies" : [
2022-03-24 07:41:00 +08:00
{
"name" : "libpq" ,
"default-features" : false ,
"features" : [
"xml"
]
} ,
2021-03-20 00:51:52 +08:00
"libxslt"
]
} ,
"zlib" : {
"description" : "Use zlib (else --without-zlib)" ,
"dependencies" : [
"zlib"
]
2023-03-02 03:04:27 +08:00
} ,
"zstd" : {
"description" : "Use zstd (else --without-zstd)" ,
"dependencies" : [
"zstd"
]
2021-03-20 00:51:52 +08:00
}
}
}