~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/epetraext/src/inout/EpetraExt_HDF5.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "EpetraExt_ConfigDefs.h"
 
2
 
 
3
 
2
4
#ifdef HAVE_EPETRAEXT_HDF5
 
5
 
 
6
 
3
7
#ifdef HAVE_MPI
4
 
#include "Epetra_MpiComm.h"
5
 
#include "mpi.h"
 
8
#  include "Epetra_MpiComm.h"
 
9
#  include "mpi.h"
6
10
#else
7
 
#include "Epetra_SerialComm.h"
 
11
#  include "Epetra_SerialComm.h"
8
12
#endif
 
13
 
9
14
#include "Teuchos_ParameterList.hpp"
10
15
#include "Teuchos_RefCountPtr.hpp"
11
16
#include "Epetra_Map.h"
1572
1577
  H5Dclose(dataset_id);  
1573
1578
//  H5Dclose(filespace_id);  
1574
1579
}
1575
 
#endif
 
1580
 
 
1581
 
 
1582
#endif  // HAVE_EPETRAEXT_HDF5
 
1583