https://github.com/JeffersonLab/chroma
Raw File
Tip revision: c9eba9debc28101436b2e66a1894fd461f569e33 authored by bjoo on 27 February 2007, 21:39:02 UTC
Remade autofiles for release. Now needs qdp v1.22.0 to function. QCDOC Branch potentially unstable (in BAGEL Dslash wrapper)
Tip revision: c9eba9d
chroma_config.h
#ifndef CHROMA_CONFIG_H
#define CHROMA_CONFIG_H

/* Undef the unwanted from the environment -- eg the compiler command line */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION

#include "chroma_config_internal.h"

/* Prefix everything with CHROMA_QDP_ */
static const char* const CHROMA_PACKAGE(PACKAGE);
static const char* const CHROMA_PACKAGE_BUGREPORT(PACKAGE_BUGREPORT);
static const char* const CHROMA_PACKAGE_NAME(PACKAGE_NAME);
static const char* const CHROMA_PACKAGE_STRING(PACKAGE_STRING);
static const char* const CHROMA_PACKAGE_TARNAME(PACKAGE_TARNAME);
static const char* const CHROMA_PACKAGE_VERSION(PACKAGE_VERSION);
static const char* const CHROMA_VERSION(VERSION);

/* Undef the unwanted */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION


#endif
back to top