blob: 03087ff3ed981e96674c245f3b854e7e701fce45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* 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 */
|