mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
26 lines
770 B
C++
26 lines
770 B
C++
--- 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 <unistd.h>
|
|
+#endif
|
|
+
|
|
#define FOR_EACH_WIDGET(it) \
|
|
for (std::list<Widget*>::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);
|