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 48-53 Link Here
48
option( WITH_SPEEX "Enable speex support (for jingle)" OFF )
48
option( WITH_SPEEX "Enable speex support (for jingle)" OFF )
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_XMMS "Enable XMMS support (kopete/nowlistening)" OFF )
51
option( WITH_ARTS "Enable aRts support" OFF )
52
option( WITH_ARTS "Enable aRts support" OFF )
52
option( WITH_SLP "Enable OpenSLP support (krdc, krfb)" OFF )
53
option( WITH_SLP "Enable OpenSLP support (krdc, krfb)" OFF )
53
54
(-)a/config.h.cmake (+3 lines)
Lines 17-22 Link Here
17
#cmakedefine HAVE_GLIB 1
17
#cmakedefine HAVE_GLIB 1
18
#cmakedefine HAVE_SPEEX 1
18
#cmakedefine HAVE_SPEEX 1
19
19
20
// kopete/plugins/nowlistening
21
#cmakedefine HAVE_XMMS 1
22
20
// kppp
23
// kppp
21
#cmakedefine HAVE_SYS_PARAM_H 1
24
#cmakedefine HAVE_SYS_PARAM_H 1
22
#cmakedefine HAVE_NET_IF_PPP_H 1
25
#cmakedefine HAVE_NET_IF_PPP_H 1
(-)a/kopete/plugins/nowlistening/CMakeLists.txt (-1 / +4 lines)
Lines 9-14 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
include( ConfigureChecks.cmake )
13
12
include_directories(
14
include_directories(
13
  ${CMAKE_CURRENT_BINARY_DIR}
15
  ${CMAKE_CURRENT_BINARY_DIR}
14
  ${CMAKE_BINARY_DIR}
16
  ${CMAKE_BINARY_DIR}
Lines 16-21 Link Here
16
  ${CMAKE_SOURCE_DIR}/kopete/libkopete/ui
18
  ${CMAKE_SOURCE_DIR}/kopete/libkopete/ui
17
  ${TDE_INCLUDE_DIR}
19
  ${TDE_INCLUDE_DIR}
18
  ${TQT_INCLUDE_DIRS}
20
  ${TQT_INCLUDE_DIRS}
21
  ${XMMS_INCLUDES}
19
)
22
)
20
23
21
link_directories(
24
link_directories(
Lines 38-44 Link Here
38
    nowlisteningconfig.kcfgc nowlisteningplugin.cpp nlkscd.cpp
41
    nowlisteningconfig.kcfgc nowlisteningplugin.cpp nlkscd.cpp
39
    nlnoatun.cpp nlxmms.cpp nowlisteningguiclient.cpp nljuk.cpp
42
    nlnoatun.cpp nlxmms.cpp nowlisteningguiclient.cpp nljuk.cpp
40
    nlamarok.cpp nlkaffeine.cpp
43
    nlamarok.cpp nlkaffeine.cpp
41
  LINK kopete-shared
44
  LINK kopete-shared ${XMMS_LIBS}
42
  DESTINATION ${PLUGIN_INSTALL_DIR}
45
  DESTINATION ${PLUGIN_INSTALL_DIR}
43
)
46
)
44
47
(-)b/kopete/plugins/nowlistening/ConfigureChecks.cmake (+22 lines)
Added Link Here
1
#################################################
2
#
3
#  (C) 2012 Slavek Banko
4
#  slavek (DOT) banko (AT) axis.cz
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
# xmms
13
if( WITH_XMMS )
14
  find_program( XMMS_CONFIG xmms-config )
15
  if( XMMS_CONFIG )
16
    set( HAVE_XMMS 1 )
17
    EXEC_PROCESS( COMMAND ${XMMS_CONFIG} --cflags OUTPUT_VARIABLE XMMS_INCLUDES )
18
    EXEC_PROCESS( COMMAND ${XMMS_CONFIG} --libs OUTPUT_VARIABLE XMMS_LIBS )
19
  else
20
    tde_message_fatal( "xmms is required, but was not found on your system" )
21
  endif( )
22
endif( )

Return to bug 1278