40.0-internal-synctex.patch 921 B

1234567891011121314151617181920212223242526272829
  1. From ce976d98317535d17d8aabd67729918a94b24cea Mon Sep 17 00:00:00 2001
  2. From: Matt Turner <mattst88@gmail.com>
  3. Date: Mon, 12 Apr 2021 23:07:50 -0400
  4. Subject: [PATCH] build: always use internal synctex instead of automagically
  5. We don't have a separate synctex package and would have to pull in
  6. all of texlive-core; so instead of fixing the automagic use of it,
  7. just remove support for external synctex, as that's easier.
  8. ---
  9. meson.build | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/meson.build b/meson.build
  12. index abee124d..63c5040c 100644
  13. --- a/meson.build
  14. +++ b/meson.build
  15. @@ -251,7 +251,7 @@ config_h.set('HAVE_DESKTOP_SCHEMAS', gsettings_desktop_schemas_dep.found())
  16. # *** libsynctex ***
  17. synctex_dep = dependency('synctex', version: '>= 1.19', required: false)
  18. -external_synctex = synctex_dep.found()
  19. +external_synctex = false
  20. # *** Mime types list ***
  21. mime_types_list = {
  22. --
  23. 2.26.3