aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libpq/vcpkg.json
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libpq/vcpkg.json
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/libpq/vcpkg.json')
-rw-r--r--vcpkg/ports/libpq/vcpkg.json194
1 files changed, 194 insertions, 0 deletions
diff --git a/vcpkg/ports/libpq/vcpkg.json b/vcpkg/ports/libpq/vcpkg.json
new file mode 100644
index 0000000..43fc4ef
--- /dev/null
+++ b/vcpkg/ports/libpq/vcpkg.json
@@ -0,0 +1,194 @@
+{
+ "name": "libpq",
+ "version": "16.9",
+ "port-version": 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"
+ },
+ {
+ "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": [
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ "gettext-libintl"
+ ]
+ },
+ "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"
+ ]
+ }
+ }
+}