X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2f6cba604d58f17a4b53c9da9543f7da727051e2..d0c5cc5a4f87a98928093830eab689dcdd0dd603:/src/xbt/xbt_log_appender_file.c?ds=sidebyside 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