1 | #ifndef CONFIG_H |
---|---|
2 | #define CONFIG_H |
3 | |
4 | /* This configuration file is custom written for Godot. |
5 | * When updating the library, generate it with CMake upstream and compare |
6 | * the contents to see if new options should be backported here. |
7 | */ |
8 | |
9 | // Those are handled in our SCsub. |
10 | /* #undef HAVE_ARPA_INET_H */ |
11 | /* #undef HAVE_NETINET_IN_H */ |
12 | /* #undef HAVE_WINSOCK2_H */ |
13 | |
14 | #ifdef BIG_ENDIAN_ENABLED |
15 | #define WORDS_BIGENDIAN |
16 | #endif |
17 | |
18 | #endif /* CONFIG_H */ |
19 |