Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/
Date: Tue, 22 Feb 2022 17:31:20
Message-Id: 1645550943.00f2388f06a9681e4050be48aa7caa1bd1c1b861.floppym@gentoo
1 commit: 00f2388f06a9681e4050be48aa7caa1bd1c1b861
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 22 17:29:03 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 22 17:29:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f2388f
7
8 profiles/default/linux: set enable_year2038="no"
9
10 This bypasses the 64-bit time_t configure logic entirely, and prevents
11 configure failures on 32-bit systems where /usr/bin/touch supports
12 64-bit timestamps.
13
14 Bug: https://bugs.gentoo.org/828001
15 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
16
17 profiles/default/linux/make.defaults | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults
21 index db9698a32848..ac82c2ea8184 100644
22 --- a/profiles/default/linux/make.defaults
23 +++ b/profiles/default/linux/make.defaults
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 +# Copyright 1999-2022 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28 #
29 # System-wide defaults for the Portage system
30 @@ -57,4 +57,4 @@ LDFLAGS="-Wl,-O1 -Wl,--as-needed"
31 # Mike Gilbert <floppym@g.o> (2021-12-17)
32 # Prevent automagic use of 64-bit time_t.
33 # https://bugs.gentoo.org/828001
34 -gl_cv_type_time_t_bits_macro="no"
35 +enable_year2038="no"