From 961a774c618ccc637bee049d371a161a39b74350 Mon Sep 17 00:00:00 2001 From: Jan <125610144+Jongjan88@users.noreply.github.com> Date: Sat, 6 Apr 2024 01:38:55 +0200 Subject: [PATCH 1/3] Min Boost 1.84.0 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 19cc5271e2..3e6d822439 100644 --- a/configure.ac +++ b/configure.ac @@ -1403,7 +1403,7 @@ fi if test x$use_boost = xyes; then dnl Check for Boost headers - AX_BOOST_BASE([1.64.0],[],[AC_MSG_ERROR([Boost is not available!])]) + AX_BOOST_BASE([1.84.0],[],[AC_MSG_ERROR([Boost is not available!])]) if test x$want_boost = xno; then AC_MSG_ERROR([[only libdigibyteconsensus can be built without boost]]) fi From b5d3dec7f8894409e53364282637a2011abe7dbc Mon Sep 17 00:00:00 2001 From: Jan <125610144+Jongjan88@users.noreply.github.com> Date: Sat, 6 Apr 2024 01:43:37 +0200 Subject: [PATCH 2/3] sqlite3 >= 3.45.2 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3e6d822439..8139665956 100644 --- a/configure.ac +++ b/configure.ac @@ -1319,7 +1319,7 @@ if test x$enable_wallet != xno; then dnl Check for sqlite3 if test "x$use_sqlite" != "xno"; then - PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.7.17], [have_sqlite=yes], [have_sqlite=no]) + PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.45.2], [have_sqlite=yes], [have_sqlite=no]) fi AC_MSG_CHECKING([whether to build wallet with support for sqlite]) if test "x$use_sqlite" = "xno"; then From ceef1f4a8a873c5c19d4772b4f0f901115c65db2 Mon Sep 17 00:00:00 2001 From: Jan <125610144+Jongjan88@users.noreply.github.com> Date: Tue, 9 Apr 2024 20:06:16 +0200 Subject: [PATCH 3/3] Update configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8139665956..50362d7eb8 100644 --- a/configure.ac +++ b/configure.ac @@ -101,7 +101,7 @@ AC_PATH_TOOL(GCOV, gcov) AC_PATH_TOOL(LLVM_COV, llvm-cov) AC_PATH_PROG(LCOV, lcov) dnl Python 3.6 is specified in .python-version and should be used if available, see doc/dependencies.md -AC_PATH_PROGS([PYTHON], [python3.6 python3.7 python3.8 python3.9 python3 python]) +AC_PATH_PROGS([PYTHON], [python3.9 python3.10 python3.11 python3.12 python3 python]) AC_PATH_PROG(GENHTML, genhtml) AC_PATH_PROG([GIT], [git]) AC_PATH_PROG(CCACHE,ccache)