1
1

OFI: make v1.10 and v2.0 fit in version checking scheme

v1.10 is now in the same compatibility level as v1.7/v1.8 (there
is/will be no v1.9 series).  v2.0 now takes over for what used to be
called v1.9.
Этот коммит содержится в:
Jeff Squyres 2015-05-26 18:58:28 -07:00
родитель ec57aa1805
Коммит fb12572438

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

@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2015 Intel, Inc. All rights reserved. * Copyright (c) 2015 Intel, Inc. All rights reserved.
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -15,10 +16,9 @@
/************************************************************************/ /************************************************************************/
/* v1.9 and beyond */ /* v2.0 and beyond */
#if (OPAL_MAJOR_VERSION == 1 && OPAL_MINOR_VERSION >= 9) || \ #if (OPAL_MAJOR_VERSION >= 2)
(OPAL_MAJOR_VERSION >= 2)
#include "opal/mca/pmix/pmix.h" #include "opal/mca/pmix/pmix.h"
@ -42,7 +42,7 @@
/************************************************************************/ /************************************************************************/
/* v1.7 and v1.8 */ /* v1.7, v1.8, and v1.10 (there was no v1.9) */
#elif (OPAL_MAJOR_VERSION == 1 && OPAL_MINOR_VERSION >= 7) #elif (OPAL_MAJOR_VERSION == 1 && OPAL_MINOR_VERSION >= 7)