CheckHeaderDirent.cmake 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # - Check if the system has the specified type
  2. # CHECK_HEADER_DIRENT (HEADER1 HEARDER2 ...)
  3. #
  4. # HEADER - the header(s) where the prototype should be declared
  5. #
  6. # The following variables may be set before calling this macro to
  7. # modify the way the check is run:
  8. #
  9. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  10. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  11. # CMAKE_REQUIRED_INCLUDES = list of include directories
  12. # Copyright (c) 2009, Michihiro NAKAJIMA
  13. #
  14. # Redistribution and use is allowed according to the terms of the BSD license.
  15. # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  16. INCLUDE(CheckTypeExists)
  17. MACRO (CHECK_HEADER_DIRENT)
  18. CHECK_TYPE_EXISTS("DIR *" dirent.h HAVE_DIRENT_H)
  19. IF(NOT HAVE_DIRENT_H)
  20. CHECK_TYPE_EXISTS("DIR *" sys/ndir.h HAVE_SYS_NDIR_H)
  21. IF(NOT HAVE_SYS_NDIR_H)
  22. CHECK_TYPE_EXISTS("DIR *" ndir.h HAVE_NDIR_H)
  23. IF(NOT HAVE_NDIR_H)
  24. CHECK_TYPE_EXISTS("DIR *" sys/dir.h HAVE_SYS_DIR_H)
  25. ENDIF(NOT HAVE_NDIR_H)
  26. ENDIF(NOT HAVE_SYS_NDIR_H)
  27. ENDIF(NOT HAVE_DIRENT_H)
  28. ENDMACRO (CHECK_HEADER_DIRENT)