diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-03-14 02:56:49 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-03-14 02:56:49 -0700 |
| commit | 7eae9c153e4622802a7c2c8b318f68692f35890f (patch) | |
| tree | 54483b22ba9c14ebd27a0d2dfa993f8db7375772 | |
| parent | 94360c2c65c6b38844ee75890d2be4632cdb4514 (diff) | |
| download | vcpkg-7eae9c153e4622802a7c2c8b318f68692f35890f.tar.gz vcpkg-7eae9c153e4622802a7c2c8b318f68692f35890f.zip | |
[libmysql] Clarify support message
| -rw-r--r-- | ports/libmysql/portfile.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/libmysql/portfile.cmake b/ports/libmysql/portfile.cmake index d3a7a569d..6c60d0ccc 100644 --- a/ports/libmysql/portfile.cmake +++ b/ports/libmysql/portfile.cmake @@ -6,8 +6,8 @@ if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") message(FATAL_ERROR "libmysql cannot currently be cross-compiled for UWP") endif() -if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86") - message(FATAL_ERROR "32-bit builds are not supported by libmysql.") +if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" AND NOT CMAKE_SYSTEM_NAME OR CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") + message(FATAL_ERROR "Oracle has dropped support in libmysql for 32-bit Windows.") endif() include(vcpkg_common_functions) |
