Skip to content
Snippets Groups Projects
Commit 75f287a6 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Unlock vstatlock for map_window()

parent 45b3cbdd
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -1171,7 +1171,9 @@ static void resize_window()
resize = new_scaling != vstat.scaling || width != vstat.winwidth || height != vstat.winheight;
x_cvstat.scaling = vstat.scaling;
if (resize) {
pthread_mutex_unlock(&vstatlock);
map_window();
pthread_mutex_lock(&vstatlock);
x11.XResizeWindow(dpy, win, width, height);
x_cvstat.winwidth = vstat.winwidth = width;
x_cvstat.winheight = vstat.winheight = height;
......
......@@ -48,6 +48,12 @@ hdiutil convert ~/Desktop/SyncTERM.dmg -format UDRO -o /Volumes/Synchronet/sbbs/
Release builds for Win32 using MinGW32 use the following command line:
gmake CC=mingw32-gcc VERBOSE=please AR=mingw32-ar AS=mingw32-as RANLIB=mingw32-ranlib RELEASE=1 CXX=mingw32-g++ WINDRES=mingw32-windres
32-bit Release builds for Win32 using MinGW-w64 use the following command line:
gmake AR=i686-w64-mingw32-ar AS=i686-w64-mingw32-as CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ RANLIB=i686-w64-mingw32-ranlib WINDRES=i686-w64-mingw32-windres RELEASE=1 VERBOSE=1
64-bit Release builds for Win32 using MinGW-w64 use the following command line:
gmake AR=x86_64-w64-mingw32-ar AS=x86_64-w64-mingw32-as CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ RANLIB=x86_64-w64-mingw32-ranlib WINDRES=x86_64-w64-mingw32-windres RELEASE=1 VERBOSE=1
Release builds for Emscripten use the following command line:
gmake CC=emcc VERBOSE=please AR=emar RANLIB=emranlib RELEASE=1 CXX=emc++ os=emscripten
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment