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

(-)trinity-tdebase-3.5.13.2/kioslave/smb/ConfigureChecks.cmake.ORI (-2 / +7 lines)
Lines 9-17 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
check_include_file( libsmbclient.h HAVE_LIBSMBCLIENT_H )
12
pkg_search_module ( SMBCLIENT smbclient )
13
if( SMBCLIENT_FOUND ) 
14
  set( HAVE_LIBSMBCLIENT_H 1 )
15
else( )
16
  check_include_file( libsmbclient.h HAVE_LIBSMBCLIENT_H )
17
endif( )
13
18
14
if( HAVE_LIBSMBCLIENT_H )
19
if( HAVE_LIBSMBCLIENT_H OR SMBCLIENT_FOUND ) 
15
  set( SMBCLIENT_LIBRARIES smbclient )
20
  set( SMBCLIENT_LIBRARIES smbclient )
16
  check_library_exists( ${SMBCLIENT_LIBRARIES} smbc_new_context "" HAVE_SMBCLIENT )
21
  check_library_exists( ${SMBCLIENT_LIBRARIES} smbc_new_context "" HAVE_SMBCLIENT )
17
endif( )
22
endif( )
(-)trinity-tdebase-3.5.13.2/kioslave/smb/CMakeLists.txt.ORI (+1 lines)
Lines 16-21 Link Here
16
  ${CMAKE_BINARY_DIR}
16
  ${CMAKE_BINARY_DIR}
17
  ${TDE_INCLUDE_DIR}
17
  ${TDE_INCLUDE_DIR}
18
  ${TQT_INCLUDE_DIRS}
18
  ${TQT_INCLUDE_DIRS}
19
  ${SMBCLIENT_INCLUDE_DIRS}
19
)
20
)
20
21
21
link_directories(
22
link_directories(

Return to bug 1393