Blame IbAccess/Common/Inc/bldver.h

Packit 5ea288
/* BEGIN_ICS_COPYRIGHT3 ****************************************
Packit 5ea288
Packit 5ea288
Copyright (c) 2015, Intel Corporation
Packit 5ea288
Packit 5ea288
Redistribution and use in source and binary forms, with or without
Packit 5ea288
modification, are permitted provided that the following conditions are met:
Packit 5ea288
Packit 5ea288
    * Redistributions of source code must retain the above copyright notice,
Packit 5ea288
      this list of conditions and the following disclaimer.
Packit 5ea288
    * Redistributions in binary form must reproduce the above copyright
Packit 5ea288
      notice, this list of conditions and the following disclaimer in the
Packit 5ea288
     documentation and/or other materials provided with the distribution.
Packit 5ea288
    * Neither the name of Intel Corporation nor the names of its contributors
Packit 5ea288
      may be used to endorse or promote products derived from this software
Packit 5ea288
      without specific prior written permission.
Packit 5ea288
Packit 5ea288
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 5ea288
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 5ea288
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 5ea288
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 5ea288
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 5ea288
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 5ea288
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 5ea288
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 5ea288
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 5ea288
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 5ea288
Packit 5ea288
** END_ICS_COPYRIGHT3   ****************************************/
Packit 5ea288
Packit 5ea288
/* [ICS VERSION STRING: unknown] */
Packit 5ea288
Packit 5ea288
#ifndef _IBA_BLD_VER_H_
Packit 5ea288
#define _IBA_BLD_VER_H_
Packit 5ea288
Packit 5ea288
#ifndef VXWORKS
Packit 5ea288
#include "bldver_osd.h"
Packit 5ea288
#else
Packit 5ea288
/* ???? for vxworks ??? */
Packit 5ea288
#endif
Packit 5ea288
Packit 5ea288
/* TBD BUGBUG should use patch_version compatible version strings */
Packit 5ea288
#ifdef MODULEVERSION
Packit 5ea288
#define BLD_VER_STR(a)	#a
Packit 5ea288
#define BLD_VER_STR1(a)	BLD_VER_STR(a)
Packit 5ea288
#if defined(DBG) ||defined( IB_DEBUG)
Packit 5ea288
#define BLD_VERSION_STRING		"debug " BLD_VER_STR1(MODULEVERSION)
Packit 5ea288
#else
Packit 5ea288
#define BLD_VERSION_STRING		BLD_VER_STR1(MODULEVERSION)
Packit 5ea288
#endif
Packit 5ea288
#else
Packit 5ea288
#define BLD_VERSION_STRING		"2.0"
Packit 5ea288
#endif /* MODULEVERSION */
Packit 5ea288
Packit 5ea288
#undef  VER_COMPANYNAME_STR
Packit 5ea288
#define VER_COMPANYNAME_STR		"Intel Corporation"
Packit 5ea288
Packit 5ea288
#define VER_LEGALCOPYRIGHT_YEARS	"2000-2001"
Packit 5ea288
#define VER_LEGALCOPYRIGHT_STR	"Copyright (C) " VER_LEGALCOPYRIGHT_YEARS " " VER_COMPANYNAME_STR
Packit 5ea288
Packit 5ea288
#undef  VER_PRODUCTVERSION_STR
Packit 5ea288
#define VER_PRODUCTVERSION_STR	BLD_VERSION_STRING
Packit 5ea288
/* To be defined in the component's resource file */
Packit 5ea288
#undef VER_PRODUCTNAME_STR
Packit 5ea288
Packit 5ea288
#endif /* _IBA_BLD_VER_H_ */