config.h 441 B

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