summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-11 12:43:55 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-11 12:43:55 -0400
commitdaf570ea5df1013e3b237ed35df1b565340851d1 (patch)
tree2386912602e6dba09831c7cace6a6e1cb2cf5c15 /libs
parentd7b7953705b1fc22f0803b428fedfde36c5ddcaa (diff)
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.
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/mountpoint.cc8
1 files changed, 8 insertions, 0 deletions
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 <sys/param.h>