X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fd2f82a8fe8350e92ffe68306cf4a9468c17e3f5..658ba1da5fa1fcb036181efbd0704baff72ab472:/configure.ac diff --git a/configure.ac b/configure.ac index 85e5dc35bd..99579b9af9 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,7 @@ AC_CONFIG_HEADERS([src/gras_config.h]) AC_REVISION($Revision$) AC_CANONICAL_TARGET AC_LANG([C]) +AC_PROG_CXX AM_PROG_GCJ AM_INIT_AUTOMAKE([gnu -Wno-portability]) @@ -94,7 +95,7 @@ dnl ## dnl ## CONTEXT IMPLEMENTATION dnl ## -SG_CONFIGURE_PART([Checking for threads, contexts or assimilated...]) +SG_CONFIGURE_PART([Checking threads, contexts or assimilated...]) dnl # dnl # 1. determine possibilities @@ -199,6 +200,7 @@ if test "x$with_context" = "xucontext" ; then if test ".$mcsc" = .yes; then AC_MSG_RESULT(found working ucontext. Great!) AC_DEFINE([CONTEXT_UCONTEXT],1,[Define if xbt contexts are based on ucontext or not]) + AC_CHECK_HEADERS([valgrind/valgrind.h]) else if test ".$windows_context" = .yes ; then AC_MSG_RESULT(use windows context portability layer.) @@ -270,8 +272,6 @@ if test "x$gtnets_path" = "xno" ; then else AC_MSG_RESULT(***** You have decided to use the experimental GTNetS. We hope you know what you're doing.. *****) AC_MSG_CHECKING(for gtnets) - AC_DEFINE([HAVE_GTNETS], 1, [Indicates that we have GTNETS support]) - AM_CONDITIONAL(HAVE_GTNETS, test "x$gtnets" != "xno") AC_LANG_PUSH([C++]) GTNETS_LDFLAGS="-lgtnets -L$gtnets_path/lib" GTNETS_CPPFLAGS="-I$gtnets_path/include -I$gtnets_path/include/gtnets" @@ -288,10 +288,11 @@ fi if test "x$gtnets" = "xyes" ; then AC_MSG_RESULT(Enabling GTNETS support.) + AC_DEFINE([HAVE_GTNETS], 1, [Indicates that we have GTNETS support]) LDFLAGS+="-lgtnets -L$gtnets_path/lib" - CPPFLAGS+="-I$gtnets_path/include -I$gtnets_path/include/gtnets -DHAVE_GTNETS" + CPPFLAGS+="-I$gtnets_path/include -I$gtnets_path/include/gtnets" fi - +AM_CONDITIONAL(HAVE_GTNETS, test "x$gtnets" != "xno") @@ -305,7 +306,7 @@ AC_ARG_WITH(csdp, csdp_path="$withval",csdp_path="no") AC_MSG_CHECKING(for CSDP option:) if test "x$csdp_path" = "xno" ; then - AC_MSG_RESULT(no, eventually you will come to csdp.) + AC_MSG_RESULT([no, eventually you will come to csdp.]) else AC_MSG_RESULT(***** You have decided to use csdp. Let's check whether it works or not *****) AC_MSG_CHECKING(for csdp) @@ -327,7 +328,7 @@ else csdp=no; fi if test "x$csdp" = xyes; then - AM_CPPFLAGS="$AM_CPPFLAGS $CSDP_CPPFLAGS -DHAVE_SDP" + AM_CPPFLAGS="$AM_CPPFLAGS $CSDP_CPPFLAGS" SIMGRID_DEP="$SIMGRID_DEP $CSDP_LDFLAGS" AC_MSG_RESULT(Found working sdp library.) AC_DEFINE([HAVE_SDP], 1, [Indicates whether we have the CSDP library or not]) @@ -410,7 +411,7 @@ if test -e .svn && test x$USE_MAINTAINER_MODE != xyes && test x$botbuild != xyes fi -SG_CONFIGURE_PART(Check for Java bindings...) +SG_CONFIGURE_PART(Checking Java bindings...) # Java cruft AC_ARG_ENABLE(java, AS_HELP_STRING([--disable-java], [To not compile the Java bindings even if the tools are found]), @@ -422,11 +423,7 @@ else AC_PATH_PROG([JAVA], [java] , `which java`) AC_PATH_PROG([JAR], [jar] , `which jar`) AC_CHECK_HEADERS(jni.h) - if test -n "$JAVAC" \ - && test -n "$JAVA" \ - && test -n "$JAR" \ - && test "x$ac_cv_header_jni_h" = "xyes" ; then - + if test -n "$JAVAC" -a test -n "$JAVA" -a test -n "$JAR" -a test "x$ac_cv_header_jni_h" = "xyes" ; then use_java="yes" AC_DEFINE(HAVE_JAVA,1, [defines whether Java bindings must be compiled or not]) else @@ -441,7 +438,7 @@ AM_CONDITIONAL(HAVE_JAVA,test "x$use_java" = "xyes") ## Check for programs ## -SG_CONFIGURE_PART(Check for programs...) +SG_CONFIGURE_PART(Checking programs...) AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh) WARNING="This file is generated, do not edit" AC_SUBST(WARNING) @@ -507,6 +504,7 @@ AC_CONFIG_FILES([ tools/gras/Makefile tools/tesh/Makefile ]) +# tools/tesh2/Makefile # GRAMINE_CUT_BEGIN