~james-page/ubuntu/precise/openmpi1.5/new

« back to all changes in this revision

Viewing changes to ompi/mpi/c/get_version.c

  • Committer: Bazaar Package Importer
  • Author(s): Manuel Prinz
  • Date: 2009-04-23 14:01:21 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090423140121-vsi3pqa6g30j4qiy
Tags: 1.3.2-1
* New upstream release. (Closes: #520597, #515116)
  - Manpage and VampirTrace patches removed, included upstream.
* Fixed build issues on Alpha. Huge thanks to Arthur Loiret for providing
  access to his machines for testing! (Closes: #510845, #517543)
* Fixed build issues on Sparc. (Closes: #519725)
* Fixed manpage-has-errors-from-man lintian warnings.
* Faked SONAME change by renaming library package. (Closes: #512616)
* Made libopenmpi-dev depend on libibverbs-dev. (Closes: #522153)
* Support for "nocheck" build option in debian/rules.
* Updated Standards-Version in debian/control.
* Changed section of libopenmpi-dbg to "debug".
* Updated debian/copyright.

* Dirk Eddelbuettel removed himself from Uploaders. The team thanks Dirk
  for his long-term contribution and effort to get Open MPI back to life.
  I personally thank Dirk for encouraging me to become a Debian Developer
  and his support and mentoring on that way and beyond.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
3
3
 *                         University Research and Technology
4
4
 *                         Corporation.  All rights reserved.
5
 
 * Copyright (c) 2004-2005 The University of Tennessee and The University
 
5
 * Copyright (c) 2004-2009 The University of Tennessee and The University
6
6
 *                         of Tennessee Research Foundation.  All rights
7
7
 *                         reserved.
8
8
 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 
63
63
 
64
64
    /* According to the MPI-2 specification */
65
65
 
66
 
    *version = 2;
67
 
    *subversion = 0;
 
66
    *version = MPI_VERSION;
 
67
    *subversion = MPI_SUBVERSION;
68
68
 
69
69
    return MPI_SUCCESS;
70
70
}