From daf570ea5df1013e3b237ed35df1b565340851d1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 11 Jul 2013 12:43:55 -0400 Subject: [PATCH] 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. --- libs/pbd/mountpoint.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/pbd/mountpoint.cc b/libs/pbd/mountpoint.cc index 46cea42e0a..b2fb84760d 100644 --- a/libs/pbd/mountpoint.cc +++ b/libs/pbd/mountpoint.cc @@ -94,6 +94,14 @@ mountpoint (string path) return best; } +#elif defined(WIN32) + +string +mountpoint (string path) +{ + // TODO ... if needed +} + #else // !HAVE_GETMNTENT #include