00001 /* 00002 // @HEADER 00003 // *********************************************************************** 00004 // 00005 // RTOp: Interfaces and Support Software for Vector Reduction Transformation 00006 // Operations 00007 // Copyright (2006) Sandia Corporation 00008 // 00009 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00010 // license for use of this work by or on behalf of the U.S. Government. 00011 // 00012 // This library is free software; you can redistribute it and/or modify 00013 // it under the terms of the GNU Lesser General Public License as 00014 // published by the Free Software Foundation; either version 2.1 of the 00015 // License, or (at your option) any later version. 00016 // 00017 // This library is distributed in the hope that it will be useful, but 00018 // WITHOUT ANY WARRANTY; without even the implied warranty of 00019 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 // Lesser General Public License for more details. 00021 // 00022 // You should have received a copy of the GNU Lesser General Public 00023 // License along with this library; if not, write to the Free Software 00024 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00025 // USA 00026 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 00027 // 00028 // *********************************************************************** 00029 // @HEADER 00030 */ 00031 00032 #ifndef _RTOP_CONFIGDEFS_H_ 00033 #define _RTOP_CONFIGDEFS_H_ 00034 00035 /* Let Teuchos' configure process do all of the work! */ 00036 #include <Teuchos_ConfigDefs.hpp> 00037 00038 /* 00039 * The macros PACKAGE, PACKAGE_NAME, etc, get defined for each package and need to 00040 * be undef'd here to avoid warnings when this file is included from another package. 00041 * KL 11/25/02 00042 */ 00043 #ifdef PACKAGE 00044 #undef PACKAGE 00045 #endif 00046 00047 #ifdef PACKAGE_NAME 00048 #undef PACKAGE_NAME 00049 #endif 00050 00051 #ifdef PACKAGE_BUGREPORT 00052 #undef PACKAGE_BUGREPORT 00053 #endif 00054 00055 #ifdef PACKAGE_STRING 00056 #undef PACKAGE_STRING 00057 #endif 00058 00059 #ifdef PACKAGE_TARNAME 00060 #undef PACKAGE_TARNAME 00061 #endif 00062 00063 #ifdef PACKAGE_VERSION 00064 #undef PACKAGE_VERSION 00065 #endif 00066 00067 #ifdef VERSION 00068 #undef VERSION 00069 #endif 00070 00071 #include <RTOp_Config.h> 00072 00073 #endif /*_RTOP_CONFIGDEFS_H_*/
1.3.9.1