~ubuntu-branches/ubuntu/quantal/fftw/quantal

« back to all changes in this revision

Viewing changes to fftw/config.h.in

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-29 01:48:33 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111129014833-3leawsns2nghyaoj
Tags: 2.1.5-1
* Team upload.
* New upstream release
* Package moved into the Debian Science team (no answer from the previous
  maintainer) and package not maintained.
* Standards-Version updated to version 3.9.2
* Vcs-Browser & Vcs-Svn updated
* Switch to mpi-default-dev (Closes: #571446)
* Get ride of .la files (Closes: #633175)
* Fix lintian warning debhelper-but-no-misc-depends
* Fix lintian warning patch-system-but-direct-changes-in-diff 
* Switch to dpkg-source 3.0 (quilt) format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- C -*- */
2
2
/*
3
 
 * Copyright (c) 1997-1999 Massachusetts Institute of Technology
 
3
 * Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
19
19
 */
20
20
 
21
21
/* fftw.h -- system-wide definitions */
22
 
/* $Id: config.h.in,v 1.26 1999/10/29 04:58:44 stevenj Exp $ */
 
22
/* $Id: config.h.in,v 1.30 2003/03/16 23:43:46 stevenj Exp $ */
23
23
 
24
24
/* configuration options (guessed by configure) */
25
25
 
133
133
#undef FFTW_USING_POSIX_THREADS
134
134
#undef FFTW_USING_BEOS_THREADS
135
135
#undef FFTW_USING_MACH_THREADS
 
136
#undef FFTW_USING_OPENMP_THREADS
 
137
#undef FFTW_USING_SGIMP_THREADS
136
138
 
137
 
#undef HAVE_PTHREAD_CREATE_UNDETACHED
 
139
/* on AIX, this gets defined to PTHREAD_CREATE_UNDETACHED, as that
 
140
   system uses a non-standard name for this attribute (sigh). */
 
141
#undef PTHREAD_CREATE_JOINABLE
138
142
 
139
143
#undef HAVE_MACH_CTHREADS_H
140
144
#undef HAVE_CTHREADS_H
150
154
 
151
155
/*********************** fortran wrapper configuration *********************/
152
156
 
153
 
/* These symbols select how to mangle function names so that they will
154
 
   be recognized by the linker.  If none of them are defined, then
155
 
   Fortran wrappers will not be compiled. */
156
 
 
157
 
#undef FFTW_FORTRANIZE_LOWERCASE
158
 
#undef FFTW_FORTRANIZE_LOWERCASE_UNDERSCORE
159
 
#undef FFTW_FORTRANIZE_UPPERCASE
160
 
#undef FFTW_FORTRANIZE_UPPERCASE_UNDERSCORE
161
 
 
162
 
/* define the following if names with an underscore get an extra one: */
163
 
#undef FFTW_FORTRANIZE_EXTRA_UNDERSCORE
 
157
/* F77_FUNC_ is defined to a macro F77_FUNC_(name,NAME) by autoconf, that
 
158
   takes an identifier name (lower case) and NAME (upper case) and returns
 
159
   the appropriately mangled identifier for the Fortran linker.  On
 
160
   non-Unix systems you will have to define this manually.  For example,
 
161
   if your linker converts identifiers to lower-case followed by an
 
162
   underscore, you would do: #define F77_FUNC_(name,NAME) name ## _ 
 
163
*/
 
164
#undef F77_FUNC_
164
165
 
165
166
/* The following symbols control how MPI_Comm data structures are
166
167
   translated between Fortran and C for the fftw_mpi wrappers.  See