diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-30 16:00:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-30 16:00:35 +0200 |
commit | 3b504e7c8d20bb41ef6b6f95e46527766438046a (patch) | |
tree | 82e5b687f5cd523977bb5dac3690ad4deba77f2d /config | |
parent | fdd8dcae01beb66397226ad65e4f1bbd3d1dd55c (diff) | |
download | rneovim-3b504e7c8d20bb41ef6b6f95e46527766438046a.tar.gz rneovim-3b504e7c8d20bb41ef6b6f95e46527766438046a.tar.bz2 rneovim-3b504e7c8d20bb41ef6b6f95e46527766438046a.zip |
fileio.c: eliminate set_file_time() #10357
Introduce os_file_settime(), remove cruft.
Diffstat (limited to 'config')
-rw-r--r-- | config/CMakeLists.txt | 3 | ||||
-rw-r--r-- | config/config.h.in | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/config/CMakeLists.txt b/config/CMakeLists.txt index 4fb44b9a27..82cb4d31ad 100644 --- a/config/CMakeLists.txt +++ b/config/CMakeLists.txt @@ -32,7 +32,6 @@ if(NOT HAVE_SYS_WAIT_H AND UNIX) endif() check_include_files(sys/utsname.h HAVE_SYS_UTSNAME_H) check_include_files(termios.h HAVE_TERMIOS_H) -check_include_files(utime.h HAVE_UTIME_H) check_include_files(sys/uio.h HAVE_SYS_UIO_H) # Functions @@ -53,8 +52,6 @@ check_function_exists(setsid HAVE_SETSID) check_function_exists(sigaction HAVE_SIGACTION) check_function_exists(strcasecmp HAVE_STRCASECMP) check_function_exists(strncasecmp HAVE_STRNCASECMP) -check_function_exists(utime HAVE_UTIME) -check_function_exists(utimes HAVE_UTIMES) # Symbols check_symbol_exists(FD_CLOEXEC "fcntl.h" HAVE_FD_CLOEXEC) diff --git a/config/config.h.in b/config/config.h.in index 15881c4430..40baff95e8 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -38,9 +38,6 @@ #cmakedefine HAVE_SYS_UTSNAME_H #cmakedefine HAVE_SYS_WAIT_H #cmakedefine HAVE_TERMIOS_H -#cmakedefine HAVE_UTIME -#cmakedefine HAVE_UTIME_H -#cmakedefine HAVE_UTIMES #cmakedefine HAVE_WORKING_LIBINTL #cmakedefine HAVE_WSL #cmakedefine UNIX |