config.h 311 B

1234567891011121314151617
  1. // To make gtkcolorpicker* compile.
  2. #ifndef GTK_COMPILATION
  3. # define GTK_COMPILATION
  4. #endif
  5. #if defined(_WIN32) || defined(_WIN64)
  6. # if !defined(G_OS_WIN32)
  7. # define G_OS_WIN32 1
  8. # endif
  9. #elif defined(__linux__)
  10. # if !defined(G_OS_UNIX)
  11. # define G_OS_UNIX 1
  12. # endif
  13. #else
  14. # error "Unknown platform."
  15. #endif