1 /* -*- c -*-
2 *
3 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
4 * University Research and Technology
5 * Corporation. All rights reserved.
6 * Copyright (c) 2004-2006 The University of Tennessee and The University
7 * of Tennessee Research Foundation. All rights
8 * reserved.
9 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
10 * University of Stuttgart. All rights reserved.
11 * Copyright (c) 2004-2005 The Regents of the University of California.
12 * All rights reserved.
13 * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
14 * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
15 * $COPYRIGHT$
16 *
17 * Additional copyrights may follow
18 *
19 * $HEADER$
20 *
21 * Function: - OS, CPU and compiler dependent configuration
22 */
23
24 #ifndef ORTE_CONFIG_H
25 #define ORTE_CONFIG_H
26
27 #include "opal_config.h"
28
29 #define ORTE_IDENT_STRING OPAL_IDENT_STRING
30
31 # if OPAL_C_HAVE_VISIBILITY
32 # define ORTE_DECLSPEC __opal_attribute_visibility__("default")
33 # define ORTE_MODULE_DECLSPEC __opal_attribute_visibility__("default")
34 # else
35 # define ORTE_DECLSPEC
36 # define ORTE_MODULE_DECLSPEC
37 # endif
38
39 #endif