00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef PHALANX_CONFIGDEFS_H
00034 #define PHALANX_CONFIGDEFS_H
00035
00036 #ifndef __cplusplus
00037 #define __cplusplus
00038 #endif
00039
00040
00041
00042
00043
00044
00045 #ifdef PACKAGE
00046 #undef PACKAGE
00047 #endif
00048
00049 #ifdef PACKAGE_NAME
00050 #undef PACKAGE_NAME
00051 #endif
00052
00053 #ifdef PACKAGE_BUGREPORT
00054 #undef PACKAGE_BUGREPORT
00055 #endif
00056
00057 #ifdef PACKAGE_STRING
00058 #undef PACKAGE_STRING
00059 #endif
00060
00061 #ifdef PACKAGE_TARNAME
00062 #undef PACKAGE_TARNAME
00063 #endif
00064
00065 #ifdef PACKAGE_VERSION
00066 #undef PACKAGE_VERSION
00067 #endif
00068
00069 #ifdef VERSION
00070 #undef VERSION
00071 #endif
00072
00073 #include <Phalanx_config.hpp>
00074
00075
00076 #ifdef HAVE_ALGORITHM
00077 #include <algorithm>
00078 #elif HAVE_ALGORITHM_H
00079 #include <algorithm.h>
00080 #else
00081 #include <algo.h>
00082 #endif
00083
00084 #ifdef HAVE_CMATH
00085 #include <cmath>
00086 #else
00087 #include <math.h>
00088 #endif
00089
00090 #ifdef HAVE_CSTDDEF
00091 #include <cstddef>
00092 #else
00093 #include <stddef.h>
00094 #endif
00095
00096 #ifdef HAVE_IOMANIP
00097 #include <iomanip>
00098 #else
00099 #include <iomanip.h>
00100 #endif
00101
00102 #ifdef HAVE_IOSTREAM
00103 #include <iostream>
00104 #else
00105 #include <iostream.h>
00106 #endif
00107
00108 #ifdef HAVE_ITERATOR
00109 #include <iterator>
00110 #else
00111 #include <iterator.h>
00112 #endif
00113
00114 #ifdef HAVE_MAP
00115 #include <map>
00116 #else
00117 #include <map.h>
00118 #endif
00119
00120 #ifdef HAVE_SSTREAM
00121 #include <sstream>
00122 #else
00123 #include <sstream.h>
00124 #endif
00125
00126 #ifdef HAVE_STRING
00127 #include <string>
00128 #else
00129 #include <string.h>
00130 #endif
00131
00132 #ifdef HAVE_TYPEINFO
00133 #include <typeinfo>
00134 #else
00135 #include <typeinfo.h>
00136 #endif
00137
00138 #ifdef HAVE_VECTOR
00139 #include <vector>
00140 #else
00141 #include <vector.h>
00142 #endif
00143
00144 #endif