File tree Expand file tree Collapse file tree 6 files changed +0
-19
lines changed
utils/gn/secondary/llvm/include/llvm/Config
llvm-project-overlay/llvm/include/llvm/Config Expand file tree Collapse file tree 6 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ if (ANDROID OR CYGWIN OR CMAKE_SYSTEM_NAME MATCHES "AIX|DragonFly|FreeBSD|Haiku|
26
26
set (HAVE_SYS_MMAN_H 1 )
27
27
set (HAVE_SYS_RESOURCE_H 1 )
28
28
set (HAVE_SYSEXITS_H 1 )
29
- set (HAVE_TERMIOS_H 1 )
30
29
set (HAVE_UNISTD_H 1 )
31
30
elseif (APPLE )
32
31
set (HAVE_DLFCN_H 1 )
@@ -37,7 +36,6 @@ elseif (APPLE)
37
36
set (HAVE_SYS_MMAN_H 1 )
38
37
set (HAVE_SYS_RESOURCE_H 1 )
39
38
set (HAVE_SYSEXITS_H 1 )
40
- set (HAVE_TERMIOS_H 1 )
41
39
set (HAVE_UNISTD_H 1 )
42
40
elseif (PURE_WINDOWS )
43
41
set (HAVE_DLFCN_H 0 )
@@ -48,7 +46,6 @@ elseif (PURE_WINDOWS)
48
46
set (HAVE_SYS_MMAN_H 0 )
49
47
set (HAVE_SYS_RESOURCE_H 0 )
50
48
set (HAVE_SYSEXITS_H 0 )
51
- set (HAVE_TERMIOS_H 0 )
52
49
set (HAVE_UNISTD_H 0 )
53
50
elseif (ZOS )
54
51
# Confirmed in
@@ -61,7 +58,6 @@ elseif (ZOS)
61
58
set (HAVE_SYS_MMAN_H 1 )
62
59
set (HAVE_SYS_RESOURCE_H 1 )
63
60
set (HAVE_SYSEXITS_H 0 )
64
- set (HAVE_TERMIOS_H 1 )
65
61
set (HAVE_UNISTD_H 1 )
66
62
else ()
67
63
# Other platforms that we don't promise support for.
73
69
check_include_file (sys/mman.h HAVE_SYS_MMAN_H )
74
70
check_include_file (sys/resource.h HAVE_SYS_RESOURCE_H )
75
71
check_include_file (sysexits.h HAVE_SYSEXITS_H )
76
- check_include_file (termios.h HAVE_TERMIOS_H )
77
72
check_include_file (unistd.h HAVE_UNISTD_H )
78
73
endif ()
79
74
Original file line number Diff line number Diff line change 192
192
/* Define to 1 if stat struct has st_mtim member. */
193
193
#cmakedefine HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC ${HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC}
194
194
195
- /* Define to 1 if you have the <termios.h> header file . */
196
- #cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
197
-
198
195
/* Define to 1 if you have the <unistd.h> header file . */
199
196
#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
200
197
Original file line number Diff line number Diff line change 36
36
#ifdef HAVE_SYS_IOCTL_H
37
37
#include < sys/ioctl.h>
38
38
#endif
39
- #ifdef HAVE_TERMIOS_H
40
- #include < termios.h>
41
- #endif
42
39
43
40
// ===----------------------------------------------------------------------===//
44
41
// === WARNING: Implementation here must contain only generic UNIX code that
Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ write_cmake_config("config") {
224
224
" HAVE_SYS_IOCTL_H=" ,
225
225
" HAVE_SYS_MMAN_H=" ,
226
226
" HAVE_SYS_RESOURCE_H=" ,
227
- " HAVE_TERMIOS_H=" ,
228
227
" HAVE_UNISTD_H=" ,
229
228
" HAVE__CHSIZE_S=1" ,
230
229
" HAVE__UNWIND_BACKTRACE=" ,
@@ -258,7 +257,6 @@ write_cmake_config("config") {
258
257
" HAVE_SYS_IOCTL_H=1" ,
259
258
" HAVE_SYS_MMAN_H=1" ,
260
259
" HAVE_SYS_RESOURCE_H=1" ,
261
- " HAVE_TERMIOS_H=1" ,
262
260
" HAVE_UNISTD_H=1" ,
263
261
" HAVE__CHSIZE_S=" ,
264
262
" HAVE__UNWIND_BACKTRACE=1" ,
Original file line number Diff line number Diff line change 195
195
/* Define to 1 if stat struct has st_mtim member. */
196
196
/* HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC defined in Bazel */
197
197
198
- /* Define to 1 if you have the <termios.h> header file. */
199
- #define HAVE_TERMIOS_H 1
200
-
201
198
/* Define to 1 if you have the <unistd.h> header file. */
202
199
/* HAVE_UNISTD_H defined in Bazel */
203
200
Original file line number Diff line number Diff line change 192
192
/* Define to 1 if stat struct has st_mtim member. */
193
193
#cmakedefine HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC ${HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC}
194
194
195
- /* Define to 1 if you have the <termios.h> header file . */
196
- #cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
197
-
198
195
/* Define to 1 if you have the <unistd.h> header file . */
199
196
#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
200
197
You can’t perform that action at this time.
0 commit comments