diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-05-15 10:33:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-15 10:33:52 +0100 |
| commit | f9fd8f0c25bb0b239e5421c39217d2f8c449911f (patch) | |
| tree | 9ba2c4a3db02996a129ceb5e640ee268376d56d2 /src/path.cpp | |
| parent | 59c33dd9fce58f2fdf396a622c446f3912e88a95 (diff) | |
| parent | 6298d4a36c484e0a78dd61a9b1bf760dbae1969a (diff) | |
Merge pull request #3439 from andreas-jonsson/netbsd
NetBSD support
Diffstat (limited to 'src/path.cpp')
| -rw-r--r-- | src/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.cpp b/src/path.cpp index 93f6f5000..26ccb7cbf 100644 --- a/src/path.cpp +++ b/src/path.cpp @@ -341,7 +341,7 @@ gb_internal ReadDirectoryError read_directory(String path, Array<FileInfo> *fi) return ReadDirectory_None; } -#elif defined(GB_SYSTEM_LINUX) || defined(GB_SYSTEM_OSX) || defined(GB_SYSTEM_FREEBSD) || defined(GB_SYSTEM_OPENBSD) || defined(GB_SYSTEM_HAIKU) +#elif defined(GB_SYSTEM_LINUX) || defined(GB_SYSTEM_OSX) || defined(GB_SYSTEM_FREEBSD) || defined(GB_SYSTEM_OPENBSD) || defined(GB_SYSTEM_NETBSD) || defined(GB_SYSTEM_HAIKU) #include <dirent.h> |