From: mquinson Date: Fri, 19 May 2006 15:46:33 +0000 (+0000) Subject: Add a big fat warning to users seeming to use the CVS without --enable-maintainer... X-Git-Tag: v3.3~3102 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/47d343d5c013b137122a93af96e71959e8738cca?hp=c29ea41c1e876d54bb72b08da78905d2c254c4ed Add a big fat warning to users seeming to use the CVS without --enable-maintainer-mode since it's a probable source of trouble git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2256 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure.ac b/configure.ac index 6ca5d44391..9150fafa90 100644 --- a/configure.ac +++ b/configure.ac @@ -333,4 +333,13 @@ Configuration of package \`${PACKAGE}' (version ${VERSION}) on $gras_arch_name ( Context backend: ${with_context} " +if test -e CVS && test x$USE_MAINTAINER_MODE != xyes ; then + echo "WARNING:" + echo "WARNING: you seem to compile the CVS version without the maintainer mode." + echo "WARNING: This is not really supported, so you should configure SimGrid like:" + echo "WARNING:" + echo "WARNING: ./configure --enable-maintainer-mode $ac_configure_args" + echo "WARNING:" +fi + exit 0;