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

(-)a/ConfigureChecks.cmake (+15 lines)
Lines 444-446 Link Here
444
  endif( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" )
444
  endif( NOT "${LIBR_VERSION}" STREQUAL "0.6.0" )
445
  set( HAVE_ELFICON 1 )
445
  set( HAVE_ELFICON 1 )
446
endif( )
446
endif( )
447
448
449
# rpc/rpc.h
450
if( BUILD_TDEIOSLAVES )
451
  # originally was shipped with glibc ...
452
  check_include_file( rpc/rpc.h HAVE_RPC_H )
453
454
  # ... but later might be not present (deprecated from 2.26) 
455
  if( NOT HAVE_RPC_H )
456
    pkg_search_module( TIRPC libtirpc )
457
    if( NOT TIRPC_FOUND )
458
      tde_message_fatal( "rpc/rpc.h is required, please check your glibc or libtirpc package" )
459
    endif( )
460
  endif( )
461
endif( )
(-)a/tdeioslave/nfs/CMakeLists.txt (-1 / +2 lines)
Lines 15-20 Link Here
15
  ${CMAKE_BINARY_DIR}
15
  ${CMAKE_BINARY_DIR}
16
  ${TDE_INCLUDE_DIR}
16
  ${TDE_INCLUDE_DIR}
17
  ${TQT_INCLUDE_DIRS}
17
  ${TQT_INCLUDE_DIRS}
18
  ${TIRPC_INCLUDE_DIRS}
18
)
19
)
19
20
20
link_directories(
21
link_directories(
Lines 41-46 Link Here
41
42
42
tde_add_kpart( ${target} AUTOMOC
43
tde_add_kpart( ${target} AUTOMOC
43
  SOURCES tdeio_nfs.cpp mount_xdr.c nfs_prot_xdr.c
44
  SOURCES tdeio_nfs.cpp mount_xdr.c nfs_prot_xdr.c
44
  LINK tdeio-shared
45
  LINK tdeio-shared ${TIRPC_LIBRARIES}
45
  DESTINATION ${PLUGIN_INSTALL_DIR}
46
  DESTINATION ${PLUGIN_INSTALL_DIR}
46
)
47
)

Return to bug 2962