Skip to content

Commit

Permalink
an ifdef was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
pgulutzan committed Jul 23, 2020
1 parent 6c29d5f commit 73abc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocelotgui.h
Original file line number Diff line number Diff line change
Expand Up @@ -2598,7 +2598,7 @@ typedef char MY_BOOL;
We use stat() to see if a configuration file is world-writable, therefore include stat.h.
Todo: There was no error when I didn't do this for FreeBSD. Is it using Qt library and surviving?
*/
#ifdef OCELOT_OS_LINUX
#if (defined(OCELOT_OS_LINUX) || defined(OCELOT_OS_FREEBSD))
#include <dlfcn.h>
#if (OCELOT_STATIC_LIBRARY == 0)
#include <link.h>
Expand Down

0 comments on commit 73abc0f

Please sign in to comment.