build: bump version 1.8.14

This commit is contained in:
Dirk-Jan C. Binnema 2023-01-29 12:18:51 +02:00
parent 38c18f11f2
commit f48402ce65
2 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
## Copyright (C) 2008-2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ## Copyright (C) 2008-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
## ##
## This program is free software; you can redistribute it and/or modify ## 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 ## it under the terms of the GNU General Public License as published by
@ -43,10 +43,10 @@ AC_PROG_EGREP
extra_flags="-Wformat-security \ extra_flags="-Wformat-security \
-Wstack-protector \ -Wstack-protector \
-Wstack-protector-all \ -Wstack-protector-all \
-Wno-cast-function-type \ -Wno-cast-function-type \
-Wno-bad-function-cast \ -Wno-bad-function-cast \
-Wno-switch-enum" -Wno-switch-enum"
AX_CXX_COMPILE_STDCXX_17 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 # asan is somewhat similar to valgrind, but has low enough overhead so it
# can be used during normal operation. # can be used during normal operation.
AC_ARG_ENABLE([asan],[AS_HELP_STRING([--enable-asan], 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"],[ AS_IF([test "x$use_asan" = "xyes"],[
AC_SUBST(ASAN_CFLAGS, "-fsanitize=address -static-libasan -fno-omit-frame-pointer") AC_SUBST(ASAN_CFLAGS, "-fsanitize=address -static-libasan -fno-omit-frame-pointer")
AC_SUBST(ASAN_CXXFLAGS,"-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 \ 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?])]) AM_COND_IF([BUILD_GUILE],[AC_DEFINE(BUILD_GUILE,[1], [Do we support Guile?])])
############################################################################### ###############################################################################

View File

@ -1,4 +1,4 @@
## Copyright (C) 2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ## Copyright (C) 2022-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
## ##
## This program is free software; you can redistribute it and/or modify ## 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 ## it under the terms of the GNU General Public License as published by
@ -18,15 +18,15 @@
# project setup # project setup
# #
project('mu', ['c', 'cpp'], project('mu', ['c', 'cpp'],
version: '1.8.13', version: '1.8.14',
meson_version: '>= 0.52.0', # debian 10 meson_version: '>= 0.52.0', # debian 10
license: 'GPL-3.0-or-later', license: 'GPL-3.0-or-later',
default_options : [ default_options : [
'buildtype=debugoptimized', 'buildtype=debugoptimized',
'warning_level=3', 'warning_level=3',
'c_std=c11', 'c_std=c11',
'cpp_std=c++17' 'cpp_std=c++17'
] ]
) )
# installation paths # installation paths
@ -178,8 +178,8 @@ version_texi_data.set('UPDATEDMONTH',
run_command('date', '+%B %Y', check:true).stdout().strip()) run_command('date', '+%B %Y', check:true).stdout().strip())
configure_file(input: 'version.texi.in', configure_file(input: 'version.texi.in',
output: 'version.texi', output: 'version.texi',
configuration: version_texi_data) configuration: version_texi_data)
################################################################################ ################################################################################
# install some data files # install some data files