By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1594
Collapse All | Expand All

(-)tdelibs/tdecore/CMakeLists.txt (-14 / +13 lines)
Lines 19-32 Link Here
19
  set( DBUS_SYSTEM_BUS "unix:path=/var/run/dbus/system_bus_socket" CACHE INTERNAL "" FORCE )
19
  set( DBUS_SYSTEM_BUS "unix:path=/var/run/dbus/system_bus_socket" CACHE INTERNAL "" FORCE )
20
endif()
20
endif()
21
21
22
if( WITH_UPOWER OR WITH_UDISKS OR WITH_UDISKS2 OR
23
    WITH_NETWORK_MANAGER_BACKEND OR WITH_CONSOLEKIT )
24
  list( APPEND TDEHW_CUSTOM_INCLUDE_DIRS ${DBUS_TQT_INCLUDE_DIRS} )
25
  list( APPEND TDEHW_CUSTOM_LIBRARY_DIRS ${DBUS_TQT_LIBRARY_DIRS} )
26
  list( APPEND TDEHW_CUSTOM_LIBRARIES ${DBUS_TQT_LIBRARIES} )
27
endif( )
28
22
if( WITH_UPOWER )
29
if( WITH_UPOWER )
23
  add_definitions( -DWITH_UPOWER )
30
  add_definitions( -DWITH_UPOWER )
24
  set ( TDEUPOWER_INCLUDE_DIRECTORIES
25
    ${DBUS_TQT_INCLUDE_DIRS}
26
  )
27
  set ( TDEUPOWER_LIBRARIES
28
    ${DBUS_TQT_LIBRARIES}
29
  )
30
endif( )
31
endif( )
31
32
32
if( WITH_UDISKS )
33
if( WITH_UDISKS )
Lines 48-61 Link Here
48
49
49
if( WITH_NETWORK_MANAGER_BACKEND )
50
if( WITH_NETWORK_MANAGER_BACKEND )
50
  add_subdirectory( networkbackends/network-manager/dbus )
51
  add_subdirectory( networkbackends/network-manager/dbus )
51
  set ( TDENM_INCLUDE_DIRECTORIES
52
  list( APPEND TDEHW_CUSTOM_INCLUDE_DIRS
52
    ${DBUS_TQT_INCLUDE_DIRS}
53
    ${NM_UTIL_INCLUDE_DIRS}
53
    ${NM_UTIL_INCLUDE_DIRS}
54
    "${CMAKE_BINARY_DIR}/tdecore/networkbackends/network-manager/dbus"
54
    "${CMAKE_CURRENT_BINARY_DIR}/networkbackends/network-manager/dbus"
55
  )
55
  )
56
  set ( TDENM_LIBRARIES
56
  list( APPEND TDEHW_CUSTOM_LIBRARIES
57
    tdenm_dbus-static
57
    tdenm_dbus-static
58
    ${DBUS_TQT_LIBRARIES}
59
  )
58
  )
60
  set ( TDENM_BACKEND_SOURCES networkbackends/network-manager/network-manager.cpp )
59
  set ( TDENM_BACKEND_SOURCES networkbackends/network-manager/network-manager.cpp )
61
endif( WITH_NETWORK_MANAGER_BACKEND )
60
endif( WITH_NETWORK_MANAGER_BACKEND )
Lines 75-82 Link Here
75
  ${LIBART_INCLUDE_DIRS}
74
  ${LIBART_INCLUDE_DIRS}
76
  ${LIBIDN_INCLUDE_DIRS}
75
  ${LIBIDN_INCLUDE_DIRS}
77
  ${GAMIN_INCLUDEDIR}
76
  ${GAMIN_INCLUDEDIR}
78
  ${TDENM_INCLUDE_DIRECTORIES}
77
  ${TDEHW_CUSTOM_INCLUDE_DIRS}
79
  ${TDEUPOWER_INCLUDE_DIRECTORIES}
80
)
78
)
81
79
82
link_directories(
80
link_directories(
Lines 84-89 Link Here
84
  ${LIBIDN_LIBRARY_DIRS}
82
  ${LIBIDN_LIBRARY_DIRS}
85
  ${GAMIN_LIBDIR}
83
  ${GAMIN_LIBDIR}
86
  ${LIBART_LIBRARY_DIRS}
84
  ${LIBART_LIBRARY_DIRS}
85
  ${TDEHW_CUSTOM_LIBRARY_DIRS}
87
)
86
)
88
87
89
##### headers ###################################
88
##### headers ###################################
Lines 178-184 Link Here
178
  SOURCES ${${target}_SRCS}
177
  SOURCES ${${target}_SRCS}
179
  VERSION 4.2.0
178
  VERSION 4.2.0
180
  EMBED tdecorenetwork-static
179
  EMBED tdecorenetwork-static
181
  LINK ltdlc-static ${KDESVGICONS} DCOP-shared tdefx-shared ${ZLIB_LIBRARIES} ${LIBIDN_LIBRARIES} ${XCOMPOSITE_LIBRARIES} ICE SM udev ${GAMIN_LIBRARIES} ${TDENM_LIBRARIES} ${TDEUPOWER_LIBRARIES}
180
  LINK ltdlc-static ${KDESVGICONS} DCOP-shared tdefx-shared ${ZLIB_LIBRARIES} ${LIBIDN_LIBRARIES} ${XCOMPOSITE_LIBRARIES} ICE SM udev ${GAMIN_LIBRARIES} ${TDEHW_CUSTOM_LIBRARIES}
182
  DEPENDENCIES dcopidl dcopidl2cpp
181
  DEPENDENCIES dcopidl dcopidl2cpp
183
  DESTINATION ${LIB_INSTALL_DIR}
182
  DESTINATION ${LIB_INSTALL_DIR}
184
)
183
)
(-)tdelibs/tdecore/tdehardwaredevices.cpp (-1 / +1 lines)
Lines 70-76 Link Here
70
#endif // WITH_NETWORK_MANAGER_BACKEND
70
#endif // WITH_NETWORK_MANAGER_BACKEND
71
71
72
// uPower and uDisks2 integration
72
// uPower and uDisks2 integration
73
#if defined(WITH_UPOWER) || defined(WITH_UDISKS) || defined(WITH_UDISKS2)
73
#if defined(WITH_UPOWER) || defined(WITH_UDISKS) || defined(WITH_UDISKS2) || defined(WITH_CONSOLEKIT)
74
	#include <tqdbusdata.h>
74
	#include <tqdbusdata.h>
75
	#include <tqdbusmessage.h>
75
	#include <tqdbusmessage.h>
76
	#include <tqdbusproxy.h>
76
	#include <tqdbusproxy.h>

Return to bug 1594