mirror of https://github.com/google/snappy.git
Fix generated version number in open source release.
Lands GitHub PR #61. The patch was also independently contributed by Martin Gieseking <martin.gieseking@uos.de>.
This commit is contained in:
parent
b02bfa754e
commit
26102a0c66
|
@ -48,9 +48,9 @@
|
|||
#include <sys/uio.h>
|
||||
#endif // HAVE_SYS_UIO_H
|
||||
|
||||
#define SNAPPY_MAJOR ${SNAPPY_MAJOR}
|
||||
#define SNAPPY_MINOR ${SNAPPY_MINOR}
|
||||
#define SNAPPY_PATCHLEVEL ${SNAPPY_PATCHLEVEL}
|
||||
#define SNAPPY_MAJOR ${PROJECT_VERSION_MAJOR}
|
||||
#define SNAPPY_MINOR ${PROJECT_VERSION_MINOR}
|
||||
#define SNAPPY_PATCHLEVEL ${PROJECT_VERSION_PATCH}
|
||||
#define SNAPPY_VERSION \
|
||||
((SNAPPY_MAJOR << 16) | (SNAPPY_MINOR << 8) | SNAPPY_PATCHLEVEL)
|
||||
|
||||
|
|
Loading…
Reference in New Issue