Browse Source

office/aiksaurus: Use the C++14 standard.

gcc >= 11.x defaults to -std=gnu++17 and it breaks the build
in this case.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
pull/168/head
Andrew Clemons 4 years ago
parent
commit
daf151c179
No known key found for this signature in database GPG Key ID: CD26380FFACBDA2B
  1. 2
      office/aiksaurus/aiksaurus.SlackBuild

2
office/aiksaurus/aiksaurus.SlackBuild

@ -80,7 +80,7 @@ find -L . \
patch -p1 < $CWD/include-fixes.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS -std=c++14" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \

Loading…
Cancel
Save