X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf83e2bdb40c0520e0e641e22d13c92a9d0135fd..dc3c586764381b57c94e902ffc91b4234ddc7599:/configure.ac diff --git a/configure.ac b/configure.ac index 96f482d3a2..52a9d5aa0b 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ AC_CHECK_FUNCS([gettimeofday usleep \ dnl GNU systems before POSIX2008 need the _GNU_SOURCE definition to find getline (and simgrid does pass this) AC_MSG_CHECKING(a usable getline) -AC_COMPILE_IFELSE([ +AC_LINK_IFELSE([ #define _GNU_SOURCE #include int main(void){ @@ -368,17 +368,10 @@ SG_COMPILE_FLAGS ## ## Support for the supernovae compilation mode ## -if test x$USE_MAINTAINER_MODE = xyes -then - not_maintainer_mode=no -else - not_maintainer_mode=yes -fi - AC_ARG_ENABLE(supernovae, AS_HELP_STRING([--enable-supernovae],[Put the whole library in one compilation unit only to help gcc optimizing the code]), [supernovae=$enableval], - [supernovae=$not_maintainer_mode]) + [supernovae=no]) AM_CONDITIONAL(SUPERNOVAE_MODE, test x$supernovae != xno) AC_SUBST([CFLAGS])