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 2109
Collapse All | Expand All

(-)a/CMakeLists.txt (+6 lines)
Lines 679-684 if( WITH_XCOMPOSITE ) Link Here
679
  else( WITH_XCOMPOSITE )
679
  else( WITH_XCOMPOSITE )
680
    tde_message_fatal( "xcomposite support was requested, but xcomposite was not found on your system" )
680
    tde_message_fatal( "xcomposite support was requested, but xcomposite was not found on your system" )
681
  endif( XCOMPOSITE_FOUND )
681
  endif( XCOMPOSITE_FOUND )
682
683
  # xext (tderandr, tdestyles/keramik, tdeui)
684
  pkg_search_module( XEXT xext )
685
  if( NOT XEXT_FOUND )
686
    tde_message_fatal( "xext is required for xcomposite support, but was not found on your system" )
687
  endif( )
682
endif( WITH_XCOMPOSITE )
688
endif( WITH_XCOMPOSITE )
683
689
684
690
(-)a/tderandr/CMakeLists.txt (-1 / +1 lines)
Lines 43-48 set( ${target}_SRCS Link Here
43
tde_add_library( ${target} SHARED AUTOMOC
43
tde_add_library( ${target} SHARED AUTOMOC
44
  SOURCES ${${target}_SRCS}
44
  SOURCES ${${target}_SRCS}
45
  VERSION 0.0.95
45
  VERSION 0.0.95
46
  LINK tdeui-shared ${XRANDR_LIBRARIES} Xext
46
  LINK tdeui-shared ${XRANDR_LIBRARIES} ${XEXT_LIBRARIES}
47
  DESTINATION ${LIB_INSTALL_DIR}
47
  DESTINATION ${LIB_INSTALL_DIR}
48
)
48
)
(-)a/tdestyles/keramik/CMakeLists.txt (-1 / +1 lines)
Lines 65-70 set_source_files_properties( pixmaploader.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_ Link Here
65
65
66
tde_add_kpart( ${target} AUTOMOC
66
tde_add_kpart( ${target} AUTOMOC
67
  SOURCES ${${target}_SRCS}
67
  SOURCES ${${target}_SRCS}
68
  LINK tdefx-shared Xext
68
  LINK tdefx-shared ${XEXT_LIBRARIES}
69
  DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles
69
  DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles
70
)
70
)
(-)a/tdeui/CMakeLists.txt (-1 / +1 lines)
Lines 148-154 set( ${target}_SRCS Link Here
148
tde_add_library( ${target} SHARED AUTOMOC
148
tde_add_library( ${target} SHARED AUTOMOC
149
  SOURCES ${${target}_SRCS}
149
  SOURCES ${${target}_SRCS}
150
  VERSION 14.0.0
150
  VERSION 14.0.0
151
  LINK tdecore-shared ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES}
151
  LINK tdecore-shared ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES} ${XEXT_LIBRARIES}
152
  DEPENDENCIES dcopidl
152
  DEPENDENCIES dcopidl
153
  DESTINATION ${LIB_INSTALL_DIR}
153
  DESTINATION ${LIB_INSTALL_DIR}
154
)
154
)

Return to bug 2109