diff options
author | François Andriot <[email protected]> | 2024-10-01 14:32:47 +0200 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-01 21:51:49 +0900 |
commit | 83ac257366a56bd566fa38ab52fe254d23f88bcb (patch) | |
tree | b97105afdfe873e9ec52697f382625772264668a | |
parent | 87be3dda62486bf2d35bff023b90871c0e7c8ebb (diff) | |
download | koffice-83ac257366a56bd566fa38ab52fe254d23f88bcb.tar.gz koffice-83ac257366a56bd566fa38ab52fe254d23f88bcb.zip |
Fix kexidb build with -std=c++20.
This solves issue #70.
Signed-off-by: François Andriot <[email protected]>
(cherry picked from commit 4c1465bdd8f82e76ab31578fe5183df754acf9e1)
-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([ |