mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
52113da4b8
d/perl-5.38.2-x86_64-2.txz: Rebuilt. Added IO-Tty-1.20, needed by mosh. Upgraded: DBD-mysql-4.051, URI-5.27, XML-Parser-2.47, IO-Socket-SSL-2.085, and Net-SSLeay-1.94. kde/cantor-23.08.5-x86_64-3.txz: Rebuilt. Recompiled against libqalculate-5.0.0. kde/plasma-workspace-5.27.11-x86_64-2.txz: Rebuilt. Recompiled against libqalculate-5.0.0. kde/step-23.08.5-x86_64-2.txz: Rebuilt. Recompiled against libqalculate-5.0.0. l/abseil-cpp-20240116.1-x86_64-1.txz: Added. Needed for protobuf and mosh. l/libgnt-2.14.3-x86_64-2.txz: Rebuilt. Build with -Dpython2=false. Thanks to USUARIONUEVO. l/libqalculate-5.0.0-x86_64-2.txz: Rebuilt. Shared library .so-version bump. Thanks to gmgf. l/protobuf-26.0-x86_64-1.txz: Added. Needed for mosh. n/mosh-1.4.0-x86_64-1.txz: Added. Thanks to unInstance for cueing me in on this one. n/pinentry-1.3.0-x86_64-1.txz: Upgraded. x/vulkan-sdk-1.3.275.0-x86_64-2.txz: Rebuilt. Build glslang with -DENABLE_OPT=Off. Thanks to F0nix.
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
From 8012ca9c8d16f99679c171b36ad02655549ab7ff Mon Sep 17 00:00:00 2001
|
|
From: Alex Chernyakhovsky <alex@achernya.com>
|
|
Date: Sun, 30 Jul 2023 16:19:46 -0400
|
|
Subject: [PATCH] Bump C++ version to C++17
|
|
|
|
Protobuf versions since 3.6.0 have long had a C++11 dependency; even
|
|
more recent versions have picked up an Abseil dependency bumping that
|
|
to C++14. Since it is now 2023, defaulting to C++17 is reasonable, so
|
|
remove the conditional C++ standards version check that mosh
|
|
previously had and replace it with an unconditional C++17 check.
|
|
|
|
This means that all future commits can use C++17 features. According
|
|
to https://en.cppreference.com/w/cpp/compiler_support/17 this means
|
|
that minimum effective compiler versions for mosh become:
|
|
|
|
gcc 7 (May 2017)
|
|
clang 5 (September 2017)
|
|
|
|
This, in turn, implies that future versions of mosh will no longer be
|
|
available for RHEL/CentOS 7 (June 2014).
|
|
|
|
Closes: #1267
|
|
---
|
|
configure.ac | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index ee70c7b86..7f7dc3bc2 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -22,9 +22,9 @@ AS_IF([test x"$PROTOC" = x],
|
|
# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
|
|
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
|
|
|
-# Protobuf 3.6+ requires C++11.
|
|
-AS_IF([pkg-config --atleast-version 3.6.0 protobuf],
|
|
- [AX_CXX_COMPILE_STDCXX([11])])
|
|
+# Protobuf transitively requires at least C++14, get ahead of the
|
|
+# curve and require at least C++17.
|
|
+AX_CXX_COMPILE_STDCXX([17])
|
|
|
|
WARNING_CXXFLAGS=""
|
|
PICKY_CXXFLAGS=""
|