From df800b5f41964ef835d06d729d091eb34944b937 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 14 Jun 2018 13:29:19 +0200 Subject: [PATCH] Fix check --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 852623e..81a7049 100644 --- a/meson.build +++ b/meson.build @@ -83,7 +83,7 @@ if get_option('enable-synctex') and synctex.found() build_dependencies += synctex defines += '-DWITH_SYNCTEX' if synctex.version() < '2.0.0' - if synctex.version() < '1.19.0' + if synctex.version() >= '1.19.0' warning('You are using a synctex version pre-SONAME bump, but post-ABI-break. Please make sure to always run zathura using the correct synctex version.') else defines += '-DWITH_SYNCTEX1'