From f48402ce651694f808c9e9e09285faaca020a3ab Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 29 Jan 2023 12:18:51 +0200 Subject: [PATCH] build: bump version 1.8.14 --- configure.ac | 14 +++++++------- meson.build | 24 ++++++++++++------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/configure.ac b/configure.ac index 9654b987..5e44d5d1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -## Copyright (C) 2008-2022 Dirk-Jan C. Binnema +## Copyright (C) 2008-2023 Dirk-Jan C. Binnema ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -43,10 +43,10 @@ AC_PROG_EGREP extra_flags="-Wformat-security \ - -Wstack-protector \ - -Wstack-protector-all \ - -Wno-cast-function-type \ - -Wno-bad-function-cast \ + -Wstack-protector \ + -Wstack-protector-all \ + -Wno-cast-function-type \ + -Wno-bad-function-cast \ -Wno-switch-enum" AX_CXX_COMPILE_STDCXX_17 @@ -69,7 +69,7 @@ AC_SYS_LARGEFILE # asan is somewhat similar to valgrind, but has low enough overhead so it # can be used during normal operation. AC_ARG_ENABLE([asan],[AS_HELP_STRING([--enable-asan], - [Enable Address Sanitizer])], [use_asan=$enableval], [use_asan=no]) + [Enable Address Sanitizer])], [use_asan=$enableval], [use_asan=no]) AS_IF([test "x$use_asan" = "xyes"],[ AC_SUBST(ASAN_CFLAGS, "-fsanitize=address -static-libasan -fno-omit-frame-pointer") AC_SUBST(ASAN_CXXFLAGS,"-fsanitize=address -static-libasan -fno-omit-frame-pointer") @@ -219,7 +219,7 @@ AS_IF([test "x$enable_guile" != "xno"],[ ]) AM_CONDITIONAL(BUILD_GUILE,[test "x$have_guile" = "xyes" -a \ - "x$ac_cv_prog_GUILE_SNARF" != "xno"]) + "x$ac_cv_prog_GUILE_SNARF" != "xno"]) AM_COND_IF([BUILD_GUILE],[AC_DEFINE(BUILD_GUILE,[1], [Do we support Guile?])]) ############################################################################### diff --git a/meson.build b/meson.build index e3f20a9e..3d2839a9 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -## Copyright (C) 2022 Dirk-Jan C. Binnema +## Copyright (C) 2022-2023 Dirk-Jan C. Binnema ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -18,15 +18,15 @@ # project setup # project('mu', ['c', 'cpp'], - version: '1.8.13', - meson_version: '>= 0.52.0', # debian 10 - license: 'GPL-3.0-or-later', - default_options : [ - 'buildtype=debugoptimized', - 'warning_level=3', - 'c_std=c11', - 'cpp_std=c++17' - ] + version: '1.8.14', + meson_version: '>= 0.52.0', # debian 10 + license: 'GPL-3.0-or-later', + default_options : [ + 'buildtype=debugoptimized', + 'warning_level=3', + 'c_std=c11', + 'cpp_std=c++17' + ] ) # installation paths @@ -178,8 +178,8 @@ version_texi_data.set('UPDATEDMONTH', run_command('date', '+%B %Y', check:true).stdout().strip()) configure_file(input: 'version.texi.in', - output: 'version.texi', - configuration: version_texi_data) + output: 'version.texi', + configuration: version_texi_data) ################################################################################ # install some data files