]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - Configurations/platform/mingw.pm
Unix Makefile generator: separate "simple" shared libraries from import libraries
[thirdparty/openssl.git] / Configurations / platform / mingw.pm
index 7dacb32a31c8642f4686911647077558fb9fd9f8..d525ae8e57dd9d95edd33556c8a25578bc066e55 100644 (file)
@@ -37,10 +37,13 @@ sub sharedname {
                                          ? "-x64" : ""));
 }
 
-# With Mingw and other DLL producers, there isn't really any "simpler"
-# shared library name.  However, there is a static import library, so
-# we return that instead.
+# With Mingw and other DLL producers, there isn't any "simpler" shared
+# library name.  However, there is a static import library.
 sub sharedlib_simple {
+    return undef;
+}
+
+sub sharedlib_import {
     return platform::BASE::__concat(platform::BASE->sharedname($_[1]),
                                     $_[0]->shlibextimport());
 }