mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 08:27:11 +08:00
440075a9fc
* update to 14.1 * adjust patches * add lz4 feature on !windows * version stuff * [skip actions] patch configure.ac and run autoreconf * fix some stuff * [skip actions] more details * [libpq] Add license filed to vcpkg json * [libpq] Adjust tcl version to 90g 90s and 90sg * [libpq] fail early from unsupported features * [libpq] lake xslt dependent from xml * [libpq] Update version database * [libpq] quote static * [libpq] Update Version Database Co-authored-by: Alexander Neumann <Alexander.Neumann@hamburg.de>
138 lines
3.2 KiB
JSON
138 lines
3.2 KiB
JSON
{
|
|
"name": "libpq",
|
|
"version": "14.1",
|
|
"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"
|
|
}
|
|
],
|
|
"default-features": [
|
|
"lz4",
|
|
"openssl",
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"bonjour": {
|
|
"description": "Build with Bonjour support (--with-bonjour)"
|
|
},
|
|
"client": {
|
|
"description": "Build all client tools and libraries (dynamic only?)"
|
|
},
|
|
"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"
|
|
]
|
|
},
|
|
"lz4": {
|
|
"description": "Use lz4 (else --without-lz4)",
|
|
"dependencies": [
|
|
"lz4"
|
|
]
|
|
},
|
|
"nls": {
|
|
"description": "Native Language Support (--enable-nls[=LANGUAGES])",
|
|
"dependencies": [
|
|
"gettext",
|
|
{
|
|
"name": "gettext",
|
|
"host": true,
|
|
"features": [
|
|
"tools"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"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": [
|
|
{
|
|
"name": "libpq",
|
|
"default-features": false,
|
|
"features": [
|
|
"xml"
|
|
]
|
|
},
|
|
"libxslt"
|
|
]
|
|
},
|
|
"zlib": {
|
|
"description": "Use zlib (else --without-zlib)",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
}
|
|
}
|
|
}
|