9c0e580e95
Version 1.2.5 improvements: - Added 2D acceleration for R6xx and R7xx. - Added XVideo support for R6xx and R7xx. - Added support for RS880 and RV790. - Added RandR 1.3 mandatory properties. - Refactoring of MC code. - Enable DRI support by default on R5xx and RS6xx. - LUT (color lookup table) fixes. - Tons of quirk table entries and bug fixes. - Fix register accesses for processors that reorder memory writes.
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
/*
|
|
* Basic versioning gathered from the git repository.
|
|
* Automatically generated by ../../../git_version.sh.
|
|
*/
|
|
|
|
#ifndef GIT_VERSION_H
|
|
#define GIT_VERSION_H 1
|
|
|
|
/* whether this is a dist tarball or not */
|
|
#define GIT_IS_DIST 1
|
|
|
|
/* No errors occured while running git */
|
|
#undef GIT_ERRORS
|
|
|
|
/* git utilities found */
|
|
#undef GIT_NOT_FOUND
|
|
#define GIT_VERSION "git version 1.6.0.2"
|
|
|
|
/* git repo found */
|
|
#define GIT_REPO 1
|
|
|
|
/* Git SHA ID of last commit */
|
|
#define GIT_SHAID "cb54f48b"
|
|
|
|
/* Branch this tree is on */
|
|
#define GIT_BRANCH "master"
|
|
|
|
/* SHA-ID uniquely defines the state of this code */
|
|
#undef GIT_DIRTY
|
|
|
|
/* Define GIT_MESSAGE such that
|
|
* printf("%s: built from %s", argv[0], GIT_MESSAGE);
|
|
* forms a proper sentence.
|
|
*/
|
|
|
|
#ifdef GIT_DIRTY
|
|
# define GIT_DIRTY_MSG " + changes"
|
|
#else /* !GIT_DIRTY */
|
|
# define GIT_DIRTY_MSG ""
|
|
#endif /* GIT_DIRTY */
|
|
|
|
#ifdef GIT_ERRORS
|
|
# define GIT_ERROR_MSG " with error: " GIT_ERRORS
|
|
#else /* !GIT_ERRORS */
|
|
# define GIT_ERROR_MSG ""
|
|
#endif /* GIT_ERRORS */
|
|
|
|
#ifdef GIT_IS_DIST
|
|
# define GIT_DIST_MSG "dist of "
|
|
#else /* !GIT_IS_DIST */
|
|
# define GIT_DIST_MSG ""
|
|
#endif /* GIT_IS_DIST */
|
|
|
|
#ifdef GIT_REPO
|
|
# ifdef GIT_NOT_FOUND
|
|
# define GIT_MESSAGE GIT_DIST_MSG "git sources without git: " GIT_NOT_FOUND
|
|
# else /* !GIT_NOT_FOUND */
|
|
# define GIT_MESSAGE \
|
|
GIT_DIST_MSG \
|
|
"git branch " GIT_BRANCH ", " \
|
|
"commit " GIT_SHAID GIT_DIRTY_MSG \
|
|
GIT_ERROR_MSG
|
|
# endif /* GIT_NOT_FOUND */
|
|
#else /* !GIT_REPO */
|
|
# define GIT_MESSAGE GIT_DIST_MSG "non-git sources" GIT_ERROR_MSG
|
|
#endif /* GIT_REPO */
|
|
|
|
#endif /* GIT_VERSION_H */
|