- 08 Oct, 2020 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
- 17 Sep, 2020 1 commit
-
-
Rosen Penev authored
GCC5 cannot build mpd. Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- 07 Sep, 2020 1 commit
-
-
Max Kellermann authored
-
- 23 Jul, 2020 5 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Rosen Penev authored
Need to check for it in iconv.h. Otherwise meson prefixes a __builtin variant in the check.
-
- 20 Jul, 2020 5 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
Preparing to replace `smbclient_mutex`, for finer-grained locking.
-
Max Kellermann authored
We no longer need to call smbc_init() because we don't need the compat layer anymore.
-
Max Kellermann authored
As a side effect, the input plugin closes the SMB/CIFS connection after closing the file. This solves one part of https://github.com/MusicPlayerDaemon/MPD/issues/916
-
Max Kellermann authored
-
- 06 Jul, 2020 1 commit
-
-
Max Kellermann authored
Prepare for templated functions.
-
- 01 Jul, 2020 1 commit
-
-
Max Kellermann authored
-
- 10 Jun, 2020 1 commit
-
-
Max Kellermann authored
Our Windows build is built with `--disable-netrc`, and that makes CURLOPT_NETRC fail, causing failures with all streams. D'oh! Closes https://github.com/MusicPlayerDaemon/MPD/issues/886
-
- 30 May, 2020 2 commits
-
-
Rosen Penev authored
The ones in std have overloads for const char/char. Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
Max Kellermann authored
Passing `length+1` to `MultiByteToWideChar()` means the function may fill the whole buffer with output data, and could theoretically overwrite the null terminator. In practice, this will never happen, but this way, it's slightly more correct. Also, null-terminate after `MultiByteToWideChar()`, after we got the real output length. Again, this would never have been a problem, but who knows...
-
- 29 May, 2020 1 commit
-
-
Shen-Ta Hsieh authored
-
- 27 May, 2020 5 commits
-
-
Max Kellermann authored
libavutil's macro definition is a compound literal, which is illegal in C++. Fixes yet another -Wpedantic warning.
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Rosen Penev authored
Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- 26 May, 2020 1 commit
-
-
Max Kellermann authored
-
- 05 May, 2020 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
This makes ccache more efficient when recompiling with different plugins.
-
- 23 Apr, 2020 5 commits
-
-
Max Kellermann authored
libnfs is compiled with `-D_FILE_OFFSET_BITS=64`, but Meson decides not to enable this mode. We could force this mode, but then again, these days, nobody should be using 32-bit Windows ... so this is a kludge only for debugging with 32-bit WINE.
-
Max Kellermann authored
-
Max Kellermann authored
This flag is output-only.
-
Max Kellermann authored
The object's state is `IDLE` when OnNfsCallback() gets invoked, so let's use the start of the method to reset the `state` field.
-
Max Kellermann authored
Fixes assertion failure if the callback fails.
-
- 22 Apr, 2020 4 commits
-
-
Max Kellermann authored
Using CompareStringEx() and FindNLSStringEx(). Implements a missing piece for https://github.com/MusicPlayerDaemon/MPD/issues/820
-
Max Kellermann authored
-
Max Kellermann authored
LINGUISTIC_IGNORECASE is unimplemented on Wine, but since we don't have any locale support (yet), and we're using LOCALE_NAME_INVARIANT, NORM_IGNORECASE should essentially be the same, so why bother.
-
Max Kellermann authored
Reverts commit fb3564fb LCMapStringEx() doesn't do what I imagined it would do 5 years ago. D'oh! Closes https://github.com/MusicPlayerDaemon/MPD/issues/820
-
- 08 Apr, 2020 2 commits
-
-
Max Kellermann authored
Eliminates lots of overhead.
-
Rosen Penev authored
std::all_of becomes constexpr in C++20. I'm not sure it results in better performance. Found with useStlAlgorithm Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- 03 Apr, 2020 1 commit
-
-
Max Kellermann authored
-