Bug 1292107
Summary: | Packages of qjdns for both Qt4 and Qt5 can not co-exist in the same system | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Raphael Groner <projects.rg> |
Component: | jdns | Assignee: | Ivan Romanov <drizt72> |
Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | high | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | drizt72, extras-qa, jgrulich, rdieter, sven |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | 1292106 | Environment: | |
Last Closed: | 2015-12-17 08:38:53 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 1292095 |
Description
Raphael Groner
2015-12-16 13:48:12 UTC
Sorry for reassign, this happened accidently cause of bug clone. Do you mean that you doesn't know what version of qjdns (Qt4 or Qt5) you use? You can always do ldd /usr/lib64/libqjdns.so.2 to check it. Also in CMake world you shouldn't use pkg-config. Use CMake module always when it is possible. For qjdns you can do find_package(QJDns). Full CMakeLists.txt example project(test) cmake_minimum_required(VERSION 2.8.11) find_package(Qt5Core REQUIRED) find_package(QJDns REQUIRED) |