mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Add an empty implementation of PBD::mountpoint for mingw
PBD::mountpoint is only used to find peakfiles for old sessions, so it might not be necessary to implement this for windows.
This commit is contained in:
parent
d7b7953705
commit
daf570ea5d
1 changed files with 8 additions and 0 deletions
|
|
@ -94,6 +94,14 @@ mountpoint (string path)
|
|||
return best;
|
||||
}
|
||||
|
||||
#elif defined(WIN32)
|
||||
|
||||
string
|
||||
mountpoint (string path)
|
||||
{
|
||||
// TODO ... if needed
|
||||
}
|
||||
|
||||
#else // !HAVE_GETMNTENT
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue