External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
734B

  1. --- sratom-static-0.6.18.orig/meson.build
  2. +++ sratom-static-0.6.18/meson.build
  3. @@ -119,6 +119,12 @@ c_suppressions = cc.get_supported_argume
  4. m_dep = cc.find_library('m', required: false)
  5. +zix_dep = dependency(
  6. + 'zix-0',
  7. + fallback: 'zix',
  8. + version: '>= 0.4.0'
  9. +)
  10. +
  11. serd_dep = dependency(
  12. 'serd-0',
  13. fallback: 'serd',
  14. @@ -171,7 +177,7 @@ libsratom = library(
  15. sources,
  16. c_args: c_suppressions + extra_c_args + ['-DSRATOM_INTERNAL'],
  17. darwin_versions: [major_version + '.0.0', meson.project_version()],
  18. - dependencies: [m_dep, lv2_dep, serd_dep, sord_dep],
  19. + dependencies: [m_dep, lv2_dep, zix_dep, serd_dep, sord_dep],
  20. gnu_symbol_visibility: 'hidden',
  21. include_directories: include_dirs,
  22. install: true,