Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
172c2ae1
Commit
172c2ae1
authored
Oct 17, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.22.1' into master
release v0.22.1
parents
4f0e0af3
d7fcaf33
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
NEWS
NEWS
+1
-1
libs.py
python/build/libs.py
+1
-0
no_sprintf_s
src/lib/nfs/patches/no_sprintf_s
+14
-0
series
src/lib/nfs/patches/series
+1
-0
No files found.
NEWS
View file @
172c2ae1
...
...
@@ -2,7 +2,7 @@ ver 0.23 (not yet released)
* protocol
- new command "getvol"
ver 0.22.1 (
not yet released
)
ver 0.22.1 (
2020/10/17
)
* decoder
- opus: apply the OpusHead output gain even if there is no EBU R128 tag
- opus: fix track/album ReplayGain fallback
...
...
python/build/libs.py
View file @
172c2ae1
...
...
@@ -429,6 +429,7 @@ libnfs = AutotoolsProject(
'--disable-utils'
,
'--disable-examples'
,
],
base
=
'libnfs-libnfs-4.0.0'
,
patches
=
'src/lib/nfs/patches'
,
autoreconf
=
True
,
)
...
...
src/lib/nfs/patches/no_sprintf_s
0 → 100644
View file @
172c2ae1
Index: libnfs-libnfs-4.0.0/include/win32/win32_compat.h
===================================================================
--- libnfs-libnfs-4.0.0.orig/include/win32/win32_compat.h
+++ libnfs-libnfs-4.0.0/include/win32/win32_compat.h
@@ -133,7 +133,9 @@ struct pollfd {
/* Wrapper macros to call misc. functions win32 is missing */
#define poll(x, y, z) win32_poll(x, y, z)
+#ifndef __MINGW32__
#define snprintf sprintf_s
+#endif
#define inet_pton(x,y,z) win32_inet_pton(x,y,z)
#define open(x, y, z) _open(x, y, z)
#ifndef lseek
src/lib/nfs/patches/series
0 → 100644
View file @
172c2ae1
no_sprintf_s
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment