From a5efe3ed77038e515433d0df5c0728cbac14880e Mon Sep 17 00:00:00 2001 From: Tim Mattox Date: Sun, 4 Jan 2009 05:09:18 +0000 Subject: [PATCH] Refs trac:868, #869 The fix for #868, r14358, introduced an (unneeded?) inconsitency... For Mac OS X systems, inttypes.h will always be included with opal_config.h, and NOT included for non-Mac OS X systems. For developers using Mac OS X, this masks the need to include inttypes.h or more properly opal_stdint.h. This changeset corrects one of these oopses. However, the underlying problem still exists. Moving the equivelent of r14358 into opal_stdint.h from opal_config_bottom.h might be the "right" solution, but AFAIK, we would then need to replace each direct inclusion of inttypes.h with opal_stdint.h to properly address tickets #868 and #869. This commit was SVN r20196. The following SVN revision numbers were found above: r14358 --> open-mpi/ompi@dce72aab7098af5ce0a918da132dba3445c7f500 The following Trac tickets were found above: Ticket 868 --> https://svn.open-mpi.org/trac/ompi/ticket/868 --- opal/dss/dss_print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/opal/dss/dss_print.c b/opal/dss/dss_print.c index 3a16e51865..d7c466a213 100644 --- a/opal/dss/dss_print.c +++ b/opal/dss/dss_print.c @@ -18,6 +18,7 @@ #include "opal_config.h" +#include "opal_stdint.h" #include #include "opal/dss/dss_internal.h"