diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-02-11 02:17:24 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-02-11 02:31:18 +0300 |
commit | 6b55a03ce07563aaf0bbc805ba116b9b87862f84 (patch) | |
tree | 14e385b85cc7968dc13738165e01d9477e57ce1c | |
parent | 9e322e3a9be4c41f300c9832e574aa38077cdcea (diff) | |
download | ydb-6b55a03ce07563aaf0bbc805ba116b9b87862f84.tar.gz |
Move OS-specific sysincls to where they belong
-rw-r--r-- | build/sysincl/android.yml | 1 | ||||
-rw-r--r-- | build/sysincl/unsorted.yml | 9 | ||||
-rw-r--r-- | build/sysincl/windows.yml | 9 |
3 files changed, 10 insertions, 9 deletions
diff --git a/build/sysincl/android.yml b/build/sysincl/android.yml index 277a932da6..7345d271ba 100644 --- a/build/sysincl/android.yml +++ b/build/sysincl/android.yml @@ -23,6 +23,7 @@ - SLES/OpenSLES_AndroidMetadata.h - SLES/OpenSLES_Platform.h - linux/ashmem.h + - time64.h - source_filter: "^contrib/libs/breakpad/src" includes: diff --git a/build/sysincl/unsorted.yml b/build/sysincl/unsorted.yml index 81f5db9082..7f09f12499 100644 --- a/build/sysincl/unsorted.yml +++ b/build/sysincl/unsorted.yml @@ -210,9 +210,6 @@ - ../include/sys/stat.h - ../include/fcntl.h - ../include/math.h - - vcruntime_exception.h - - vcruntime_new.h - - vcruntime_typeinfo.h #endif - source_filter: "^contrib/(libs/(apache|httpd|libuv)|python/uWSGI)" @@ -629,8 +626,6 @@ #endif - includes: - - Aclapi.h - - time64.h - extern.h #if defined(__FreeBSD__) - _ctype.h @@ -673,10 +668,6 @@ - i386/fpu_control.h - zlibdefs.h #endif - #if defined(_MSC_VER) - - vcruntime_new_debug.h - - yvals.h - #endif #if defined(__sgi) - sigfpe.h #endif diff --git a/build/sysincl/windows.yml b/build/sysincl/windows.yml index 9acce49358..ca5f3156f0 100644 --- a/build/sysincl/windows.yml +++ b/build/sysincl/windows.yml @@ -320,6 +320,15 @@ - xinput.h - xmllite.h +# These headers are Microsoft Visual C specific. +- case_sensitive: false + includes: + - vcruntime_exception.h + - vcruntime_new.h + - vcruntime_typeinfo.h + - vcruntime_new_debug.h + - yvals.h + # These headers belong to UWP application development. - case_sensitive: false includes: |