compiler quietening
[exim.git] / src / exim_monitor / em_version.c
1 /*************************************************
2 *                  Exim Monitor                  *
3 *************************************************/
4
5 /* Copyright (c) The Exim Maintainers 2020 - 2024 */
6 /* Copyright (c) University of Cambridge 1995 - 2018 */
7 /* See the file NOTICE for conditions of use and distribution. */
8 /* SPDX-License-Identifier: GPL-2.0-or-later */
9
10 #define EM_VERSION_C
11
12 #include "mytypes.h"
13 #include "store.h"
14 #include "path_max.h"
15 #include "macros.h"
16 #include <string.h>
17 #include <stdlib.h>
18
19 #include "version.h"
20
21 extern uschar *version_string;
22 extern uschar *version_date;
23
24 void
25 version_init(void)
26 {
27 #ifndef EXIM_BUILD_DATE_OVERRIDE
28 int i = 0;
29 uschar today[20];
30 #endif
31
32 version_string = US"2.06";
33
34 #ifdef EXIM_BUILD_DATE_OVERRIDE
35 /* Reproducible build support; build tooling should have given us something looking like
36  * "25-Feb-2017 20:15:40" in EXIM_BUILD_DATE_OVERRIDE based on $SOURCE_DATE_EPOCH in environ
37  * per <https://reproducible-builds.org/specs/source-date-epoch/>
38  */
39 version_date = US malloc(32);
40 version_date[0] = 0;
41 Ustrncat(version_date, EXIM_BUILD_DATE_OVERRIDE, 31);
42
43 #else
44 Ustrcpy(today, US __DATE__);
45 if (today[4] == ' ') i = 1;
46 today[3] = today[6] = '-';
47
48 version_date = US malloc(32);
49 version_date[0] = 0;
50 Ustrncat(version_date, today+4+i, 3-i);
51 Ustrncat(version_date, today, 4);
52 Ustrncat(version_date, today+7, 4);
53 Ustrcat(version_date, US" ");
54 Ustrcat(version_date, US __TIME__);
55 #endif
56 }
57
58 /* End of em_version.c */