Skip to content

Commit

Permalink
chore(build): do not install/build boost::signals(v1) library, which …
Browse files Browse the repository at this point in the history
…is discontinued in boost 1.69
  • Loading branch information
lotem committed Jan 13, 2019
1 parent 5ad333d commit 402a93a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if %nocache% == 1 (
7z x boost_1_68_0.7z | find "ing archive"
cd boost_1_68_0
call .\bootstrap.bat
call .\b2.exe --prefix=%BOOST_ROOT% toolset=msvc-14.0 variant=release link=static threading=multi runtime-link=static define=BOOST_USE_WINAPI_VERSION=0x0501 cxxflags="/Zc:threadSafeInit- " --with-date_time --with-filesystem --with-locale --with-regex --with-signals --with-system --with-thread -q -d0 install
call .\b2.exe --prefix=%BOOST_ROOT% toolset=msvc-14.0 variant=release link=static threading=multi runtime-link=static define=BOOST_USE_WINAPI_VERSION=0x0501 cxxflags="/Zc:threadSafeInit- " --with-date_time --with-filesystem --with-locale --with-regex --with-system --with-thread -q -d0 install
xcopy /e /i /y /q %BOOST_ROOT%\include\boost-1_68\boost %BOOST_ROOT%\boost
popd
if %ERRORLEVEL% NEQ 0 goto ERROR
Expand Down
1 change: 0 additions & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ set BOOST_COMPILED_LIBS=--with-date_time^
--with-filesystem^
--with-locale^
--with-regex^
--with-signals^
--with-system^
--with-thread

Expand Down
2 changes: 1 addition & 1 deletion travis-before-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

if [[ "$TRAVIS_OS_NAME" == linux ]]; then
sudo apt-get update
sudo apt-get install doxygen libboost-filesystem-dev libboost-locale-dev libboost-regex-dev libboost-signals-dev libboost-system-dev libgoogle-glog-dev libleveldb-dev libmarisa-dev libyaml-cpp-dev -y
sudo apt-get install doxygen libboost-filesystem-dev libboost-locale-dev libboost-regex-dev libboost-system-dev libgoogle-glog-dev libleveldb-dev libmarisa-dev libyaml-cpp-dev -y
make thirdparty/gtest
make -C thirdparty/src/opencc build
sudo env "PATH=$PATH" make -C thirdparty/src/opencc install
Expand Down

0 comments on commit 402a93a

Please sign in to comment.