Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
d8a5fd00
Commit
d8a5fd00
authored
1 year ago
by
Deucе
Browse files
Options
Downloads
Patches
Plain Diff
Unlock vstatlock for map_window()
parent
3d42f98b
No related branches found
No related tags found
No related merge requests found
Pipeline
#5892
passed
1 year ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/conio/x_events.c
+2
-0
2 additions, 0 deletions
src/conio/x_events.c
src/syncterm/COMPILING
+6
-0
6 additions, 0 deletions
src/syncterm/COMPILING
with
8 additions
and
0 deletions
src/conio/x_events.c
+
2
−
0
View file @
d8a5fd00
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
src/syncterm/COMPILING
+
6
−
0
View file @
d8a5fd00
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment