22b10bac78
Qt 5.8 is immediately removed because its support window is ended. The qtlocation module is built with `enableParallelBuilding = false` so that the clipper library will be built before the components which link to it. kjs now depends directly on pcre. The dependency was previously propagated from qtbase, which now depends on pcre2.
23 lines
1.0 KiB
Diff
23 lines
1.0 KiB
Diff
Index: qtserialport-opensource-src-5.8.0/src/serialport/qtudev_p.h
|
|
===================================================================
|
|
--- qtserialport-opensource-src-5.8.0.orig/src/serialport/qtudev_p.h
|
|
+++ qtserialport-opensource-src-5.8.0/src/serialport/qtudev_p.h
|
|
@@ -111,9 +111,17 @@ inline QFunctionPointer resolveSymbol(QL
|
|
inline bool resolveSymbols(QLibrary *udevLibrary)
|
|
{
|
|
if (!udevLibrary->isLoaded()) {
|
|
+#ifdef NIXPKGS_LIBUDEV
|
|
+ udevLibrary->setFileNameAndVersion(QLatin1String(NIXPKGS_LIBUDEV), 1);
|
|
+#else
|
|
udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1);
|
|
+#endif
|
|
if (!udevLibrary->load()) {
|
|
+#ifdef NIXPKGS_LIBUDEV
|
|
+ udevLibrary->setFileNameAndVersion(QLatin1String(NIXPKGS_LIBUDEV), 0);
|
|
+#else
|
|
udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0);
|
|
+#endif
|
|
if (!udevLibrary->load()) {
|
|
qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0);
|
|
return false;
|