1 /* 2 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana 3 * University Research and Technology 4 * Corporation. All rights reserved. 5 * Copyright (c) 2004-2005 The University of Tennessee and The University 6 * of Tennessee Research Foundation. All rights 7 * reserved. 8 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 9 * University of Stuttgart. All rights reserved. 10 * Copyright (c) 2004-2005 The Regents of the University of California. 11 * All rights reserved. 12 * $COPYRIGHT$ 13 * 14 * Additional copyrights may follow 15 * 16 * $HEADER$ 17 */ 18 19 #ifndef ROMIO_CONF_UNDEFS_H 20 #define ROMIO_CONF_UNDEFS_H 21 22 /* Need to add some undefs here so that we don't conflict with the 23 * main ompi_config.h. Arrgh. Stupid autoconf not giving us the option 24 * to not define these macros... grumble... 25 */ 26 #if defined(PACKAGE_BUGREPORT) 27 #undef PACKAGE_BUGREPORT 28 #endif 29 #if defined(PACKAGE_NAME) 30 #undef PACKAGE_NAME 31 #endif 32 #if defined(PACKAGE_STRING) 33 #undef PACKAGE_STRING 34 #endif 35 #if defined(PACKAGE_TARNAME) 36 #undef PACKAGE_TARNAME 37 #endif 38 #if defined(PACKAGE_VERSION) 39 #undef PACKAGE_VERSION 40 #endif 41 #if defined(PACKAGE_URL) 42 #undef PACKAGE_URL 43 #endif 44 45 #endif /* ROMIOCONF_UNDEFS_H */