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>
This commit is contained in:
Andrew Clemons 2022-02-05 09:40:43 +13:00
parent de0eddb5bd
commit daf151c179
No known key found for this signature in database
GPG Key ID: CD26380FFACBDA2B
1 changed files with 1 additions and 1 deletions

View File

@ -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} \