[Rcpp-commits] r314 - pkg
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Fri Jan 8 13:59:02 CET 2010
Author: edd
Date: 2010-01-08 13:59:02 +0100 (Fri, 08 Jan 2010)
New Revision: 314
Modified:
pkg/configure
pkg/configure.in
Log:
provide a default case for g++ branch (doh)
provide defaults in case g++ is not used as CRAN also uses SunStudio
Modified: pkg/configure
===================================================================
--- pkg/configure 2010-01-08 12:35:48 UTC (rev 313)
+++ pkg/configure 2010-01-08 12:59:02 UTC (rev 314)
@@ -2683,7 +2683,18 @@
has43=yes
has44=yes
;;
+ *)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Hm, not sure what g++ version you have. Using minimal features" >&5
+$as_echo "$as_me: WARNING: Hm, not sure what g++ version you have. Using minimal features" >&2;}
+ has43=no
+ has44=no
+ ;;
esac
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Hm, not sure what compiler you. Using minimal features" >&5
+$as_echo "$as_me: WARNING: Hm, not sure what compiler you. Using minimal features" >&2;}
+ has43=no
+ has44=no
fi
Modified: pkg/configure.in
===================================================================
--- pkg/configure.in 2010-01-08 12:35:48 UTC (rev 313)
+++ pkg/configure.in 2010-01-08 12:59:02 UTC (rev 314)
@@ -64,7 +64,16 @@
has43=yes
has44=yes
;;
+ *)
+ AC_MSG_WARN([Hm, not sure what g++ version you have. Using minimal features])
+ has43=no
+ has44=no
+ ;;
esac
+else
+ AC_MSG_WARN([Hm, not sure what compiler you. Using minimal features])
+ has43=no
+ has44=no
fi
More information about the Rcpp-commits
mailing list