[Genabel-commits] r1064 - in pkg/ProbABEL: . doc
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Dec 31 17:44:07 CET 2012
Author: lckarssen
Date: 2012-12-31 17:44:06 +0100 (Mon, 31 Dec 2012)
New Revision: 1064
Modified:
pkg/ProbABEL/configure.ac
pkg/ProbABEL/doc/INSTALL
Log:
ProbABEL: Changed the --disable-eigen ./configure flag to --without-eigen (and the corresponding --enable-eigen to --with-eigen of course). This seems more logical since the 'with' options are for external programs, whereas the 'enable' options enable/disable certain features in the program (although I agree the difference in this case is small).
- configure.ac: change AC_ARG_ENABLE to AC_ARG_WITH and small update to help text
- doc/INSTALL: updated instructions to reflect the change.
Modified: pkg/ProbABEL/configure.ac
===================================================================
--- pkg/ProbABEL/configure.ac 2012-12-31 16:19:47 UTC (rev 1063)
+++ pkg/ProbABEL/configure.ac 2012-12-31 16:44:06 UTC (rev 1064)
@@ -39,10 +39,10 @@
# See if we want use of the Eigen library enabled (yes by default) and if so,
# whether we can find the library files.
-AC_ARG_ENABLE([eigen],
- [AS_HELP_STRING([--enable-eigen], [Use the Eigen template library for fast \
+AC_ARG_WITH([eigen],
+ [AS_HELP_STRING([--with-eigen], [Use the Eigen template library for fast \
linear algebra (Eigen can be downloaded \
- from eigen.tuxfamily.org). This is enabled \
+ from eigen.tuxfamily.org); this is enabled \
by default])],
[eigen=${enableval}],
[eigen=yes])
@@ -63,7 +63,7 @@
if test x$ac_cv_header_Eigen_Dense = xno; then
AC_MSG_ERROR([Could not find the Eigen header files. Did you specify \
---with-eigen-include-path correctly? Or use --disable-eigen \
+--with-eigen-include-path correctly? Or use --without-eigen \
to disable use of fast linear algebra.])
fi
else
Modified: pkg/ProbABEL/doc/INSTALL
===================================================================
--- pkg/ProbABEL/doc/INSTALL 2012-12-31 16:19:47 UTC (rev 1063)
+++ pkg/ProbABEL/doc/INSTALL 2012-12-31 16:44:06 UTC (rev 1064)
@@ -18,7 +18,7 @@
If ./configure cannot find the Eigen library it will say so. To
disable the use of Eigen (even if the library is present) use:
-./configure --disable-eigen
+./configure --without-eigen
* Compiling for Linux
More information about the Genabel-commits
mailing list