Willy Tarreau | 909b9d8 | 2019-01-04 18:20:32 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Version reporting : all user-visible version information should come from |
| 3 | * this file so that rebuilding only this one is enough to report the latest |
| 4 | * code version. |
| 5 | */ |
| 6 | |
| 7 | #include <common/version.h> |
| 8 | |
Willy Tarreau | 4cb1637 | 2019-10-16 09:44:55 +0200 | [diff] [blame] | 9 | /* These ones are made variables and not constants so that they are stored into |
| 10 | * the data region and prominently appear in core files. |
| 11 | */ |
| 12 | char haproxy_version_here[] = "HAProxy version follows"; |
| 13 | char haproxy_version[] = HAPROXY_VERSION; |
| 14 | char haproxy_date[] = HAPROXY_DATE; |
| 15 | char stats_version_string[] = STATS_VERSION_STRING; |