<p dir="ltr"><br>
On Jun 4, 2015 8:54 AM, "Derek Foreman" <<a href="mailto:derekf@osg.samsung.com">derekf@osg.samsung.com</a>> wrote:<br>
><br>
> Uses a glibc extension to fopen(), but we seem ok with glibc<br>
> extensions elsewhere (such as printf %m)...</p>
<p dir="ltr">I have been using wayland/weston with musl. So this fix is not good from portability  aspect. There might be glibc ' isms there but it's better to not make it worse</p>
<p dir="ltr">><br>
> Signed-off-by: Derek Foreman <<a href="mailto:derekf@osg.samsung.com">derekf@osg.samsung.com</a>><br>
> ---<br>
>  src/log.c | 2 +-<br>
>  1 file changed, 1 insertion(+), 1 deletion(-)<br>
><br>
> diff --git a/src/log.c b/src/log.c<br>
> index 99bbe18..ef9b54d 100644<br>
> --- a/src/log.c<br>
> +++ b/src/log.c<br>
> @@ -75,7 +75,7 @@ weston_log_file_open(const char *filename)<br>
>         wl_log_set_handler_server(custom_handler);<br>
><br>
>         if (filename != NULL)<br>
> -               weston_logfile = fopen(filename, "a");<br>
> +               weston_logfile = fopen(filename, "ae");<br>
><br>
>         if (weston_logfile == NULL)<br>
>                 weston_logfile = stderr;<br>
> --<br>
> 2.1.4<br>
><br>
> _______________________________________________<br>
> wayland-devel mailing list<br>
> <a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
</p>