diff options
author | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-17 11:58:05 -0500 |
---|---|---|
committer | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-17 11:58:05 -0500 |
commit | 704882e8dc9021f817c368022225e048f03dd91b (patch) | |
tree | 8835f5e6fd67d46e58cd29664eb2d53f3a18cf2b | |
parent | 3920e7680d6b68f2adff6c40b6c4c841addead6f (diff) | |
parent | 5dfbe6685d8561213a6f8e63915e77ea253be5aa (diff) | |
download | rneovim-704882e8dc9021f817c368022225e048f03dd91b.tar.gz rneovim-704882e8dc9021f817c368022225e048f03dd91b.tar.bz2 rneovim-704882e8dc9021f817c368022225e048f03dd91b.zip |
Merge pull request #4029 from sethjackson/fcntl
[RFC] config: Remove HAVE_FCNTL_H
-rw-r--r-- | config/CMakeLists.txt | 1 | ||||
-rw-r--r-- | config/config.h.in | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt index 1dcf7e4686..81b1fd64e3 100644 --- a/config/CMakeLists.txt +++ b/config/CMakeLists.txt @@ -15,7 +15,6 @@ check_type_size("void *" SIZEOF_VOID_PTR) check_symbol_exists(_NSGetEnviron crt_externs.h HAVE__NSGETENVIRON) # Headers -check_include_files(fcntl.h HAVE_FCNTL_H) check_include_files(iconv.h HAVE_ICONV_H) check_include_files(langinfo.h HAVE_LANGINFO_H) check_include_files(locale.h HAVE_LOCALE_H) diff --git a/config/config.h.in b/config/config.h.in index 84a90301ff..1eafc8cb95 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -13,7 +13,6 @@ #endif #cmakedefine HAVE__NSGETENVIRON -#cmakedefine HAVE_FCNTL_H #cmakedefine HAVE_FD_CLOEXEC #cmakedefine HAVE_FSEEKO #cmakedefine HAVE_GETPWENT |