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

(-)a/CMakeLists.txt (+1 lines)
Lines 49-54 Link Here
49
option( WITH_WEBCAM "Enable webcam support (kopete/msn)" OFF )
49
option( WITH_WEBCAM "Enable webcam support (kopete/msn)" OFF )
50
option( WITH_GSM "Enable GSM SMS support (kopete/sms)" OFF )
50
option( WITH_GSM "Enable GSM SMS support (kopete/sms)" OFF )
51
option( WITH_ARTS "Enable aRts support" OFF )
51
option( WITH_ARTS "Enable aRts support" OFF )
52
option( WITH_SLP "Enable OpenSLP support (krdc, krfb)" OFF )
52
53
53
54
54
##### kopete protocols ##########################
55
##### kopete protocols ##########################
(-)a/ConfigureChecks.cmake (+9 lines)
Lines 16-18 Link Here
16
# required stuff
16
# required stuff
17
find_package( TQt )
17
find_package( TQt )
18
find_package( TDE )
18
find_package( TDE )
19
20
if( WITH_SLP )
21
  check_library_exists( slp "SLPOpen" "" HAVE_SLP )
22
  if( HAVE_SLP )
23
    set(LIB_SLP slp )
24
  else( )
25
    tde_message_fatal( "openslp is required, but was not found on your system" )
26
  endif( )
27
endif( )
(-)a/krdc/CMakeLists.txt (-1 / +1 lines)
Lines 60-65 Link Here
60
    maindialogbase.ui keycapturewidget.ui kservicelocator.cpp
60
    maindialogbase.ui keycapturewidget.ui kservicelocator.cpp
61
    keycapturedialog.cpp kremoteview.cpp smartptr.cpp hostpreferences.cpp
61
    keycapturedialog.cpp kremoteview.cpp smartptr.cpp hostpreferences.cpp
62
    preferencesdialog.cpp maindialogwidget.cpp maindialog.cpp
62
    preferencesdialog.cpp maindialogwidget.cpp maindialog.cpp
63
  LINK vnc-static rdp-static kdeui-shared kdnssd-shared kwalletclient-shared jpeg Xext
63
  LINK vnc-static rdp-static kdeui-shared kdnssd-shared kwalletclient-shared jpeg Xext ${LIB_SLP}
64
  DESTINATION ${BIN_INSTALL_DIR}
64
  DESTINATION ${BIN_INSTALL_DIR}
65
)
65
)
(-)a/krfb/srvloc/CMakeLists.txt (+2 lines)
Lines 24-27 Link Here
24
  SOURCES
24
  SOURCES
25
    kserviceregistry.cpp uuid.cpp kinetinterface.cpp
25
    kserviceregistry.cpp uuid.cpp kinetinterface.cpp
26
    kinetinterfacewatcher.cpp getifaddrs.cpp
26
    kinetinterfacewatcher.cpp getifaddrs.cpp
27
  LINK
28
    ${LIB_SLP}
27
)
29
)
(-)a/config.h.cmake (+3 lines)
Lines 21-26 Link Here
21
#cmakedefine HAVE_SYS_PARAM_H 1
21
#cmakedefine HAVE_SYS_PARAM_H 1
22
#cmakedefine HAVE_NET_IF_PPP_H 1
22
#cmakedefine HAVE_NET_IF_PPP_H 1
23
23
24
// krcd / krfb
25
#cmakedefine HAVE_SLP 1
26
24
// ktalkd
27
// ktalkd
25
#cmakedefine HAVE_SYS_TYPES_H 1
28
#cmakedefine HAVE_SYS_TYPES_H 1
26
#cmakedefine HAVE_SYS_STAT_H 1
29
#cmakedefine HAVE_SYS_STAT_H 1

Return to bug 1278