diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-02-17 18:42:55 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-02-17 18:56:31 +0300 |
commit | e870b8e4498c5811f699091a9f7fec73039559ee (patch) | |
tree | f901f6ebde34fba613150a857158a99cb349ab08 | |
parent | bc8b113d3f9f17e8046cd854140f9b222933ce78 (diff) | |
download | ydb-e870b8e4498c5811f699091a9f7fec73039559ee.tar.gz |
Disable VMS-specific includes
bf43b0733be8e25edb2cae010fffc7aa15f192f2
-rw-r--r-- | contrib/libs/lzma/common/tuklib_physmem.c | 6 | ||||
-rw-r--r-- | contrib/libs/zlib/zconf.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libs/lzma/common/tuklib_physmem.c b/contrib/libs/lzma/common/tuklib_physmem.c index 61c62eb71d..aace0ff09f 100644 --- a/contrib/libs/lzma/common/tuklib_physmem.c +++ b/contrib/libs/lzma/common/tuklib_physmem.c @@ -29,9 +29,9 @@ # error #include <dpmi.h> #elif defined(__VMS) -# include <lib$routines.h> -# include <syidef.h> -# include <ssdef.h> +# error #include <lib$routines.h> +# error #include <syidef.h> +# error #include <ssdef.h> #elif defined(AMIGA) || defined(__AROS__) # define __USE_INLINE__ diff --git a/contrib/libs/zlib/zconf.h b/contrib/libs/zlib/zconf.h index 58aea62490..b68680da95 100644 --- a/contrib/libs/zlib/zconf.h +++ b/contrib/libs/zlib/zconf.h @@ -498,7 +498,7 @@ typedef uLong FAR uLongf; # if defined(Z_HAVE_UNISTD_H) # include <unistd.h> /* for SEEK_*, off_t, and _LFS64_LARGEFILE */ # ifdef VMS -# include <unixio.h> /* for off_t */ +# error #include <unixio.h> /* for off_t */ # endif # ifndef z_off_t # define z_off_t off_t |