1
1

Ensure that we don't attempt to use common ports if --disable-static was specified.

This commit was SVN r26620.
Этот коммит содержится в:
Ralph Castain 2012-06-20 03:14:11 +00:00
родитель 0343dfee77
Коммит 019857b616

Просмотреть файл

@ -547,10 +547,14 @@ int orte_register_params(void)
"Maximum size of virtual machine - used to subdivide allocation",
false, false, -1, &orte_max_vm_size);
#if ORTE_ENABLE_STATIC_PORTS
mca_base_param_reg_int_name("orte", "use_common_port",
"Daemons use same port as HNP",
false, false, (int)true, &value);
orte_use_common_port = OPAL_INT_TO_BOOL(value);
#else
orte_use_common_port = false;
#endif
#endif /* ORTE_DISABLE_FULL_SUPPORT */