aboutsummaryrefslogtreecommitdiff
path: root/ports/libpq/vcpkg.json
blob: 446b58b2dc31fd5559f1e49c2b585acf96c1f2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
  "name": "libpq",
  "version": "12.2",
  "port-version": 18,
  "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"
      ]
    }
  }
}