1 /*************************************************
3 *************************************************/
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 */
21 extern uschar *version_string;
22 extern uschar *version_date;
30 version_string = US"2.06";
32 #ifdef EXIM_BUILD_DATE_OVERRIDE
33 /* Reproducible build support; build tooling should have given us something looking like
34 * "25-Feb-2017 20:15:40" in EXIM_BUILD_DATE_OVERRIDE based on $SOURCE_DATE_EPOCH in environ
35 * per <https://reproducible-builds.org/specs/source-date-epoch/>
37 version_date = US malloc(32);
39 Ustrncat(version_date, EXIM_BUILD_DATE_OVERRIDE, 31);
42 Ustrcpy(today, US __DATE__);
43 if (today[4] == ' ') i = 1;
44 today[3] = today[6] = '-';
46 version_date = US malloc(32);
48 Ustrncat(version_date, today+4+i, 3-i);
49 Ustrncat(version_date, today, 4);
50 Ustrncat(version_date, today+7, 4);
51 Ustrcat(version_date, US" ");
52 Ustrcat(version_date, US __TIME__);
56 /* End of em_version.c */