comparison src/octave-build-info.h @ 21608:80258bb3a14b

store hg id info in libgui and main exe and check for consistency (bug #45659) * libgui/src/liboctgui-build-info.h, libgui/src/liboctgui-build-info.in.cc, src/octave-build-info.h, src/octave-build-info.in.cc: New files. * libgui/src/module.mk, src/module.mk: Update. * main-cli.cc (check_hg_versions): New function. * main-gui.cc (check_hg_versions): New function. * toplev.cc (F__octave_config_info__): Only keep one hg_id field since all libraries and the main executable file are required to match.
author John W. Eaton <jwe@octave.org>
date Mon, 11 Apr 2016 13:53:17 -0400
parents
children 3a2b891d0b33 3ac9f9ecfae5
comparison
equal deleted inserted replaced
21607:37f6ed8a6f1b 21608:80258bb3a14b
1 /*
2
3 Copyright (C) 2016 M. Muetzel
4
5 This file is part of Octave.
6
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20
21 */
22
23 #if ! defined (octave_octave_build_info_h)
24 #define octave_octave_build_info_h 1
25
26 #include "octave-config.h"
27
28 #include <ctime>
29
30 #include <string>
31
32 extern std::string octave_hg_id (void);
33
34 #endif