1/*
2 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
3 *                         University Research and Technology
4 *                         Corporation.  All rights reserved.
5 * Copyright (c) 2004-2005 The University of Tennessee and The University
6 *                         of Tennessee Research Foundation.  All rights
7 *                         reserved.
8 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9 *                         University of Stuttgart.  All rights reserved.
10 * Copyright (c) 2004-2005 The Regents of the University of California.
11 *                         All rights reserved.
12 * Copyright (c) 2011 Cisco Systems, Inc.  All rights reserved.
13 * $COPYRIGHT$
14 *
15 * Additional copyrights may follow
16 *
17 * $HEADER$
18 *
19 * This file should be included by any file that needs full
20 * version information for the ORTE project
21 */
22
23#ifndef ORTE_VERSIONS_H
24#define ORTE_VERSIONS_H
25
26#define ORTE_MAJOR_VERSION @ORTE_MAJOR_VERSION@
27#define ORTE_MINOR_VERSION @ORTE_MINOR_VERSION@
28#define ORTE_RELEASE_VERSION @ORTE_RELEASE_VERSION@
29#define ORTE_GREEK_VERSION "@ORTE_GREEK_VERSION@"
30#define ORTE_WANT_REPO_REV @ORTE_WANT_REPO_REV@
31#define ORTE_REPO_REV "@ORTE_REPO_REV@"
32#ifdef ORTE_VERSION
33/* If we included version.h, we want the real version, not the
34   stripped (no-r number) verstion */
35#undef ORTE_VERSION
36#endif
37#define ORTE_VERSION "@ORTE_VERSION@"
38
39#endif
40