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

(-)amarok-3.5.13.1/ConfigureChecks.cmake.ORI (-2 / +2 lines)
Lines 24-30 Link Here
24
24
25
##### check for inotify ###########################
25
##### check for inotify ###########################
26
26
27
# if( WITH_INOTIFY )
27
if( WITH_INOTIFY )
28
  check_include_file( "inotify.h" INOTIFY_FOUND )
28
  check_include_file( "inotify.h" INOTIFY_FOUND )
29
  check_include_file( "sys/inotify.h" INOTIFY_SYS_FOUND )
29
  check_include_file( "sys/inotify.h" INOTIFY_SYS_FOUND )
30
  if( NOT INOTIFY_FOUND )
30
  if( NOT INOTIFY_FOUND )
Lines 39-45 Link Here
39
      set( HAVE_INOTIFY 1 )
39
      set( HAVE_INOTIFY 1 )
40
      set( HAVE_SYS_INOTIFY 1 )
40
      set( HAVE_SYS_INOTIFY 1 )
41
  endif( INOTIFY_SYS_FOUND )
41
  endif( INOTIFY_SYS_FOUND )
42
# endif( )
42
endif( )
43
43
44
check_function_exists( statvfs HAVE_STATVFS )
44
check_function_exists( statvfs HAVE_STATVFS )
45
45
(-)amarok-3.5.13.1/CMakeLists.txt.ori (+1 lines)
Lines 54-59 Link Here
54
option( WITH_MTP "Enable mtp support" OFF )
54
option( WITH_MTP "Enable mtp support" OFF )
55
option( WITH_RIOKARMA "Enable riokarma support" OFF )
55
option( WITH_RIOKARMA "Enable riokarma support" OFF )
56
option( WITH_DAAP "Enable daap support" OFF )
56
option( WITH_DAAP "Enable daap support" OFF )
57
option( WITH_INOTIFY "Enable inotify support" OFF )
57
58
58
59
59
##### user requested modules ####################
60
##### user requested modules ####################

Return to bug 1262