1
1

added rmgr and rml to Windows build system

This commit was SVN r5253.
Этот коммит содержится в:
Josh Hursey 2005-04-11 05:07:57 +00:00
родитель ea4cf9b65c
Коммит 9f5dea8dc3
6 изменённых файлов: 30 добавлений и 0 удалений

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

@ -15,7 +15,9 @@
*/ */
#include "ompi_config.h" #include "ompi_config.h"
#include <errno.h> #include <errno.h>
#ifndef WIN32
#include <unistd.h> #include <unistd.h>
#endif
#include <string.h> #include <string.h>
#include "include/constants.h" #include "include/constants.h"

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

@ -13,7 +13,9 @@
*/ */
#include "ompi_config.h" #include "ompi_config.h"
#include <errno.h> #include <errno.h>
#ifndef WIN32
#include <unistd.h> #include <unistd.h>
#endif
#include <string.h> #include <string.h>
#include "include/constants.h" #include "include/constants.h"

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

@ -13,7 +13,9 @@
*/ */
#include "ompi_config.h" #include "ompi_config.h"
#include <errno.h> #include <errno.h>
#ifndef WIN32
#include <unistd.h> #include <unistd.h>
#endif
#include <string.h> #include <string.h>
#include "include/constants.h" #include "include/constants.h"

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

@ -0,0 +1,10 @@
/*
* $HEADER$
*/
const mca_base_component_t *mca_rmgr_base_static_components[] = {
NULL
};

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

@ -0,0 +1,10 @@
/*
* $HEADER$
*/
const mca_base_component_t *mca_rml_base_static_components[] = {
NULL
};

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

@ -55,6 +55,8 @@ C_SUBDIRS = \
mca/io/base \ mca/io/base \
mca/iof/base \ mca/iof/base \
mca/errmgr/base \ mca/errmgr/base \
mca/rml/base \
mca/rmgr/base \
mca/mpool/base \ mca/mpool/base \
mca/ns/base \ mca/ns/base \
mca/oob/base \ mca/oob/base \
@ -122,6 +124,8 @@ STATIC_LIBS = \
gpr \ gpr \
topo\ topo\
errmgr \ errmgr \
rml \
rmgr \
ptl\ ptl\
oob\ oob\
pml\ pml\