mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-22 18:47:09 +01:00
[vcpkg] fix extern C around ctermid (#11343)
Additionally, move the system_header invocations to their own header file, <vcpkg/base/system_header.h>
This commit is contained in:
parent
9b4535e7ee
commit
9d9a50bc98
@ -1,22 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <vcpkg/base/pragmas.h>
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
#define NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
|
||||
#pragma warning(suppress : 4768)
|
||||
#include <windows.h>
|
||||
|
||||
#pragma warning(suppress : 4768)
|
||||
#include <Shlobj.h>
|
||||
|
||||
#include <process.h>
|
||||
#include <shellapi.h>
|
||||
#include <winhttp.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
@ -29,13 +19,15 @@
|
||||
#include <cstdarg>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING
|
||||
#include <cstring>
|
||||
|
||||
#if VCPKG_USE_STD_FILESYSTEM
|
||||
#include <filesystem>
|
||||
#else
|
||||
#define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING
|
||||
#include <experimental/filesystem>
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <functional>
|
||||
#include <iomanip>
|
||||
@ -55,11 +47,6 @@
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
// glibc defines major and minor in sys/types.h, and should not
|
||||
#undef major
|
||||
#undef minor
|
||||
|
||||
#include <system_error>
|
||||
#include <thread>
|
||||
#include <time.h>
|
||||
|
@ -1,3 +1,5 @@
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
|
||||
#include <catch2/catch.hpp>
|
||||
#include <vcpkg/base/pragmas.h>
|
||||
|
||||
|
35
toolsrc/include/vcpkg/base/system_headers.h
Normal file
35
toolsrc/include/vcpkg/base/system_headers.h
Normal file
@ -0,0 +1,35 @@
|
||||
#pragma once
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
||||
#define NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
|
||||
#pragma warning(suppress : 4768)
|
||||
#include <windows.h>
|
||||
|
||||
#pragma warning(suppress : 4768)
|
||||
#include <Shlobj.h>
|
||||
|
||||
#else // ^^^^ Windows / Unix vvvv
|
||||
|
||||
// 2020-05-19: workaround for a c standard library bug
|
||||
// ctermid is not behind an `extern "C"` barrier, so it's linked incorrectly.
|
||||
// This has been reported; remove it after 2023-05-19
|
||||
#if __APPLE__
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#if __APPLE__
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
// glibc defines major and minor in sys/types.h, and should not
|
||||
#undef major
|
||||
#undef minor
|
||||
|
@ -1,4 +1,4 @@
|
||||
#define _POSIX_C_SOURCE 200112L
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
#include <catch2/catch.hpp>
|
||||
|
||||
#include <string>
|
||||
@ -8,14 +8,6 @@
|
||||
#include <vcpkg/base/strings.h>
|
||||
#include <vcpkg/base/system.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
#define _NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#else
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
using vcpkg::Optional;
|
||||
using vcpkg::StringView;
|
||||
using vcpkg::ZStringView;
|
||||
|
@ -1,3 +1,5 @@
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
|
||||
#include <catch2/catch.hpp>
|
||||
#include <vcpkg-test/util.h>
|
||||
|
||||
@ -20,15 +22,13 @@
|
||||
#define FILESYSTEM_SYMLINK_UNIX 1
|
||||
#define FILESYSTEM_SYMLINK_NONE 2
|
||||
|
||||
#if defined(__cpp_lib_filesystem)
|
||||
#if VCPKG_USE_STD_FILESYSTEM
|
||||
|
||||
#define FILESYSTEM_SYMLINK FILESYSTEM_SYMLINK_STD
|
||||
#include <filesystem> // required for filesystem::create_{directory_}symlink
|
||||
|
||||
#elif !defined(_MSC_VER)
|
||||
|
||||
#define FILESYSTEM_SYMLINK FILESYSTEM_SYMLINK_UNIX
|
||||
#include <unistd.h>
|
||||
|
||||
#else
|
||||
|
||||
@ -169,10 +169,10 @@ namespace vcpkg::Test
|
||||
#if FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_STD
|
||||
if (can_create_symlinks())
|
||||
{
|
||||
std::filesystem::path targetp = target.native();
|
||||
std::filesystem::path filep = file.native();
|
||||
fs::path targetp = target.native();
|
||||
fs::path filep = file.native();
|
||||
|
||||
std::filesystem::create_symlink(targetp, filep, ec);
|
||||
fs::stdfs::create_symlink(targetp, filep, ec);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1,17 +1,6 @@
|
||||
#include <vcpkg/base/pragmas.h>
|
||||
|
||||
#if defined(_WIN32)
|
||||
#define NOMINMAX
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <Windows.h>
|
||||
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4768)
|
||||
#include <ShlObj.h>
|
||||
#pragma warning(pop)
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
|
||||
#include <vcpkg/base/chrono.h>
|
||||
#include <vcpkg/base/files.h>
|
||||
|
@ -11,9 +11,8 @@
|
||||
#if !defined(_WIN32)
|
||||
#include <fcntl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#endif // ^^^ !defined(_WIN32)
|
||||
#endif
|
||||
|
||||
#if defined(__linux__)
|
||||
#include <sys/sendfile.h>
|
||||
#elif defined(__APPLE__)
|
||||
|
@ -3,7 +3,8 @@
|
||||
#include <vcpkg/base/checks.h>
|
||||
#include <vcpkg/base/files.h>
|
||||
|
||||
#include <Windows.h>
|
||||
#include <vcpkg/base/system_headers.h>
|
||||
#include <shellapi.h>
|
||||
|
||||
using namespace vcpkg;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user