Hi Rich,

I am wrestling with systemd on Sabotage. I am using musl 0.9.13.
(The git version is the same regarding this problem)

I get the following error:

src/shared/util.c: In function 'reset_terminal_fd':
src/shared/util.c:1786:46: error: 'IUTF8' undeclared (first use in this function)
src/shared/util.c:1786:46: note: each undeclared identifier is reported only once for each function it appears in

I can make it work by doing the following. (Stolen from you mips bits/termios.h file)

 --- include/bits/termios.h      2013-08-30 21:30:53.000000000 +0000
+++ /usr/include/bits/termios.h 2013-09-15 20:04:47.082909059 +0000
@@ -42,6 +42,7 @@
 #define IXANY   0004000
 #define IXOFF   0010000
 #define IMAXBEL 0020000
+#define IUTF8   0040000
 
 #define OPOST  0000001
 #define OLCUC  0000002



Can you please have a look whether this is correct ?

Regards
Paul