vcpkg/ports/libpq/vcpkg.json
Kai Pastor 2f56fdad4b
[libpq,libxslt] Update libpq, fix misc issues (#31314)
* [libpq] Install msys2 autoconf-archive

* Install msys2 zic tool

* Fix zstd patching

* Always build as if cross compiling

* Enable feature client for non-windows

* Cleanup (WIP)

* Cleanup (WIP)

* Update portfile.cmake

* WIP

* WIP

* WIP

* WIP

* [libxslt] Fix pc files

* WIP

* WIP: Test libpq[all]

* WIP

* Update to 15.3

* Move patches

* Revert "WIP: Test libpq[all]"

* Fix install

* Skip import libs for plugins

* Full CI
2023-05-31 19:55:03 -07:00

195 lines
4.0 KiB
JSON

{
"name": "libpq",
"version": "15.3",
"description": "The official database access API of postgresql",
"homepage": "https://www.postgresql.org/",
"license": "PostgreSQL",
"supports": "!uwp",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"bonjour"
],
"platform": "osx"
},
{
"name": "vcpkg-cmake-get-vars",
"host": true
},
{
"name": "vcpkg-pkgconfig-get-modules",
"host": true,
"platform": "windows & !mingw"
}
],
"default-features": [
"lz4",
"openssl",
"zlib"
],
"features": {
"all": {
"description": "Build all supported features",
"dependencies": [
{
"name": "libpq",
"features": [
"client",
"icu",
"xml",
"xslt",
"zstd"
]
},
{
"name": "libpq",
"features": [
"bonjour"
],
"platform": "osx"
},
{
"name": "libpq",
"features": [
"nls"
],
"platform": "!osx"
},
{
"name": "libpq",
"features": [
"readline"
],
"platform": "!windows"
},
{
"name": "libpq",
"features": [
"python"
],
"platform": "!android & !mingw"
},
{
"name": "libpq",
"features": [
"tcl"
],
"platform": "windows & !mingw & !arm"
}
]
},
"bonjour": {
"description": "Build with Bonjour support",
"supports": "osx"
},
"client": {
"description": "Build all client tools and libraries"
},
"icu": {
"description": "Build with support for the ICU library",
"dependencies": [
"icu"
]
},
"lz4": {
"description": "Use lz4",
"dependencies": [
"lz4"
]
},
"nls": {
"description": "Native Language Support",
"supports": "!osx",
"dependencies": [
"gettext",
{
"name": "gettext",
"host": true,
"features": [
"tools"
],
"platform": "!windows, mingw"
}
]
},
"openssl": {
"description": "support for encrypted client connections and random number generation on platforms that do not have \"/dev/urandom\" (except windows)",
"dependencies": [
"openssl"
]
},
"python": {
"$supports": "!(windows & (static | mingw))",
"description": "build the PL/Python server programming language",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"python3"
]
},
"readline": {
"description": "Use readline",
"supports": "!windows, mingw",
"dependencies": [
"readline"
]
},
"tcl": {
"$supports": "!(windows & (static | mingw))",
"description": "build the PL/Tcl procedural language",
"supports": "windows & !mingw",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"tcl"
]
},
"xml": {
"description": "Build with libxml",
"dependencies": [
{
"name": "libxml2",
"default-features": false
}
]
},
"xslt": {
"description": "Build with libxslt",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"xml"
]
},
"libxslt"
]
},
"zlib": {
"description": "Use zlib",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Use zstd",
"dependencies": [
"zstd"
]
}
}
}