Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Fri, 07 Jun 2024 20:12:49 UTC Commit: 186166f5ca30d126cb4ee663df73947dfa616d10 https://github.com/geany/geany/commit/186166f5ca30d126cb4ee663df73947dfa616d...
Log Message: ----------- meson: make VERSION contain string, not a double
In autotools, the generated config.h contains
#define VERSION "2.1"
while in meson it's
#define VERSION 2.1
Modified Paths: -------------- meson.build
Modified: meson.build 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -118,7 +118,7 @@ cdata.set_quoted('PACKAGE_NAME','Geany') cdata.set_quoted('PACKAGE_STRING', 'Geany ' + meson.project_version()) cdata.set_quoted('PACKAGE_VERSION', meson.project_version()) cdata.set('GETTEXT_PACKAGE', 'PACKAGE') -cdata.set('VERSION', meson.project_version()) +cdata.set_quoted('VERSION', meson.project_version()) cdata.set('ENABLE_NLS', 1) if (host_machine.system() != 'windows' and get_option('vte')) cdata.set('HAVE_VTE', 1)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).