File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ others/jansson
16
16
others /lib60870
17
17
others /libiec61850
18
18
others /S2OPC
19
- others /expat-2.6.0
19
+ others /libexpat
20
20
others /check-0.15.2
21
21
others /mbedtls-2.28.7
22
22
others /* .tar.gz
Original file line number Diff line number Diff line change 47
47
48
48
# libexpat:
49
49
cd ${git_root}
50
- libexpat_version=" 2.6.2 "
50
+ libexpat_version=" 2.6.0 "
51
51
libexpat_branch=" R_${libexpat_version// ./ _} "
52
- rm -rf expat-${libexpat_version} .tar.gz expat-${libexpat_version}
53
- wget https://github.com/libexpat/libexpat/releases/download/${libexpat_branch} /expat-${libexpat_version} .tar.gz
54
- tar xzvf expat-${libexpat_version} .tar.gz
52
+ rm -rf libexpat
53
+ git clone https://github.com/libexpat/libexpat.git --branch ${libexpat_branch} --depth 1
55
54
(
56
- cd expat-${libexpat_version}
57
- mkdir build
58
- cd build
59
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DEXPAT_SHARED_LIBS=ON ..
60
- make
55
+ cd libexpat/expat
56
+ ./buildconf.sh && \
57
+ ./configure && \
58
+ make && \
61
59
sudo make install
62
60
)
63
61
You can’t perform that action at this time.
0 commit comments