From: navarro Date: Fri, 5 Oct 2012 13:58:49 +0000 (+0200) Subject: Protect from SMPI X-Git-Tag: v3_8~141 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/82fa083e82f59772779da4b8cd2bb993291d1ac5 Protect from SMPI --- diff --git a/src/xbt/xbt_log_appender_file.c b/src/xbt/xbt_log_appender_file.c index 3c74fc7d69..6efbf641c5 100644 --- a/src/xbt/xbt_log_appender_file.c +++ b/src/xbt/xbt_log_appender_file.c @@ -7,7 +7,9 @@ #include "xbt/sysdep.h" #include "xbt/log_private.h" +#ifdef HAVE_SMPI #include "smpi/private.h" // to access bench_begin/end. Not ultraclean, I confess +#endif #include static void append_file(xbt_log_appender_t this_, char *str) { @@ -23,11 +25,12 @@ static void free_(xbt_log_appender_t this_) { fclose(this_->data); } +#ifdef HAVE_SMPI void __smpi_bench_dont (void); // Stupid prototype void __smpi_bench_dont (void) { /* I'm only a place-holder in case we link without SMPI */; } void smpi_bench_begin(void) __attribute__ ((weak, alias ("__smpi_bench_dont"))); void smpi_bench_end(void) __attribute__ ((weak, alias ("__smpi_bench_dont"))); - +#endif XBT_LOG_EXTERNAL_CATEGORY(smpi); // To detect if SMPI is inited