solvversion.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2016, SUSE LLC
  3. *
  4. * This program is licensed under the BSD license, read LICENSE.BSD
  5. * for further information
  6. */
  7. /*
  8. * solvversion.h
  9. *
  10. */
  11. #ifndef LIBSOLV_SOLVVERSION_H
  12. #define LIBSOLV_SOLVVERSION_H
  13. #define LIBSOLV_VERSION_STRING "0.7.22"
  14. #define LIBSOLV_VERSION_MAJOR 0
  15. #define LIBSOLV_VERSION_MINOR 7
  16. #define LIBSOLV_VERSION_PATCH 22
  17. #define LIBSOLV_VERSION (LIBSOLV_VERSION_MAJOR * 10000 + LIBSOLV_VERSION_MINOR * 100 + LIBSOLV_VERSION_PATCH)
  18. extern const char solv_version[];
  19. extern int solv_version_major;
  20. extern int solv_version_minor;
  21. extern int solv_version_patch;
  22. extern const char solv_toolversion[];
  23. /* #undef LIBSOLV_FEATURE_LINKED_PKGS */
  24. /* #undef LIBSOLV_FEATURE_COMPLEX_DEPS */
  25. #define LIBSOLV_FEATURE_MULTI_SEMANTICS
  26. #define LIBSOLV_FEATURE_CONDA
  27. #define LIBSOLVEXT_FEATURE_PCRE2
  28. /* #undef LIBSOLVEXT_FEATURE_RPMPKG */
  29. /* #undef LIBSOLVEXT_FEATURE_RPMDB */
  30. /* #undef LIBSOLVEXT_FEATURE_RPMDB_BYRPMHEADER */
  31. /* #undef LIBSOLVEXT_FEATURE_PUBKEY */
  32. /* #undef LIBSOLVEXT_FEATURE_RPMMD */
  33. /* #undef LIBSOLVEXT_FEATURE_SUSEREPO */
  34. /* #undef LIBSOLVEXT_FEATURE_COMPS */
  35. /* #undef LIBSOLVEXT_FEATURE_HELIXREPO */
  36. /* #undef LIBSOLVEXT_FEATURE_DEBIAN */
  37. /* #undef LIBSOLVEXT_FEATURE_ARCHREPO */
  38. /* #undef LIBSOLVEXT_FEATURE_HAIKU */
  39. /* #undef LIBSOLVEXT_FEATURE_APPDATA */
  40. #define LIBSOLVEXT_FEATURE_ZLIB_COMPRESSION
  41. /* #undef LIBSOLVEXT_FEATURE_LZMA_COMPRESSION */
  42. /* #undef LIBSOLVEXT_FEATURE_BZIP2_COMPRESSION */
  43. /* #undef LIBSOLVEXT_FEATURE_ZSTD_COMPRESSION */
  44. /* #undef LIBSOLVEXT_FEATURE_ZCHUNK_COMPRESSION */
  45. /* see tools/common_write.c for toolversion history */
  46. #define LIBSOLV_TOOLVERSION "1.2"
  47. #endif