diff options
author | François Andriot <albator78@libertysurf.fr> | 2024-10-01 14:32:47 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2024-10-01 14:32:47 +0200 |
commit | 4c1465bdd8f82e76ab31578fe5183df754acf9e1 (patch) | |
tree | ffc0fea7a95bc7555bf19efae69e2fed06e2deae /kexi | |
parent | a616663e125e9f6f2966ee85e7b37ebc85eb2967 (diff) | |
download | koffice-4c1465bdd8f82e76ab31578fe5183df754acf9e1.tar.gz koffice-4c1465bdd8f82e76ab31578fe5183df754acf9e1.zip |
Fix kexidb build with -std=c++20.
This solves issue #70.
Signed-off-by: François Andriot <francois.andriot@thalesgroup.com>
Diffstat (limited to 'kexi')
-rw-r--r-- | kexi/kexidb/drivers/configure.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/kexidb/drivers/configure.in.in b/kexi/kexidb/drivers/configure.in.in index a5126cf4..ab04a891 100644 --- a/kexi/kexidb/drivers/configure.in.in +++ b/kexi/kexidb/drivers/configure.in.in @@ -307,7 +307,7 @@ if test "$compile_pgsql_plugin" = "yes"; then ) if test "x$pqxx_exceptions" = "xno"; then AC_MSG_RESULT(no) - for CXX_STD_TEST in 11 14 17; do + for CXX_STD_TEST in 11 14 17 20; do AC_MSG_CHECKING([PostgreSQL build with C++$CXX_STD_TEST]) CXXFLAGS="$SAVED_CXXFLAGS $PQXX_CXXFLAGS -std=c++$CXX_STD_TEST" AC_TRY_COMPILE([ |