Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc
@ 2016-05-30 20:39 Michael Jeanson
  2016-05-30 20:39 ` [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific Michael Jeanson
  2016-05-31  5:53 ` [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Jérémie Galarneau
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Jeanson @ 2016-05-30 20:39 UTC (permalink / raw)


Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
---
 formats/lttng-live/lttng-live.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/formats/lttng-live/lttng-live.h b/formats/lttng-live/lttng-live.h
index e00a51e..b315458 100644
--- a/formats/lttng-live/lttng-live.h
+++ b/formats/lttng-live/lttng-live.h
@@ -25,6 +25,7 @@
  */
 
 #include <stdint.h>
+#include <sys/param.h>
 #include "lttng-viewer-abi.h"
 
 #define LTTNG_DEFAULT_NETWORK_VIEWER_PORT	5344
-- 
2.7.4



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific
  2016-05-30 20:39 [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Michael Jeanson
@ 2016-05-30 20:39 ` Michael Jeanson
  2016-05-31  5:53   ` Jérémie Galarneau
  2016-05-31  5:53 ` [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Jérémie Galarneau
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Jeanson @ 2016-05-30 20:39 UTC (permalink / raw)


Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
---
 include/babeltrace/compat/string.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/babeltrace/compat/string.h b/include/babeltrace/compat/string.h
index 7a574e6..6092616 100644
--- a/include/babeltrace/compat/string.h
+++ b/include/babeltrace/compat/string.h
@@ -26,7 +26,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
+#if !defined(__GLIBC__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
 
 /* XSI-compliant strerror_r */
 static inline
-- 
2.7.4



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific
  2016-05-30 20:39 ` [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific Michael Jeanson
@ 2016-05-31  5:53   ` Jérémie Galarneau
  0 siblings, 0 replies; 4+ messages in thread
From: Jérémie Galarneau @ 2016-05-31  5:53 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 925 bytes --]

Merged in master and stable-1.4. Thanks!

Jérémie

On Mon, May 30, 2016 at 4:39 PM, Michael Jeanson <mjeanson at efficios.com> wrote:
> Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
> ---
>  include/babeltrace/compat/string.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/babeltrace/compat/string.h b/include/babeltrace/compat/string.h
> index 7a574e6..6092616 100644
> --- a/include/babeltrace/compat/string.h
> +++ b/include/babeltrace/compat/string.h
> @@ -26,7 +26,7 @@
>  #include <string.h>
>  #include <stdlib.h>
>
> -#if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
> +#if !defined(__GLIBC__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
>
>  /* XSI-compliant strerror_r */
>  static inline
> --
> 2.7.4
>



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc
  2016-05-30 20:39 [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Michael Jeanson
  2016-05-30 20:39 ` [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific Michael Jeanson
@ 2016-05-31  5:53 ` Jérémie Galarneau
  1 sibling, 0 replies; 4+ messages in thread
From: Jérémie Galarneau @ 2016-05-31  5:53 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 721 bytes --]

Merged in master and stable-1.4. Thanks!

Jérémie

On Mon, May 30, 2016 at 4:39 PM, Michael Jeanson <mjeanson at efficios.com> wrote:
> Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
> ---
>  formats/lttng-live/lttng-live.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/formats/lttng-live/lttng-live.h b/formats/lttng-live/lttng-live.h
> index e00a51e..b315458 100644
> --- a/formats/lttng-live/lttng-live.h
> +++ b/formats/lttng-live/lttng-live.h
> @@ -25,6 +25,7 @@
>   */
>
>  #include <stdint.h>
> +#include <sys/param.h>
>  #include "lttng-viewer-abi.h"
>
>  #define LTTNG_DEFAULT_NETWORK_VIEWER_PORT      5344
> --
> 2.7.4
>



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-31  5:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-30 20:39 [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Michael Jeanson
2016-05-30 20:39 ` [lttng-dev] [PATCH babeltrace 2/2] Fix: strerror_r behavior is glibc specific Michael Jeanson
2016-05-31  5:53   ` Jérémie Galarneau
2016-05-31  5:53 ` [lttng-dev] [PATCH babeltrace 1/2] sys/param.h is required for MAXNAMLEN on musl libc Jérémie Galarneau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox