~ubuntu-branches/ubuntu/oneiric/mpqc/oneiric

« back to all changes in this revision

Viewing changes to src/bin/scls/scls.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2005-11-27 11:41:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127114149-zgz9r3gk50w8ww2q
Tags: 2.3.0-1
* New upstream release.
* debian/rules (SONAME): Activate awk snippet for automatic so-name
  detection again, resulting in a bump to `7' and making a `c2a' for
  the C++ allocator change unnecessary; closes: #339232.
* debian/patches/00list (08_gcc-4.0_fixes): Removed, no longer needed.
* debian/rules (test): Remove workarounds, do not abort build if tests
  fail.
* debian/ref: Removed.
* debian/control.in (libsc): Added Conflict against libsc6c2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include <new>
33
33
#include <unistd.h>
34
34
 
 
35
#include <util/class/scexception.h>
35
36
#include <util/misc/exenv.h>
36
37
#include <util/misc/formio.h>
37
38
#include <util/group/mstate.h>
43
44
#include <util/state/linkage.h>
44
45
 
45
46
#ifdef HAVE_MPI
 
47
#define MPICH_SKIP_MPICXX
46
48
#include <mpi.h>
47
49
#endif
48
50
 
51
53
 
52
54
//////////////////////////////////////////////////////////////////////////
53
55
 
 
56
// This forces the exception classes to be linked in.  Otherwise they won't
 
57
// for single pass linkage of static libraries.  This is because of library
 
58
// ordering and interdependency issues.
 
59
static SCException ex;
 
60
 
54
61
static void
55
62
clean_up(void)
56
63
{