--- dpf/dgl/src/Window.cpp.orig 2021-01-15 11:38:19 UTC +++ dpf/dgl/src/Window.cpp @@ -65,6 +65,10 @@ extern "C" { #include "../StandaloneWindow.hpp" #include "../../distrho/extra/String.hpp" +#if defined(__FreeBSD__) +#include +#endif + #define FOR_EACH_WIDGET(it) \ for (std::list::iterator it = fWidgets.begin(); it != fWidgets.end(); ++it) @@ -1426,7 +1430,12 @@ bool Window::openFileBrowser(const FileBrowserOptions& # ifdef DISTRHO_OS_LINUX if (startDir.isEmpty()) { +#if defined(__FreeBSD__) + char buf[1024]; + if (char* const dir_name = ::getwd(buf)) +#else if (char* const dir_name = get_current_dir_name()) +#endif { startDir = dir_name; std::free(dir_name);