Skip to content

Commit 25391bf

Browse files
authoredMay 12, 2017
Merge pull request BVLC#5617 from lukeyeager/boost-1.54
Downgrade boost requirement from 1.55 to 1.54
2 parents 7d3f8a7 + b7e2b99 commit 25391bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎cmake/Dependencies.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(Caffe_DEFINITIONS "")
55
set(Caffe_COMPILE_OPTIONS "")
66

77
# ---[ Boost
8-
find_package(Boost 1.55 REQUIRED COMPONENTS system thread filesystem)
8+
find_package(Boost 1.54 REQUIRED COMPONENTS system thread filesystem)
99
list(APPEND Caffe_INCLUDE_DIRS PUBLIC ${Boost_INCLUDE_DIRS})
1010
list(APPEND Caffe_LINKER_LIBS PUBLIC ${Boost_LIBRARIES})
1111

‎scripts/travis/install-deps.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ apt-get -y update
99
apt-get install -y --no-install-recommends \
1010
build-essential \
1111
graphviz \
12-
libboost-filesystem1.55-dev \
13-
libboost-python1.55-dev \
14-
libboost-system1.55-dev \
15-
libboost-thread1.55-dev \
12+
libboost-filesystem-dev \
13+
libboost-python-dev \
14+
libboost-system-dev \
15+
libboost-thread-dev \
1616
libgflags-dev \
1717
libgoogle-glog-dev \
1818
libhdf5-serial-dev \

0 commit comments

Comments
 (0)
Please sign in to comment.