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

(-)a/ConfigureChecks.cmake (-15 / +12 lines)
Lines 117-140 endif( ) Link Here
117
117
118
##### kmilo #####################################
118
##### kmilo #####################################
119
119
120
if ( BUILD_KMILO )
120
if( BUILD_KMILO )
121
# FIXME: If anybody will ever compile trinity for POWERPC and especialy for 
121
# FIXME: If anybody will ever compile trinity for POWERPC and especialy for 
122
#        POWERBOOK he should test those checks and modules
122
#        POWERBOOK he or she should test workability of those modules
123
  if( WITH_POWERBOOK )
123
  if( WITH_POWERBOOK OR WITH_POWERBOOK2 )
124
    check_library_exists( "pbb" "init_libpbb" "" HAVE_PBBIPC_LIBRARY )
124
    check_include_file( "pbbipc.h" HAVE_PBBIPC_H )
125
    check_include_file( "pbbipc.h" HAVE_PBBIPC_H )
125
    if( NOT HAVE_PBBIPC_H )
126
      tde_message_fatal( "pbbipc.h header is required, but was not found on your system" )
127
    endif( NOT HAVE_PBBIPC_H )
128
  endif( WITH_POWERBOOK )
129
130
  if( WITH_POWERBOOK2 )
131
    check_include_file( "pbb.h" HAVE_PBB_H )
126
    check_include_file( "pbb.h" HAVE_PBB_H )
132
    if( NOT HAVE_PBB_H )
127
    if( HAVE_PBBIPC_LIBRARY AND ( ( WITH_POWERBOOK AND HAVE_PBBIPC_H ) OR 
133
      tde_message_fatal( "pbb.h header is required, but was not found on your system" )
128
                                  ( WITH_POWERBOOK2 AND HAVE_PBB_H ) ) )
134
    endif( NOT HAVE_PBB_H )
129
      set( PBB_LIBRARY pbb CACHE INTERNAL "" )
135
  endif( WITH_POWERBOOK2 )
130
    else()
136
131
      tde_message_fatal( "suitable pbbuttonosd is required, but was not found on your system" )
137
endif (BUILD_KMILO)
132
    endif()
133
  endif( WITH_POWERBOOK  OR WITH_POWERBOOK2 )
134
endif( BUILD_KMILO )
138
135
139
136
140
##### ksim ######################################
137
##### ksim ######################################
(-)a/kmilo/powerbook/CMakeLists.txt (-1 / +1 lines)
Lines 28-34 link_directories( Link Here
28
28
29
tde_add_kpart( kmilo_powerbook AUTOMOC
29
tde_add_kpart( kmilo_powerbook AUTOMOC
30
  SOURCES pb_monitor.cpp
30
  SOURCES pb_monitor.cpp
31
  LINK kio-shared kmilo-shared
31
  LINK kio-shared kmilo-shared ${PBB_LIBRARY}
32
  DESTINATION ${PLUGIN_INSTALL_DIR}
32
  DESTINATION ${PLUGIN_INSTALL_DIR}
33
)
33
)
34
34
(-)a/kmilo/powerbook2/CMakeLists.txt (-1 / +1 lines)
Lines 28-34 link_directories( Link Here
28
28
29
tde_add_kpart( kmilo_powerbook AUTOMOC
29
tde_add_kpart( kmilo_powerbook AUTOMOC
30
  SOURCES pb_monitor.cpp
30
  SOURCES pb_monitor.cpp
31
  LINK kio-shared kmilo-shared
31
  LINK kio-shared kmilo-shared ${PBB_LIBRARY}
32
  DESTINATION ${PLUGIN_INSTALL_DIR}
32
  DESTINATION ${PLUGIN_INSTALL_DIR}
33
)
33
)
34
34

Return to bug 1310