~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/PyTrilinos/src/Galeri.i

  • 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:
71
71
 
72
72
// Configuration includes
73
73
#include "PyTrilinos_config.h"
 
74
#ifdef HAVE_INTTYPES_H
 
75
#undef HAVE_INTTYPES_H
 
76
#endif
 
77
#ifdef HAVE_STDINT_H
 
78
#undef HAVE_STDINT_H
 
79
#endif
74
80
 
75
81
// Epetra includes
76
82
#ifdef HAVE_EPETRA
94
100
#include "Epetra_FEVbrMatrix.h"
95
101
 
96
102
// Epetra Python utility code
97
 
#include "NumPyImporter.h"
 
103
#define NO_IMPORT_ARRAY
 
104
#include "numpy_include.h"
98
105
#include "Epetra_NumPyMultiVector.h"
99
106
#include "Epetra_NumPyVector.h"
100
107
#include "Epetra_NumPyFEVector.h"
114
121
#include "Galeri_ReadHB.h"
115
122
%}
116
123
 
 
124
// Include PyTrilinos configuration
 
125
%include "PyTrilinos_config.h"
 
126
 
117
127
// Standard exception handling
118
128
%include "exception.i"
119
129