diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2022-02-28 14:23:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-28 14:23:56 +0000 |
| commit | dd9843aa2102ba2df42e04d86680e03a27fa45f8 (patch) | |
| tree | f48570df88dd42730bbd9f545eab89c352550aa8 /src/common.cpp | |
| parent | 3c72cb67d3f031a71152aadc480f5838d1833228 (diff) | |
| parent | 04297bb68034196a212b040990bdeb4dc006c340 (diff) | |
Merge pull request #1557 from semarie/openbsd-support
initial OpenBSD support
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp index d3ee95b76..aaacda04b 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -848,7 +848,7 @@ ReadDirectoryError read_directory(String path, Array<FileInfo> *fi) { return ReadDirectory_None; } -#elif defined(GB_SYSTEM_LINUX) || defined(GB_SYSTEM_OSX) || defined(GB_SYSTEM_FREEBSD) +#elif defined(GB_SYSTEM_LINUX) || defined(GB_SYSTEM_OSX) || defined(GB_SYSTEM_FREEBSD) || defined(GB_SYSTEM_OPENBSD) #include <dirent.h> |