https://github.com/JeffersonLab/chroma
Raw File
Tip revision: be11dae950001b821b85f76746120f0a74a94aa3 authored by edwards on 13 October 2005, 03:18:22 UTC
Info on 2.2.1
Tip revision: be11dae
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