commit: 00f2388f06a9681e4050be48aa7caa1bd1c1b861 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Tue Feb 22 17:29:03 2022 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Tue Feb 22 17:29:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f2388f
profiles/default/linux: set enable_year2038="no" This bypasses the 64-bit time_t configure logic entirely, and prevents configure failures on 32-bit systems where /usr/bin/touch supports 64-bit timestamps. Bug: https://bugs.gentoo.org/828001 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> profiles/default/linux/make.defaults | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults index db9698a32848..ac82c2ea8184 100644 --- a/profiles/default/linux/make.defaults +++ b/profiles/default/linux/make.defaults @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # # System-wide defaults for the Portage system @@ -57,4 +57,4 @@ LDFLAGS="-Wl,-O1 -Wl,--as-needed" # Mike Gilbert <[email protected]> (2021-12-17) # Prevent automagic use of 64-bit time_t. # https://bugs.gentoo.org/828001 -gl_cv_type_time_t_bits_macro="no" +enable_year2038="no"
