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

(-)a/ConfigureChecks.cmake (-1 / +19 lines)
Lines 21-27 check_type_size( "long" SIZEOF_LONG BUILTIN_TYPES_ONLY ) Link Here
21
21
22
check_include_file( stdint.h HAVE_STDINT_H )
22
check_include_file( stdint.h HAVE_STDINT_H )
23
check_include_file( systems.h HAVE_SYSTEMS_H )
23
check_include_file( systems.h HAVE_SYSTEMS_H )
24
check_include_file( linux/inotify.h HAVE_INOTIFY )
24
25
##### check for inotify ###########################
26
27
# if( WITH_INOTIFY )
28
  check_include_file( "inotify.h" INOTIFY_FOUND )
29
  check_include_file( "sys/inotify.h" INOTIFY_SYS_FOUND )
30
  if( NOT INOTIFY_FOUND )
31
    if( NOT INOTIFY_SYS_FOUND )
32
      message(FATAL_ERROR "\ninotify support was requested, but inotify was not found on your system" )
33
    endif( NOT INOTIFY_SYS_FOUND )
34
  endif( NOT INOTIFY_FOUND )
35
  if( INOTIFY_FOUND )
36
      set( HAVE_INOTIFY 1 )
37
  endif( INOTIFY_FOUND )
38
  if( INOTIFY_SYS_FOUND )
39
      set( HAVE_INOTIFY 1 )
40
      set( HAVE_SYS_INOTIFY 1 )
41
  endif( INOTIFY_SYS_FOUND )
42
# endif( )
25
43
26
check_function_exists( statvfs HAVE_STATVFS )
44
check_function_exists( statvfs HAVE_STATVFS )
27
45

Return to bug 1262