version.h 742 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Macros for the header version.
  2. */
  3. #ifndef VIPS_VERSION_H
  4. #define VIPS_VERSION_H
  5. #define VIPS_VERSION "8.9.1"
  6. #define VIPS_VERSION_STRING "8.9.1-"
  7. #define VIPS_MAJOR_VERSION (8)
  8. #define VIPS_MINOR_VERSION (9)
  9. #define VIPS_MICRO_VERSION (1)
  10. /* The ABI version, as used for library versioning.
  11. */
  12. #define VIPS_LIBRARY_CURRENT (54)
  13. #define VIPS_LIBRARY_REVISION (1)
  14. #define VIPS_LIBRARY_AGE (12)
  15. /**
  16. * VIPS_SONAME:
  17. *
  18. * The name of the shared object containing the vips library, for example
  19. * "libvips.so.42", or "libvips-42.dll".
  20. */
  21. #include "soname.h"
  22. /* Not really anything to do with versions, but this is a handy place to put
  23. * it.
  24. */
  25. #define VIPS_EXEEXT ".exe"
  26. #define VIPS_ENABLE_DEPRECATED 1
  27. #endif /*VIPS_VERSION_H*/