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/tdeioslave/nfs/CMakeLists.txt (-3 / +4 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 32-42 Link Here
32
set( target tdeio_nfs )
33
set( target tdeio_nfs )
33
34
34
add_custom_command( OUTPUT mount_xdr.c
35
add_custom_command( OUTPUT mount_xdr.c
35
  COMMAND rpcgen -c -o mount_xdr.c ${CMAKE_CURRENT_SOURCE_DIR}/mount.x
36
  COMMAND ${RPCGEN_BINARY} -c -o mount_xdr.c ${CMAKE_CURRENT_SOURCE_DIR}/mount.x
36
  DEPENDS mount.x )
37
  DEPENDS mount.x )
37
38
38
add_custom_command( OUTPUT nfs_prot_xdr.c
39
add_custom_command( OUTPUT nfs_prot_xdr.c
39
  COMMAND rpcgen -c -o nfs_prot_xdr.c ${CMAKE_CURRENT_SOURCE_DIR}/nfs_prot.x
40
  COMMAND ${RPCGEN_BINARY} -c -o nfs_prot_xdr.c ${CMAKE_CURRENT_SOURCE_DIR}/nfs_prot.x
40
  DEPENDS nfs_prot.x )
41
  DEPENDS nfs_prot.x )
41
42
42
tde_add_kpart( ${target} AUTOMOC
43
tde_add_kpart( ${target} AUTOMOC
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
)
(-)a/tdeioslave/ConfigureChecks.cmake (+18 lines)
Lines 24-26 Link Here
24
    tde_message_fatal( "sasl2 are requested, but not found on your system" )
24
    tde_message_fatal( "sasl2 are requested, but not found on your system" )
25
  endif( )
25
  endif( )
26
endif( )
26
endif( )
27
28
# rpc/rpc.h, originally was shipped with glibc ...
29
check_include_file( rpc/rpc.h HAVE_RPC_H )
30
# ... but later might be not present (deprecated from 2.26) 
31
if( NOT HAVE_RPC_H )
32
  pkg_search_module( TIRPC libtirpc )
33
  if( NOT TIRPC_FOUND )
34
    tde_message_fatal( "rpc/rpc.h is required, please check your glibc or libtirpc package" )
35
  endif( )
36
endif( )
37
38
message( STATUS "Looking for rpcgen" )
39
find_program( RPCGEN_BINARY rpcgen )
40
if( RPCGEN_BINARY )
41
  message( STATUS "Looking for rpcgen - ${RPCGEN_BINARY}" )
42
else( RPCGEN_BINARY )
43
  tde_message_fatal( "rpcgen is required, but not found on your system" )
44
endif( RPCGEN_BINARY )

Return to bug 2962