mirror of https://github.com/xzeldon/htop.git
Merge branch 'fix-dlopen-libsensors-debian' of fasterit/htop
This commit is contained in:
commit
f8a610e6e1
|
@ -21,9 +21,13 @@ static void* dlopenHandle = NULL;
|
||||||
|
|
||||||
int LibSensors_init(FILE* input) {
|
int LibSensors_init(FILE* input) {
|
||||||
if (!dlopenHandle) {
|
if (!dlopenHandle) {
|
||||||
dlopenHandle = dlopen("libsensors.so", RTLD_LAZY);
|
dlopenHandle = dlopen("libsensors.so.", RTLD_LAZY);
|
||||||
if (!dlopenHandle)
|
if (!dlopenHandle) {
|
||||||
goto dlfailure;
|
/* Debian contains no unversioned .so in libsensors5, only in the -dev package, so work around that: */
|
||||||
|
dlopenHandle = dlopen("libsensors.so.5", RTLD_LAZY);
|
||||||
|
if (!dlopenHandle)
|
||||||
|
goto dlfailure;
|
||||||
|
}
|
||||||
|
|
||||||
/* Clear any errors */
|
/* Clear any errors */
|
||||||
dlerror();
|
dlerror();
|
||||||
|
|
Loading…
Reference in New Issue