29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
From 17c7257e54c00ea2121f2cf95fb2be5e5db6b4ad Mon Sep 17 00:00:00 2001
|
|
From: Thomas Tuegel <ttuegel@gmail.com>
|
|
Date: Mon, 1 Dec 2014 17:31:03 -0600
|
|
Subject: [PATCH] dlopen-serialport-udev
|
|
|
|
---
|
|
qtserialport/src/serialport/qtudev_p.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/qtserialport/src/serialport/qtudev_p.h b/qtserialport/src/serialport/qtudev_p.h
|
|
index 09940ab..45460f9 100644
|
|
--- a/qtserialport/src/serialport/qtudev_p.h
|
|
+++ b/qtserialport/src/serialport/qtudev_p.h
|
|
@@ -119,9 +119,9 @@ inline void *resolveSymbol(QLibrary *udevLibrary, const char *symbolName)
|
|
inline bool resolveSymbols(QLibrary *udevLibrary)
|
|
{
|
|
if (!udevLibrary->isLoaded()) {
|
|
- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1);
|
|
+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 1);
|
|
if (!udevLibrary->load()) {
|
|
- udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0);
|
|
+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 0);
|
|
if (!udevLibrary->load()) {
|
|
qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0);
|
|
return false;
|
|
--
|
|
2.1.3
|
|
|