Description: make name of "name_of_this_file_C" variable unique
 Each C++ file contains a variable named after the file name and
 holding the CVS version number. This variable is not static (it
 probably should be) so the variable name must be unique, else we
 cannot combine the various files in a shared library.  In a couple of
 file, the name was eroneous and therefor not unique. This patch
 carrects this.
Origin: vendor
Forwarded: yes, by e-mail
Last-Update: 2016-09-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/C++/Source/Gravastar/gravastar.C
+++ b/C++/Source/Gravastar/gravastar.C
@@ -25,7 +25,7 @@
  *
  */
 
-char star_bhns_C[] = "$Header: /cvsroot/Lorene/C++/Source/Gravastar/gravastar.C,v 1.3 2014/10/13 08:52:59 j_novak Exp $" ;
+char gravastar_C[] = "$Header: /cvsroot/Lorene/C++/Source/Gravastar/gravastar.C,v 1.3 2014/10/13 08:52:59 j_novak Exp $" ;
 
 
 // C++ headers
--- a/C++/Source/Non_class_members/Graphics/save_profile.C
+++ b/C++/Source/Non_class_members/Graphics/save_profile.C
@@ -25,7 +25,7 @@
  *
  */
 
-char name_of_this_file_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/save_profile.C,v 1.2 2014/10/13 08:53:23 j_novak Exp $" ;
+char save_profile_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Graphics/save_profile.C,v 1.2 2014/10/13 08:53:23 j_novak Exp $" ;
 
 /*
  * $Id: save_profile.C,v 1.2 2014/10/13 08:53:23 j_novak Exp $
--- a/C++/Source/Non_class_members/Utilities/prolonge_c1.C
+++ b/C++/Source/Non_class_members/Utilities/prolonge_c1.C
@@ -23,7 +23,7 @@
  *
  */
 
-char name_of_this_file_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/prolonge_c1.C,v 1.3 2014/10/13 08:53:32 j_novak Exp $" ;
+char prolonge_c1_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/prolonge_c1.C,v 1.3 2014/10/13 08:53:32 j_novak Exp $" ;
 
 #include "cmp.h"
 
