I think you use the GP_CHECK_GTK3 macro like this.

Untested, but something like this I guess:

GP_CHECK_GTK3([vte_package="vte >= 0.17"], [vte_package=vte-2.91])
GP_CHECK_PLUGIN_DEPS([scope], [VTE], [$vte_package])

I'm not sure about the vte >= 0.17 part in quotes, but I suppose at worst you could figure out what version is the earliest for vte-2.91 and then have both branches do the version check like this (using 0.48 as example):

GP_CHECK_GTK3([
  vte_package=vte
  vte_version=0.17
], [
  vte_package=vte-2.91
  vte_version=0.48
])
GP_CHECK_PLUGIN_DEPS([scope], [VTE], [$vte_package >= $vte_version])


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.