Skip to content

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
Fix several bugs causing a session to end prematurely, breaking the
connection.
  • Loading branch information
mid-kid committed Jan 16, 2022
1 parent 98f8ed7 commit 6049e24
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions releng/build-musl.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
set -e
CC="x86_64-pc-linux-gnu-gcc -m32" \
AR="x86_64-pc-linux-gnu-ar" \
RANLIB="x86_64-pc-linux-gnu-ranlib" \
Expand Down
1 change: 1 addition & 0 deletions releng/build-winxp-pthreads.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
set -e
CC="x86_64-w64-mingw32-gcc -m32 -D_WIN32_WINNT=0x0501" \
../mingw-w64-v9.0.0/mingw-w64-libraries/winpthreads/configure \
--prefix="$(realpath "$PWD/../winxp-pthreads")" \
Expand Down
12 changes: 8 additions & 4 deletions releng/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ make_musl() {
make -C .. "$@"
}

make_musl clean
make_musl
make_mingw clean
make_mingw
if [ -f musl/bin/musl-gcc ]; then
make_musl clean
make_musl optim
fi
if command -v x86_64-w64-mingw32-gcc 2> /dev/null; then
make_mingw clean
make_mingw optim
fi

0 comments on commit 6049e24

Please sign in to comment.