Skip to content

Commit

Permalink
add/update the minimum version check of boost to 1.44.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
hidehisaakiyama committed May 15, 2023
1 parent 6215f45 commit 65e99f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ endif()
find_package(BISON REQUIRED)
find_package(FLEX REQUIRED)
#find_package(Boost COMPONENTS system filesystem REQUIRED)
find_package(Boost COMPONENTS system REQUIRED)
find_package(Boost 1.44.0 COMPONENTS system REQUIRED)

include(GNUInstallDirs)
include(CheckIncludeFileCXX)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ AX_CXX_COMPILE_STDCXX_17(noext)
# check boost
##################################################

AX_BOOST_BASE([1.32.0])
AX_BOOST_BASE([1.44.0])
AX_BOOST_SYSTEM
CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
Expand Down

0 comments on commit 65e99f7

Please sign in to comment.