MinGW: Update find_library to not find plain .dll files

Modern distributions of packages built with MinGW tools provide `.dll.a`
import libraries.  Prefer those instead of finding plain `.dll` files.
This avoids accidentally finding unrelated Windows `.dll` files.

Fixes: #20019
This commit is contained in:
Brad King
2020-01-20 13:31:01 -05:00
parent 941c09616b
commit afbbfe5109
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
mingw-find-no-dll
-----------------
* When using MinGW tools, the :command:`find_library` command no longer
finds ``.dll`` files by default. Instead it expects ``.dll.a`` import
libraries to be available.