vcpkg/ports/libpq/vcpkg.json
Jack·Boos·Yu d36f68e336
[libpq] Fix cmake wrapper on Windows, add usage (#17232)
* [libpq] Fix cmake wrapper on Windows, add usage

* update version record

* Fix macro PostgreSQL_LIBRARIES

* update version record

* Update ports/libpq/vcpkg-cmake-wrapper.cmake

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* Update ports/libpq/vcpkg-cmake-wrapper.cmake

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* Update versions/l-/libpq.json

* Update versions/baseline.json

* Update versions/l-/libpq.json

* Update ports/libpq/vcpkg.json

* Update versions/l-/libpq.json

* Update ports/libpq/vcpkg.json

* Update versions/baseline.json

* Update versions/l-/libpq.json

* Update versions/l-/libpq.json

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
2021-04-30 11:10:51 -07:00

117 lines
2.8 KiB
JSON

{
"name": "libpq",
"version": "12.2",
"port-version": 16,
"description": "The official database access API of postgresql",
"homepage": "https://www.postgresql.org/",
"supports": "!uwp",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"bonjour"
],
"platform": "osx"
}
],
"default-features": [
"openssl",
"zlib"
],
"features": {
"bonjour": {
"description": "Build with Bonjour support (--with-bonjour)"
},
"client": {
"description": "Build all client tools and libraries."
},
"icu": {
"description": "Build with support for the ICU library (--with-icu)",
"dependencies": [
"icu"
]
},
"libedit": {
"description": "prefer libedit (--with-libedit-preferred)",
"dependencies": [
"libedit"
]
},
"llvm": {
"description": "Build with support for LLVM based JIT compilation (--with-llvm)",
"dependencies": [
"llvm"
]
},
"nls": {
"description": "Native Language Support (--enable-nls[=LANGUAGES])",
"dependencies": [
"gettext"
]
},
"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)",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"python3"
]
},
"readline": {
"description": "Use readline (else --without-readline)",
"dependencies": [
"readline"
]
},
"systemd": {
"description": "Build with support for systemd service notifications. (--with-systemd)"
},
"tcl": {
"description": "build the PL/Tcl procedural language(dynamic only?) (--with-tcl)",
"dependencies": [
{
"name": "libpq",
"default-features": false,
"features": [
"client"
]
},
"tcl"
]
},
"uuid": {
"description": "Build the uuid-ossp module (which provides functions to generate UUIDs) (--with-uuid=LIBRARY LIBRARY=(bsd|e2fs|ossp))"
},
"xml": {
"description": "Build with libxml (--with-libxml)",
"dependencies": [
"libxml2"
]
},
"xslt": {
"description": "Build with libxslt (--with-libxslt)",
"dependencies": [
"libxslt"
]
},
"zlib": {
"description": "Use zlib (else --without-zlib)",
"dependencies": [
"zlib"
]
}
}
}