diff options
author | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-12 20:52:29 -0500 |
---|---|---|
committer | Michael Reed <Pyrohh@users.noreply.github.com> | 2016-01-12 20:52:29 -0500 |
commit | 420fe1fe73153cc7407a770fc2d6ee85ff490bff (patch) | |
tree | f9f75c18f0de2e92d7674e3d6f3cef7f45e04aa5 | |
parent | e8fab975f8f8a130172577327b4d1450d001c4ce (diff) | |
parent | 7c79ea70efcb328a8108cfd08379e81a76ee77f5 (diff) | |
download | rneovim-420fe1fe73153cc7407a770fc2d6ee85ff490bff.tar.gz rneovim-420fe1fe73153cc7407a770fc2d6ee85ff490bff.tar.bz2 rneovim-420fe1fe73153cc7407a770fc2d6ee85ff490bff.zip |
Merge pull request #3995 from sethjackson/crt-externs
[RFC] config: Cleanup unused identifiers.
-rw-r--r-- | config/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config/config.h.in | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt index 42ae2e14fd..48ecc9cc33 100644 --- a/config/CMakeLists.txt +++ b/config/CMakeLists.txt @@ -8,7 +8,6 @@ include(CheckCSourceCompiles) check_type_size("int" SIZEOF_INT) check_type_size("long" SIZEOF_LONG) check_type_size("intmax_t" SIZEOF_INTMAX_T) -check_type_size("off_t" SIZEOF_OFF_T) check_type_size("size_t" SIZEOF_SIZE_T) check_type_size("long long" SIZEOF_LONG_LONG) check_type_size("void *" SIZEOF_VOID_PTR) @@ -19,7 +18,6 @@ check_symbol_exists(_NSGetEnviron crt_externs.h HAVE__NSGETENVIRON) 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(libgen.h HAVE_LIBGEN_H) check_include_files(locale.h HAVE_LOCALE_H) check_include_files(pwd.h HAVE_PWD_H) check_include_files(strings.h HAVE_STRINGS_H) diff --git a/config/config.h.in b/config/config.h.in index 9a94174be0..84a90301ff 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -5,7 +5,6 @@ #define SIZEOF_INT @SIZEOF_INT@ #define SIZEOF_LONG @SIZEOF_LONG@ -#define SIZEOF_OFF_T @SIZEOF_OFF_T@ #if @SIZEOF_VOID_PTR@ == 8 #define ARCH_64 @@ -14,7 +13,6 @@ #endif #cmakedefine HAVE__NSGETENVIRON -#cmakedefine HAVE_CRT_EXTERNS_H #cmakedefine HAVE_FCNTL_H #cmakedefine HAVE_FD_CLOEXEC #cmakedefine HAVE_FSEEKO @@ -24,7 +22,6 @@ #cmakedefine HAVE_ICONV #cmakedefine HAVE_ICONV_H #cmakedefine HAVE_LANGINFO_H -#cmakedefine HAVE_LIBGEN_H #cmakedefine HAVE_LOCALE_H #cmakedefine HAVE_NL_LANGINFO_CODESET #cmakedefine HAVE_NL_MSG_CAT_CNTR |