From 9ff1d8556c66299eaa32b3a2ed85d1e0d045b578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Wed, 26 Jul 2023 14:11:08 +0200 Subject: [PATCH] libkorder: remove mention of Dynare++ in the journal By the way, use PACKAGE_VERSION macro (instead of VERSION), for consistency with the preprocessor. --- mex/sources/libkorder/kord/journal.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/mex/sources/libkorder/kord/journal.cc b/mex/sources/libkorder/kord/journal.cc index 6f024e698..60f9b56d4 100644 --- a/mex/sources/libkorder/kord/journal.cc +++ b/mex/sources/libkorder/kord/journal.cc @@ -1,6 +1,6 @@ /* * Copyright © 2004-2011 Ondra Kamenik - * Copyright © 2019-2022 Dynare Team + * Copyright © 2019-2023 Dynare Team * * This file is part of Dynare. * @@ -200,13 +200,8 @@ endrec(JournalRecord &rec) void Journal::printHeader() { - *this << "Dynare++ v. " << VERSION << '\n' + *this << "Dynare, version " << PACKAGE_VERSION << '\n' << '\n' - << "Copyright © 2004-2011 Ondra Kamenik\n" - << "Copyright © 2019-2020 Dynare Team\n" - << "Dynare++ comes with ABSOLUTELY NO WARRANTY and is distributed under the GNU GPL,\n" - << "version 3 or later (see https://www.gnu.org/licenses/gpl.html)\n" - << "\n\n" << "System info: "; #ifndef _WIN32 utsname info;