view 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
line wrap: on
line source

/*

Copyright (C) 2016 M. Muetzel

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.

Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#if ! defined (octave_octave_build_info_h)
#define octave_octave_build_info_h 1

#include "octave-config.h"

#include <ctime>

#include <string>

extern std::string octave_hg_id (void);

#endif