The TDE integration library (libqtkde) will be searched for

in the Qt plugins directory, instead of the TDE plugins
directory, which cannot be known at Qt build time.

This resolves issue #3.

Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/2/head
gregory guy 5 years ago committed by Slávek Banko
parent 7c13f5df2f
commit 1ef55acbce
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -26,11 +26,7 @@ static QCString findLibrary()
if( getenv( "QT_NO_KDE_INTEGRATION" ) == NULL
|| getenv( "QT_NO_KDE_INTEGRATION" )[ 0 ] == '0' )
{
#ifdef USE_LIB64_PATHES
return "/opt/kde3/lib64/kde3/plugins/integration/libqtkde";
#else
return "/opt/kde3/lib/kde3/plugins/integration/libqtkde";
#endif
return QCString() + qInstallPathPlugins() + "/integration/libqtkde";
}
return "";
}

Loading…
Cancel
Save