1 /* gEDA - GPL Electronic Design Automation
2 * gattrib -- gEDA component and net attribute manipulation using spreadsheet.
3 * Copyright (C) 2003-2010 Stuart D. Brorson.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * \brief RC-file specific functions
23 * RC-file specific functions for Scheme. At the moment it only
24 * contains a function to test the version number of the program.
44 /*------------------------------------------------------------------
45 * Gattrib specific includes
46 *------------------------------------------------------------------*/
47 #include <libgeda/libgeda.h> /* geda library fcns */
48 #include "../include/struct.h" /* typdef and struct declarations */
49 #include "../include/prototype.h" /* function prototypes */
50 #include "../include/globals.h"
51 #include "../include/i_vars.h" /* This holds all the guile variable defs */
54 #ifdef HAVE_LIBDMALLOC
58 /*------------------------------------------------------------------*/
59 /*! \brief Test the version of gattrib and gEDA/gaf
61 * \param version Version being tested
62 * \returns false if incorrect version, true if OK
64 SCM
g_rc_gattrib_version(SCM scm_version
)
69 SCM_ASSERT (scm_is_string (scm_version
), scm_version
,
70 SCM_ARG1
, "gattrib-version");
72 version
= scm_to_utf8_string (scm_version
);
73 if (g_strcasecmp (version
, PACKAGE_DATE_VERSION
) != 0) {
75 "You are running gEDA/gaf version [%s%s.%s],\n",
76 PREPEND_VERSION_STRING
, PACKAGE_DOTTED_VERSION
,
77 PACKAGE_DATE_VERSION
);
79 "but you have a version [%s] gattribrc file.\n",
82 "Please be sure that you have the latest rc file.\n");