UVES Pipeline Reference Manual  5.5.4
flames_recipe.c
1 /* *
2  * This file is part of the ESO UVES Pipeline *
3  * Copyright (C) 2004,2005 European Southern Observatory *
4  * *
5  * This library 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. *
9  * *
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. *
14  * *
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, 51 Franklin St, Fifth Floor, Boston MA 02110-1301 USA *
18  */
19 
20 /*
21  * $Author: amodigli $
22  * $Date: 2007-06-06 08:17:33 $
23  * $Revision: 1.3 $
24  * $Name: not supported by cvs2svn $
25  */
26 
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30 
31 /*----------------------------------------------------------------------------*/
35 /*----------------------------------------------------------------------------*/
36 
37 #include <flames.h>
38 #include <flames_utils.h>
39 #include <uves_utils.h>
40 
41 int cpl_plugin_get_info(cpl_pluginlist *list)
42 {
43  if (UVES_BINARY_VERSION != uves_get_version_binary())
44  {
45  cpl_msg_error(__func__,
46  "I am recipe version %d, but I am linking "
47  "against UVES library version %d. "
48  "This will not work. "
49  "Please remove all previous installations "
50  "of the " PACKAGE_NAME " and try again.",
51  UVES_BINARY_VERSION, uves_get_version_binary());
52  return 1;
53  }
54 
55  if (UVES_BINARY_VERSION != flames_get_version_binary())
56  {
57  cpl_msg_error(__func__,
58  "I am recipe version %d, but I am linking "
59  "against FLAMES library version %d. "
60  "This will not work. "
61  "Please remove all previous installations "
62  "of the " PACKAGE_NAME " and try again.",
63  UVES_BINARY_VERSION, flames_get_version_binary());
64  return 1;
65  }
66 
67  return recipe_get_info(list);
68 }
int cpl_plugin_get_info(cpl_pluginlist *list)
Build the list of available plugins, for this module.
int uves_get_version_binary(void)
Get UVES library binary version number.
Definition: uves_utils.c:1660