summaryrefslogtreecommitdiff
path: root/sndobj/rfftw/f77_func.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2011-06-24 18:17:23 +0100
committerJohn Glover <glover.john@gmail.com>2011-06-24 18:17:23 +0100
commit416bd737074a287ea47106c73ea6bcfde40a75a8 (patch)
tree74562303d4f4f2f2e010f7e13cba41dc4852b50c /sndobj/rfftw/f77_func.h
parentd26519464dcbf8c3682348167c29454961facefe (diff)
downloadsimpl-416bd737074a287ea47106c73ea6bcfde40a75a8.tar.gz
simpl-416bd737074a287ea47106c73ea6bcfde40a75a8.tar.bz2
simpl-416bd737074a287ea47106c73ea6bcfde40a75a8.zip
Change to using distutils.
Currently only builds the simplsndobj module
Diffstat (limited to 'sndobj/rfftw/f77_func.h')
-rw-r--r--sndobj/rfftw/f77_func.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/sndobj/rfftw/f77_func.h b/sndobj/rfftw/f77_func.h
deleted file mode 100644
index 00d94b5..0000000
--- a/sndobj/rfftw/f77_func.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (c) 1997-1999 Massachusetts Institute of Technology
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-#ifndef F77_FUNC_H
-#define F77_FUNC_H
-
-#include <rfftw/fftw-int.h>
-
-/* Define a macro to mangle function names so that they can be
- recognized by the Fortran linker. Specifically, F77_FUNC_
- is designed to mangle identifiers containing an underscore. */
-
-#ifdef FFTW_FORTRANIZE_LOWERCASE
-# ifdef FFTW_FORTRANIZE_EXTRA_UNDERSCORE
-# define F77_FUNC_(x,X) x ## _
-# else
-# define F77_FUNC_(x,X) x
-# endif
-#endif
-
-#ifdef FFTW_FORTRANIZE_LOWERCASE_UNDERSCORE
-# ifdef FFTW_FORTRANIZE_EXTRA_UNDERSCORE
-# define F77_FUNC_(x,X) x ## __
-# else
-# define F77_FUNC_(x,X) x ## _
-# endif
-#endif
-
-#ifdef FFTW_FORTRANIZE_UPPERCASE
-# ifdef FFTW_FORTRANIZE_EXTRA_UNDERSCORE
-# define F77_FUNC_(x,X) X ## _
-# else
-# define F77_FUNC_(x,X) X
-# endif
-#endif
-
-#ifdef FFTW_FORTRANIZE_UPPERCASE_UNDERSCORE
-# ifdef FFTW_FORTRANIZE_EXTRA_UNDERSCORE
-# define F77_FUNC_(x,X) X ## __
-# else
-# define F77_FUNC_(x,X) X ## _
-# endif
-#endif
-
-#endif /* F77_FUNC_H */