diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-06 10:25:01 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-07 00:08:51 +0700 |
commit | 4080e23e42c8c779e2de795487f2f4d73225b368 (patch) | |
tree | 5909e2a176aca3408f6aecdb6d758c46d31968ed | |
parent | e73d9a732b75ec1263454197b86691f7e760f3a0 (diff) |
network/shibboleth-sp: Use the C++14 standard.
gcc >= 11.x defaults to -std=gnu++17 and it breaks the build
in this case
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/shibboleth-sp/shibboleth-sp.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/shibboleth-sp/shibboleth-sp.SlackBuild b/network/shibboleth-sp/shibboleth-sp.SlackBuild index fca8d3c1b2c7..2852ee52931e 100644 --- a/network/shibboleth-sp/shibboleth-sp.SlackBuild +++ b/network/shibboleth-sp/shibboleth-sp.SlackBuild @@ -87,7 +87,7 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS -std=c++14" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ |