1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

[Linux] Make SO wrapper usage optional.

This commit is contained in:
bruvzg
2023-02-15 14:13:56 +02:00
parent 953383328a
commit dd068794c3
21 changed files with 259 additions and 32 deletions

View File

@@ -41,7 +41,11 @@
#include "servers/audio_server.h"
#ifdef FONTCONFIG_ENABLED
#ifdef SOWRAP_ENABLED
#include "fontconfig-so_wrap.h"
#else
#include <fontconfig/fontconfig.h>
#endif
#endif
class OS_LinuxBSD : public OS_Unix {