From: Jeroen Ketema Date: Thu, 7 Apr 2016 08:36:13 +0000 (+0000) Subject: [CMake] Check for sys/types.h in config-ix.cmake X-Git-Tag: llvmorg-3.9.0-rc1~9765 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6897210033e3d7e2c3cf6c7ed937daf7eeef811;p=platform%2Fupstream%2Fllvm.git [CMake] Check for sys/types.h in config-ix.cmake `sys/types.h` has a related define in `config.h.cmake`, but was never checked for in CMake. Sync this. Differential Revision: http://reviews.llvm.org/D18825 llvm-svn: 265648 --- diff --git a/llvm/cmake/config-ix.cmake b/llvm/cmake/config-ix.cmake index dd96b5c..7d52775 100755 --- a/llvm/cmake/config-ix.cmake +++ b/llvm/cmake/config-ix.cmake @@ -67,6 +67,7 @@ check_include_file(sys/param.h HAVE_SYS_PARAM_H) check_include_file(sys/resource.h HAVE_SYS_RESOURCE_H) check_include_file(sys/stat.h HAVE_SYS_STAT_H) check_include_file(sys/time.h HAVE_SYS_TIME_H) +check_include_file(sys/types.h HAVE_SYS_TYPES_H) check_include_file(sys/uio.h HAVE_SYS_UIO_H) check_include_file(termios.h HAVE_TERMIOS_H) check_include_file(unistd.h HAVE_UNISTD_H)