Warning, /graphics/krita/3rdparty/ext_qt/windeployqt-force-allow-debug-info.patch is written in an unsupported language. File is not indexed.

0001 diff --git a/src/shared/winutils/utils.cpp b/src/shared/winutils/utils.cpp
0002 index 00a20543..6467dee8 100644
0003 --- a/src/shared/winutils/utils.cpp
0004 +++ b/src/shared/winutils/utils.cpp
0005 @@ -126,6 +126,7 @@ QStringList findSharedLibraries(const QDir &directory, Platform platform,
0006              if (readPeExecutable(dllPath, &errorMessage, 0, 0, &debugDll,
0007                                   (platform == WindowsDesktopMinGW))) {
0008                  matches = debugDll == (debugMatchMode == MatchDebug);
0009 +                matches = true;
0010              } else {
0011                  std::wcerr << "Warning: Unable to read " << QDir::toNativeSeparators(dllPath)
0012                             << ": " << errorMessage;
0013 @@ -826,6 +827,7 @@ inline void determineDebugAndDependentLibs(const ImageNtHeader *nth, const void
0014          if (isMinGW) {
0015              // Use logic that's used e.g. in objdump / pfd library
0016              *isDebugIn = !(nth->FileHeader.Characteristics & IMAGE_FILE_DEBUG_STRIPPED);
0017 +            *isDebugIn = false;
0018          } else {
0019              // When an MSVC debug entry is present, check whether the debug runtime
0020              // is actually used to detect -release / -force-debug-info builds.