build(install.sh): updaterd boost version to 1.83.0

This commit is contained in:
2025-07-29 12:29:02 -04:00
parent 1e11533ba9
commit 368656e78c
2 changed files with 3 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
boost_dep = dependency('boost', version: '>=1.85.0', required: true) boost_dep = dependency('boost', version: '>=1.83.0', required: true)

View File

@@ -1001,11 +1001,7 @@ run_boost_help_tui() {
help_text+="1. Download the latest Boost source from boost.org.\n" help_text+="1. Download the latest Boost source from boost.org.\n"
help_text+="2. Follow their instructions to build it. A typical sequence is:\n" help_text+="2. Follow their instructions to build it. A typical sequence is:\n"
help_text+=" ./bootstrap.sh\n" help_text+=" ./bootstrap.sh\n"
help_text+=" ./b2 install\n" help_text+=" sudo ./b2 install\n"
help_text+="3. Take note of the installation prefix (e.g., /usr/local).\n"
help_text+="4. Set the BOOST_ROOT environment variable before running this script again:\n"
help_text+=" export BOOST_ROOT=/path/to/your/boost/install\n"
help_text+=" ./install.sh --tui\n\n"
help_text+="Meson should then automatically find and use your manually installed version." help_text+="Meson should then automatically find and use your manually installed version."
dialog --title "Boost Compatibility Issue" --msgbox "$help_text" 25 78 dialog --title "Boost Compatibility Issue" --msgbox "$help_text" 25 78
@@ -1035,6 +1031,7 @@ run_main_tui() {
"1" "Install System Dependencies" "1" "Install System Dependencies"
"2" "Configure Build Options" "2" "Configure Build Options"
"3" "Install Python Bindings" "3" "Install Python Bindings"
"N" "View Notes"
) )
if $BOOST_OKAY; then if $BOOST_OKAY; then
menu_items+=( menu_items+=(
@@ -1043,7 +1040,6 @@ run_main_tui() {
"6" "Run Meson Compile" "6" "Run Meson Compile"
"7" "Run Meson Install (requires sudo)" "7" "Run Meson Install (requires sudo)"
"8" "Run Tests" "8" "Run Tests"
"N" "View Notes"
"S" "Save Configuration" "S" "Save Configuration"
"L" "Load Configuration" "L" "Load Configuration"
) )