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:
Paul Davis 2013-07-11 12:43:55 -04:00
parent d7b7953705
commit daf570ea5d

View file

@ -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>