set version to 1.3.0

Signed-off-by: Intel
This commit is contained in:
Intel 2012-12-20 00:00:00 +01:00 committed by Thomas Monjalon
parent 1d8d954b80
commit 594f3c1cea

View File

@ -47,6 +47,11 @@ extern "C" {
#include <stdint.h>
#include <rte_common.h>
/**
* String that appears before the version number
*/
#define RTE_VER_PREFIX "RTE"
/**
* Major version number i.e. the x in x.y.z
*/
@ -55,14 +60,18 @@ extern "C" {
/**
* Minor version number i.e. the y in x.y.z
*/
#define RTE_VER_MINOR 2
#define RTE_VER_MINOR 3
/**
* Patch level number i.e. the z in x.y.z
*/
#define RTE_VER_PATCH_LEVEL 3
#define RTE_VER_PATCH_LEVEL 0
#define RTE_VER_PREFIX "RTE"
/**
* Extra string to be appended to version number,
* for example: pre1, EAR, final etc.
*/
#define RTE_VER_SUFFIX ""
/**
* Function returning string of version number: "RTE x.y.z"
@ -71,10 +80,17 @@ extern "C" {
*/
static inline const char *
rte_version(void) {
return RTE_VER_PREFIX" "
RTE_STR(RTE_VER_MAJOR)"."
RTE_STR(RTE_VER_MINOR)"."
RTE_STR(RTE_VER_PATCH_LEVEL);
if (sizeof(RTE_VER_SUFFIX) > sizeof(""))
return RTE_VER_PREFIX" "
RTE_STR(RTE_VER_MAJOR)"."
RTE_STR(RTE_VER_MINOR)"."
RTE_STR(RTE_VER_PATCH_LEVEL)
"-"RTE_VER_SUFFIX;
else
return RTE_VER_PREFIX" "
RTE_STR(RTE_VER_MAJOR)"."
RTE_STR(RTE_VER_MINOR)"."
RTE_STR(RTE_VER_PATCH_LEVEL);
}
#ifdef __cplusplus