Skip to content

Commit 7c35b4b

Browse files
committed
Upgrade liblo dependency to v0.35
1 parent 7dc5f00 commit 7c35b4b

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
python3 -m pip install --upgrade pip
2525
- name: install liblo
2626
run: |
27-
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.34/liblo-0.34.tar.gz
28-
tar -xzf liblo-0.34.tar.gz
29-
rm liblo-0.34.tar.gz
30-
mv liblo-0.34 liblo
27+
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.35/liblo-0.35.tar.gz
28+
tar -xzf liblo-0.35.tar.gz
29+
rm liblo-0.35.tar.gz
30+
mv liblo-0.35 liblo
3131
cd liblo
3232
(./configure --host=$HOST --prefix=$PWD/inst --enable-static --disable-shared --disable-tests --disable-tools --disable-examples --disable-doc CFLAGS=-fPIC || (cat config.log; false))
3333
make install
@@ -82,10 +82,10 @@ jobs:
8282
python3 --version
8383
- name: download liblo
8484
run: |
85-
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.34/liblo-0.34.tar.gz
86-
tar -xzf liblo-0.34.tar.gz
87-
rm liblo-0.34.tar.gz
88-
mv liblo-0.34 liblo
85+
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.35/liblo-0.35.tar.gz
86+
tar -xzf liblo-0.35.tar.gz
87+
rm liblo-0.35.tar.gz
88+
mv liblo-0.35 liblo
8989
- name: liblo make arm64
9090
run: |
9191
cd ./liblo

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.19)
33
# Replace with your own global paths before building and modify build directories if different from below
44
set(BUILD_DIR "${CMAKE_CURRENT_SOURCE_DIR}/build")
55
set(LIBMAPPER_INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/include")
6-
set(LIBLO_DIR "${BUILD_DIR}/liblo/liblo-0.34")
6+
set(LIBLO_DIR "${BUILD_DIR}/liblo/liblo-0.35")
77
set(LIBLO_BUILD_DIR "${LIBLO_DIR}/cmake/build/Release")
88
set(ZLIB_DIR "${BUILD_DIR}/zlib/msvc2017_64")
99
set(ZLIB_BUILD_DIR "${ZLIB_DIR}/lib/zlib")

bindings/python/manylinux.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ INST=$TMP/inst
1919

2020
(
2121
echo === Building liblo
22-
TAR=$PWD/liblo-0.34.tar.gz
23-
if ! (echo '14a65154e8f2609f558ce2648f1c99ef liblo-0.34.tar.gz' | md5sum -c -); then
24-
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.34/liblo-0.34.tar.gz
25-
echo '14a65154e8f2609f558ce2648f1c99ef liblo-0.34.tar.gz' | md5sum -c -
22+
TAR=$PWD/liblo-0.35.tar.gz
23+
if ! (echo 'fbe37b3e35f9dcdc4f90acfe513cc679 liblo-0.35.tar.gz' | md5sum -c -); then
24+
curl -L -O https://github.com/radarsat1/liblo/releases/download/0.35/liblo-0.35.tar.gz
25+
echo 'fbe37b3e35f9dcdc4f90acfe513cc679 liblo-0.35.tar.gz' | md5sum -c -
2626
fi
2727
cd $TMP
2828
tar -xzf $TAR
29-
cd liblo-0.34
29+
cd liblo-0.35
3030
./configure --host=$HOST --prefix=$INST --disable-tests --disable-tools --disable-examples --disable-doc \
3131
|| (cat config.log; echo "Error."; false)
3232
make clean

windows_build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ if (!(Test-Path "$($scriptDir)\build\zlib\")) {
1212
}
1313
# Download liblo and build
1414
if (!(Test-Path "$($scriptDir)\build\liblo\")) {
15-
Invoke-WebRequest https://github.com/radarsat1/liblo/archive/refs/tags/0.34.zip -OutFile liblo.zip
15+
Invoke-WebRequest https://github.com/radarsat1/liblo/archive/refs/tags/0.35.zip -OutFile liblo.zip
1616
Expand-Archive liblo.zip liblo
1717
rm liblo.zip
18-
cd liblo\liblo-0.34\cmake\
18+
cd liblo\liblo-0.35\cmake\
1919
(gc config-msvc.h.in) -replace '#define HAVE_UNISTD_H', '//#define HAVE_UNISTD_H' | Out-File -encoding ASCII config-msvc.h.in
2020
mkdir build
2121
cd build\
@@ -34,7 +34,7 @@ if (!(Test-Path "$($scriptDir)\dist\")) {
3434
}
3535
# Copy dlls to /dist
3636
cp -v ./build/Release/libmapper.dll ./dist/libmapper.dll
37-
cp -v ./build/liblo/liblo-0.34/cmake/build/Release/liblo.dll ./dist/liblo.dll
37+
cp -v ./build/liblo/liblo-0.35/cmake/build/Release/liblo.dll ./dist/liblo.dll
3838
cp -v ./build/zlib/msvc2017_64/lib/zlib/zlib.dll ./dist/zlib.dll
3939
# Copy test files
4040
cp -v ./build/test/Release/* ./dist/tests

0 commit comments

Comments
 (0)