[Genabel-commits] r993 - branches/ProbABEL-refactoring/ProbABEL/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Oct 29 22:05:00 CET 2012


Author: lckarssen
Date: 2012-10-29 22:05:00 +0100 (Mon, 29 Oct 2012)
New Revision: 993

Modified:
   branches/ProbABEL-refactoring/ProbABEL/src/comand_line_settings.cpp
Log:
ProbABEL refactoring branch: 
- Added ifdefs around the inclusion of config.h as suggested by autoconf manual. 
- Fixed minor spelling error.


Modified: branches/ProbABEL-refactoring/ProbABEL/src/comand_line_settings.cpp
===================================================================
--- branches/ProbABEL-refactoring/ProbABEL/src/comand_line_settings.cpp	2012-10-29 21:02:09 UTC (rev 992)
+++ branches/ProbABEL-refactoring/ProbABEL/src/comand_line_settings.cpp	2012-10-29 21:05:00 UTC (rev 993)
@@ -12,7 +12,9 @@
 #include "comand_line_settings.h"
 
 // config.h and fvlib/FileVector.h are included for the upper case variables
+#if HAVE_CONFIG_H
 #include "config.h"
+#endif
 #include "fvlib/FileVector.h"
 
 using namespace std;
@@ -244,7 +246,7 @@
             "%s v. %s (C) Yurii Aulchenko, Lennart C. Karssen, Maksim Struchalin, EMCR\n\n",
             PACKAGE, PACKAGE_VERSION);
 #if EIGEN
-    fprintf(stdout, "using EIGEN for matrix operations\n");
+    fprintf(stdout, "Using EIGEN for matrix operations\n");
 #endif
 
     if (neco[0] != 1 || neco[1] != 1 || neco[2] != 1)



More information about the Genabel-commits mailing list