Merge pull request #84 from jingjingxyk/pgsql

添加pgsql 库
This commit is contained in:
Jerry Ma
2023-07-22 16:19:43 +08:00
committed by GitHub
7 changed files with 137 additions and 4 deletions

View File

@@ -211,12 +211,19 @@
},
"pdo_pgsql": {
"type": "builtin",
"arg-type": "with",
"arg-type": "with-prefix",
"ext-depends": [
"pdo"
],
"lib-depends": [
"pq"
"postgresql"
]
},
"pgsql": {
"type": "builtin",
"arg-type": "with-prefix",
"lib-depends": [
"postgresql"
]
},
"pdo_sqlite": {

View File

@@ -381,7 +381,16 @@
"postgresql": {
"source": "postgresql",
"static-libs-unix": [
"libpg.a"
"libpq.a",
"libpgport.a",
"libpgcommon.a"
],
"lib-depends": [
"libiconv",
"libxml2",
"openssl",
"zlib",
"readline"
]
},
"pthreads4w": {

View File

@@ -318,7 +318,8 @@
}
},
"postgresql": {
"type": "custom",
"type": "url",
"url": "https://ftp.postgresql.org/pub/source/v15.1/postgresql-15.1.tar.gz",
"license": {
"type": "file",
"path": "COPYRIGHT"