Revision: 204
http://sourceforge.net/p/c-mpi/code/204
Author: jmwozniak
Date: 2018-02-02 16:05:36 +0000 (Fri, 02 Feb 2018)
Log Message:
-----------
Improve configure.ac
Modified Paths:
--------------
configure.ac
Modified: configure.ac
===================================================================
--- configure.ac 2018-02-02 16:05:20 UTC (rev 203)
+++ configure.ac 2018-02-02 16:05:36 UTC (rev 204)
@@ -377,6 +377,8 @@
[USE_CMPI_IO=0])
AC_SUBST(USE_CMPI_IO)
+# Currently tests must be enabled.
+ENABLE_TESTS="yes"
AC_ARG_ENABLE([tests],
AS_HELP_STRING(
[--enable-tests],
@@ -392,13 +394,13 @@
AC_GCC_SUPPORTS_RDYNAMIC,
[
AC_PATH_PROG([grep], [grep])
- echo -n "checking if the compiler supports -rdynamic... "
+ AC_MSG_CHECKING(if the compiler supports -rdynamic...)
if test "X${ac_compiler_gnu}X" = "XyesX"; then
if test "X`${CC} -dumpspecs | ${grep} rdynamic`X" != "XX"; then
- echo "yes"
+ AC_MSG_RESULT(yes)
AC_SUBST([RDYNAMIC], ["-rdynamic"])
else
- echo "no"
+ AC_MSG_RESULT(no)
AC_SUBST([RDYNAMIC], [])
fi
else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|