Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 379000 Details for
Bug 513404
app-leechcraft/lc-core-0.6.65 fails to build (missing deps?)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for making DBus loaders in Core optional
dbus.patch (text/plain), 1004 bytes, created by
Georg Rudoy
on 2014-06-16 10:56:14 UTC
(
hide
)
Description:
Patch for making DBus loaders in Core optional
Filename:
MIME Type:
Creator:
Georg Rudoy
Created:
2014-06-16 10:56:14 UTC
Size:
1004 bytes
patch
obsolete
>commit 2e221a116dacf7541af8bfe6110856a70b8a8f70 >Author: 0xd34df00d <0xd34df00d@gmail.com> >Date: Mon Jun 16 14:54:15 2014 +0400 > > [Core] DBus loaders made optional. > >diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt >index c138fd5..dc2b8d6 100644 >--- a/src/core/CMakeLists.txt >+++ b/src/core/CMakeLists.txt >@@ -5,8 +5,10 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR} > ${Boost_INCLUDE_DIR} > ) > >+option (WITH_DBUS_LOADERS "Build D-Bus loaders on UNIX" OFF) >+ > if (NOT USE_QT5) >- if (NOT WIN32) >+ if (WITH_DBUS_LOADERS) > set (QT_USE_QTDBUS TRUE) > endif () > set (QT_USE_QTNETWORK TRUE) >@@ -101,7 +103,7 @@ set (SRCS > loaders/sopluginloader.cpp > ) > >-if (UNIX AND NOT APPLE) >+if (WITH_DBUS_LOADERS) > set (SRCS > ${SRCS} > loaders/dbuspluginloader.cpp >@@ -179,6 +181,6 @@ if (USE_QT5) > QT5_USE_MODULES (leechcraft Gui Network Widgets Xml Sql Script Concurrent DBus Svg) > endif () > >-if (UNIX AND NOT APPLE) >+if (WITH_DBUS_LOADERS) > add_subdirectory (loaders/dbus) > endif ()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 513404
: 379000 |
379044