mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
mingw/gcc-8: use glib's stat(), drop hardlink support
This commit is contained in:
parent
64ddc5dd32
commit
26b6b8d840
2 changed files with 7 additions and 3 deletions
|
|
@ -360,8 +360,10 @@ bool
|
|||
hard_link (const std::string& existing_file, const std::string& new_path)
|
||||
{
|
||||
#ifdef PLATFORM_WINDOWS
|
||||
# if defined (COMPILER_MINGW) && !defined(_WIN64) && defined(__GNUC__) && __GNUC__ >= 8
|
||||
return false; // 32bit windows, mingw
|
||||
# if defined (COMPILER_MINGW) && defined(__GNUC__) && __GNUC__ == 8
|
||||
/* For some reason mingx 8.3.0 does not support CreateHardLinkA()
|
||||
* (mingw/gcc-4.9 does) */
|
||||
return false;
|
||||
# else
|
||||
/* see also ntfs_link -- msvc only pbd extension */
|
||||
return CreateHardLinkA (new_path.c_str(), existing_file.c_str(), NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue