1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/snapper/musl-stdout_stderr.patch
2020-02-25 18:00:21 -03:00

15 lines
438 B
Diff

In musl libc stdout and stderr are macros, thus we need to
undefine them to be able to use SystemCmd::stdout() and ::stderr()
members without renaming them - which may be a better choice.
--- a/snapper/SystemCmd.h 2015-08-30 10:59:53.740184303 +0200
+++ b/snapper/SystemCmd.h 2015-08-30 11:02:34.229187677 +0200
@@ -32,6 +32,8 @@
#include <list>
#include <boost/noncopyable.hpp>
+#undef stdout
+#undef stderr
namespace snapper
{