mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:51:39 +08:00
3492464c1c
* Update to 3.1.15 * Modernize portfile * Keep plugins * Always use vcpkg zlib instead vendored copy * Use zlib and openssl modules in pc file * Always install pc file, drop non-relocatable mariadb_config * UWP is not supported * Use schannel SSL backend on windows * Fix exported includedir and libdir * Fixup windows pc file * Disable extra static lib * Disable plugins with extra dependencies * [libmariadb] Namespace targets with unofficial:: * Update versions * Enable CI for x86-windows: no conflict with mysql * Re-enable lib mariadbclient via feature * Use openssl targets to handle multi-config * Update versions * CR request * Update versions
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "libmariadb",
|
|
"version-semver": "3.1.15",
|
|
"description": "MariaDB Connector/C is used to connect C/C++ applications to MariaDB and MySQL databases",
|
|
"homepage": "https://github.com/MariaDB/mariadb-connector-c",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"default-features": [
|
|
"ssl"
|
|
],
|
|
"features": {
|
|
"iconv": {
|
|
"description": "Enables character set conversion",
|
|
"dependencies": [
|
|
"libiconv"
|
|
]
|
|
},
|
|
"mariadbclient": {
|
|
"description": "Build the static mariadbclient library"
|
|
},
|
|
"openssl": {
|
|
"description": "SSL support (OpenSSL)",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"schannel": {
|
|
"description": "SSL support (Secure Channel)"
|
|
},
|
|
"ssl": {
|
|
"description": "Default SSL backend",
|
|
"dependencies": [
|
|
{
|
|
"name": "libmariadb",
|
|
"default-features": false,
|
|
"features": [
|
|
"schannel"
|
|
],
|
|
"platform": "windows | mingw"
|
|
},
|
|
{
|
|
"name": "libmariadb",
|
|
"default-features": false,
|
|
"features": [
|
|
"openssl"
|
|
],
|
|
"platform": "!windows & !mingw"
|
|
}
|
|
]
|
|
},
|
|
"zlib": {
|
|
"description": "Obsolete. zlib is always used. This feature is left for compatibility."
|
|
}
|
|
}
|
|
}
|