diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-02-11 02:17:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@ydb.tech> | 2024-02-14 14:25:50 +0000 |
commit | 0e78f7eecaeb4b2e9e2f8315b2f1638d1332aa1b (patch) | |
tree | f08d8e58f287358575407904326066efb1fb87cd | |
parent | c19e5d0b3a36ffd8e22b1a364817dacb5c3f9fa5 (diff) | |
download | ydb-0e78f7eecaeb4b2e9e2f8315b2f1638d1332aa1b.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: |