From edb9d8e354ae659f1c6e2dc37cfa1456e4248052 Mon Sep 17 00:00:00 2001 From: Ron Brightwell Date: Wed, 21 Nov 2007 21:37:58 +0000 Subject: [PATCH] Added Catamount to the conditional compilation since Catamount doesn't support fork() or pipe() either. This removes a linker warning message when building for Cray XT with Catamount. This commit was SVN r16772. --- orte/mca/sds/base/sds_base_universe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/sds/base/sds_base_universe.c b/orte/mca/sds/base/sds_base_universe.c index f164f41ad1..19470fd489 100644 --- a/orte/mca/sds/base/sds_base_universe.c +++ b/orte/mca/sds/base/sds_base_universe.c @@ -228,7 +228,7 @@ orte_sds_base_seed_set_name(void) static int fork_hnp(void) { -#if !defined(__WINDOWS__) +#if !defined(__WINDOWS__) && !defined(__LIBCATAMOUNT__) int p[2], death_pipe[2]; char *cmd; char **argv = NULL;