root/opal/mca/installdirs/config/opal_installdirs_config.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /*
   2  * Copyright (c) 2006-2007 Los Alamos National Security, LLC.  All rights
   3  *                         reserved.
   4  * $COPYRIGHT$
   5  *
   6  * Additional copyrights may follow
   7  *
   8  * $HEADER$
   9  */
  10 
  11 #include "opal_config.h"
  12 
  13 #include "opal/mca/installdirs/installdirs.h"
  14 #include "opal/mca/installdirs/config/install_dirs.h"
  15 
  16 const opal_installdirs_base_component_t mca_installdirs_config_component = {
  17     /* First, the mca_component_t struct containing meta information
  18        about the component itself */
  19     {
  20         OPAL_INSTALLDIRS_BASE_VERSION_2_0_0,
  21 
  22         /* Component name and version */
  23         "config",
  24         OPAL_MAJOR_VERSION,
  25         OPAL_MINOR_VERSION,
  26         OPAL_RELEASE_VERSION,
  27 
  28         /* Component open and close functions */
  29         NULL,
  30         NULL
  31     },
  32     {
  33         /* This component is Checkpointable */
  34         MCA_BASE_METADATA_PARAM_CHECKPOINT
  35     },
  36 
  37     {
  38         OPAL_PREFIX,
  39         OPAL_EXEC_PREFIX,
  40         OPAL_BINDIR,
  41         OPAL_SBINDIR,
  42         OPAL_LIBEXECDIR,
  43         OPAL_DATAROOTDIR,
  44         OPAL_DATADIR,
  45         OPAL_SYSCONFDIR,
  46         OPAL_SHAREDSTATEDIR,
  47         OPAL_LOCALSTATEDIR,
  48         OPAL_LIBDIR,
  49         OPAL_INCLUDEDIR,
  50         OPAL_INFODIR,
  51         OPAL_MANDIR,
  52         OPAL_PKGDATADIR,
  53         OPAL_PKGLIBDIR,
  54         OPAL_PKGINCLUDEDIR
  55     }
  56 };

/* [<][>][^][v][top][bottom][index][help] */