All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe] [PATCH] rsyslog: fixes musl libc build
@ 2017-03-07 11:08 liu.ming50
  2017-03-07 23:54 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: liu.ming50 @ 2017-03-07 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ming Liu

From: Ming Liu <peter.x.liu@external.atlascopco.com>

- struct timeval is defined in sys/time.h with a musl libc.
- GLOB_BRACE is not defined in posix and thus not implemented in musl libc.

Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
---
 .../rsyslog/rsyslog/0001-Include-sys-time-h.patch  | 33 ++++++++++++++++++++
 .../rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch | 35 ++++++++++++++++++++++
 meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb |  5 ++++
 3 files changed, 73 insertions(+)
 create mode 100644 meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
 create mode 100644 meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch

diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
new file mode 100644
index 0000000..23c0f25
--- /dev/null
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
@@ -0,0 +1,33 @@
+From 3c3c21f4735eb215206273bc714c57c969926d3d Mon Sep 17 00:00:00 2001
+From: Ming Liu <peter.x.liu@external.atlascopco.com>
+Date: Sun, 26 Feb 2017 14:10:21 +0100
+Subject: [PATCH] Include sys/time.h
+
+struct timeval is defined in sys/time.h with a musl libc.
+
+Upstream-Status: Inappropriate [musl libc specific]
+
+Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
+---
+ tests/msleep.c | 4 ----
+ 1 file changed, 4 deletions(-)
+
+diff --git a/tests/msleep.c b/tests/msleep.c
+index 26a8206..ca818be 100644
+--- a/tests/msleep.c
++++ b/tests/msleep.c
+@@ -26,11 +26,7 @@
+ #include "config.h"
+ #include <stdio.h>
+ #include <stdlib.h>
+-#if defined(__FreeBSD__)
+ #include <sys/time.h>
+-#else
+-#include <time.h>
+-#endif
+ 
+ int main(int argc, char *argv[])
+ {
+-- 
+1.9.1
+
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
new file mode 100644
index 0000000..7903bb1
--- /dev/null
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
@@ -0,0 +1,35 @@
+From 6746e3a9615d1566bf228e9012d0841b15178810 Mon Sep 17 00:00:00 2001
+From: Ming Liu <liu.ming50@gmail.com>
+Date: Sun, 26 Feb 2017 13:50:33 +0100
+Subject: [PATCH] Undefine GLOB_BRACE
+
+GLOB_BRACE is not defined in posix and thus not implemented in musl libc.
+
+Fixed by defining it to 0 if it is undefined.
+
+Upstream-Status: Inappropriate [musl libc specific]
+
+Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
+---
+ plugins/imfile/imfile.c | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c
+index d20471f..f9aff81 100644
+--- a/plugins/imfile/imfile.c
++++ b/plugins/imfile/imfile.c
+@@ -85,6 +85,11 @@ static int bLegacyCnfModGlobalsPermitted;/* are legacy module-global config para
+ 
+ #define ADD_METADATA_UNSPECIFIED -1
+ 
++/* fixes build with musl libc */
++#ifndef GLOB_BRACE
++#define GLOB_BRACE 0
++#endif
++
+ /* this structure is used in pure polling mode as well one of the support
+  * structures for inotify.
+  */
+-- 
+1.9.1
+
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
index 62126f8..d81117c 100644
--- a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
@@ -26,6 +26,11 @@ SRC_URI = "http://www.rsyslog.com/download/files/download/rsyslog/${BPN}-${PV}.t
            file://rsyslog-fix-ptest-not-finish.patch \
 "
 
+SRC_URI_append_libc-musl = " \
+    file://0001-Undefine-GLOB_BRACE.patch \
+    file://0001-Include-sys-time-h.patch \
+"
+
 SRC_URI[md5sum] = "ad0f25f429aa2daa326732950a5eeb6c"
 SRC_URI[sha256sum] = "06e2884181333dccecceaca82827ae24ca7a258b4fbf7b1e07a80d4caae640ca"
 
-- 
1.9.1



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

* Re: [meta-oe] [PATCH] rsyslog: fixes musl libc build
  2017-03-07 11:08 [meta-oe] [PATCH] rsyslog: fixes musl libc build liu.ming50
@ 2017-03-07 23:54 ` Khem Raj
       [not found]   ` <VI1PR0301MB191902ED0C0BB1DB7F1F1F36E32E0@VI1PR0301MB1919.eurprd03.prod.outlook.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2017-03-07 23:54 UTC (permalink / raw)
  To: liu.ming50, openembedded-devel; +Cc: Ming Liu

On Tue, Mar 7, 2017 at 3:10 AM <liu.ming50@gmail.com> wrote:

> From: Ming Liu <peter.x.liu@external.atlascopco.com>
>
> - struct timeval is defined in sys/time.h with a musl libc.
> - GLOB_BRACE is not defined in posix and thus not implemented in musl libc.
>
> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> ---
>  .../rsyslog/rsyslog/0001-Include-sys-time-h.patch  | 33
> ++++++++++++++++++++
>  .../rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch | 35
> ++++++++++++++++++++++
>  meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb |  5 ++++
>  3 files changed, 73 insertions(+)
>  create mode 100644
> meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
>  create mode 100644
> meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
>
> diff --git
> a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
> new file mode 100644
> index 0000000..23c0f25
> --- /dev/null
> +++
> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
> @@ -0,0 +1,33 @@
> +From 3c3c21f4735eb215206273bc714c57c969926d3d Mon Sep 17 00:00:00 2001
> +From: Ming Liu <peter.x.liu@external.atlascopco.com>
> +Date: Sun, 26 Feb 2017 14:10:21 +0100
> +Subject: [PATCH] Include sys/time.h
> +
> +struct timeval is defined in sys/time.h with a musl libc.
> +
> +Upstream-Status: Inappropriate [musl libc specific]
> +
> +Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> +---
> + tests/msleep.c | 4 ----
> + 1 file changed, 4 deletions(-)
> +
> +diff --git a/tests/msleep.c b/tests/msleep.c
> +index 26a8206..ca818be 100644
> +--- a/tests/msleep.c
> ++++ b/tests/msleep.c
> +@@ -26,11 +26,7 @@
> + #include "config.h"
> + #include <stdio.h>
> + #include <stdlib.h>
> +-#if defined(__FreeBSD__)
> + #include <sys/time.h>
> +-#else
> +-#include <time.h>
> +-#endif
> +
> + int main(int argc, char *argv[])
> + {
> +--
> +1.9.1
> +
> diff --git
> a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
> new file mode 100644
> index 0000000..7903bb1
> --- /dev/null
> +++
> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
> @@ -0,0 +1,35 @@
> +From 6746e3a9615d1566bf228e9012d0841b15178810 Mon Sep 17 00:00:00 2001
> +From: Ming Liu <liu.ming50@gmail.com>
> +Date: Sun, 26 Feb 2017 13:50:33 +0100
> +Subject: [PATCH] Undefine GLOB_BRACE
> +
> +GLOB_BRACE is not defined in posix and thus not implemented in musl libc.
> +
> +Fixed by defining it to 0 if it is undefined.
> +
> +Upstream-Status: Inappropriate [musl libc specific]
> +
> +Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> +---
> + plugins/imfile/imfile.c | 5 +++++
> + 1 file changed, 5 insertions(+)
> +
> +diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c
> +index d20471f..f9aff81 100644
> +--- a/plugins/imfile/imfile.c
> ++++ b/plugins/imfile/imfile.c
> +@@ -85,6 +85,11 @@ static int bLegacyCnfModGlobalsPermitted;/* are legacy
> module-global config para
> +
> + #define ADD_METADATA_UNSPECIFIED -1
> +
> ++/* fixes build with musl libc */
> ++#ifndef GLOB_BRACE
> ++#define GLOB_BRACE 0
> ++#endif
> ++
> + /* this structure is used in pure polling mode as well one of the support
> +  * structures for inotify.
> +  */
> +--
> +1.9.1
> +
> diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
> b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
> index 62126f8..d81117c 100644
> --- a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
> +++ b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
> @@ -26,6 +26,11 @@ SRC_URI = "
> http://www.rsyslog.com/download/files/download/rsyslog/${BPN}-${PV}.t
>             file://rsyslog-fix-ptest-not-finish.patch \
>  "
>
> +SRC_URI_append_libc-musl = " \


Do they have to be applied conditionally?
I would suggest to make it portable across All libc

>
> +    file://0001-Undefine-GLOB_BRACE.patch \
> +    file://0001-Include-sys-time-h.patch \
> +"
> +
>  SRC_URI[md5sum] = "ad0f25f429aa2daa326732950a5eeb6c"
>  SRC_URI[sha256sum] =
> "06e2884181333dccecceaca82827ae24ca7a258b4fbf7b1e07a80d4caae640ca"
>
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-oe] [PATCH] rsyslog: fixes musl libc build
       [not found]   ` <VI1PR0301MB191902ED0C0BB1DB7F1F1F36E32E0@VI1PR0301MB1919.eurprd03.prod.outlook.com>
@ 2017-03-08 16:30     ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2017-03-08 16:30 UTC (permalink / raw)
  To: Peter Liu; +Cc: openembedded-devel, liu.ming50

On Wed, Mar 8, 2017 at 12:20 AM, Peter Liu
<peter.x.liu@external.atlascopco.com> wrote:
> From: Khem Raj <raj.khem@gmail.com>
> Sent: Wednesday, March 8, 2017 12:54:27 AM
> To: liu.ming50@gmail.com; openembedded-devel@lists.openembedded.org
> Cc: Peter Liu
> Subject: Re: [oe] [meta-oe] [PATCH] rsyslog: fixes musl libc build
>
>
> On Tue, Mar 7, 2017 at 3:10 AM <liu.ming50@gmail.com> wrote:
>>
>> From: Ming Liu <peter.x.liu@external.atlascopco.com>
>>
>> - struct timeval is defined in sys/time.h with a musl libc.
>> - GLOB_BRACE is not defined in posix and thus not implemented in musl
>> libc.
>>
>> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
>> ---
>>  .../rsyslog/rsyslog/0001-Include-sys-time-h.patch  | 33
>> ++++++++++++++++++++
>>  .../rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch | 35
>> ++++++++++++++++++++++
>>  meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb |  5 ++++
>>  3 files changed, 73 insertions(+)
>>  create mode 100644
>> meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
>>  create mode 100644
>> meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
>>
>> diff --git
>> a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
>> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
>> new file mode 100644
>> index 0000000..23c0f25
>> --- /dev/null
>> +++
>> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Include-sys-time-h.patch
>> @@ -0,0 +1,33 @@
>> +From 3c3c21f4735eb215206273bc714c57c969926d3d Mon Sep 17 00:00:00 2001
>> +From: Ming Liu <peter.x.liu@external.atlascopco.com>
>> +Date: Sun, 26 Feb 2017 14:10:21 +0100
>> +Subject: [PATCH] Include sys/time.h
>> +
>> +struct timeval is defined in sys/time.h with a musl libc.
>> +
>> +Upstream-Status: Inappropriate [musl libc specific]
>> +
>> +Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
>> +---
>> + tests/msleep.c | 4 ----
>> + 1 file changed, 4 deletions(-)
>> +
>> +diff --git a/tests/msleep.c b/tests/msleep.c
>> +index 26a8206..ca818be 100644
>> +--- a/tests/msleep.c
>> ++++ b/tests/msleep.c
>> +@@ -26,11 +26,7 @@
>> + #include "config.h"
>> + #include <stdio.h>
>> + #include <stdlib.h>
>> +-#if defined(__FreeBSD__)
>> + #include <sys/time.h>
>> +-#else
>> +-#include <time.h>
>> +-#endif
>> +
>> + int main(int argc, char *argv[])
>> + {
>> +--
>> +1.9.1
>> +
>> diff --git
>> a/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
>> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
>> new file mode 100644
>> index 0000000..7903bb1
>> --- /dev/null
>> +++
>> b/meta-oe/recipes-extended/rsyslog/rsyslog/0001-Undefine-GLOB_BRACE.patch
>> @@ -0,0 +1,35 @@
>> +From 6746e3a9615d1566bf228e9012d0841b15178810 Mon Sep 17 00:00:00 2001
>> +From: Ming Liu <liu.ming50@gmail.com>
>> +Date: Sun, 26 Feb 2017 13:50:33 +0100
>> +Subject: [PATCH] Undefine GLOB_BRACE
>> +
>> +GLOB_BRACE is not defined in posix and thus not implemented in musl libc.
>> +
>> +Fixed by defining it to 0 if it is undefined.
>> +
>> +Upstream-Status: Inappropriate [musl libc specific]
>> +
>> +Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
>> +---
>> + plugins/imfile/imfile.c | 5 +++++
>> + 1 file changed, 5 insertions(+)
>> +
>> +diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c
>> +index d20471f..f9aff81 100644
>> +--- a/plugins/imfile/imfile.c
>> ++++ b/plugins/imfile/imfile.c
>> +@@ -85,6 +85,11 @@ static int bLegacyCnfModGlobalsPermitted;/* are legacy
>> module-global config para
>> +
>> + #define ADD_METADATA_UNSPECIFIED -1
>> +
>> ++/* fixes build with musl libc */
>> ++#ifndef GLOB_BRACE
>> ++#define GLOB_BRACE 0
>> ++#endif
>> ++
>> + /* this structure is used in pure polling mode as well one of the
>> support
>> +  * structures for inotify.
>> +  */
>> +--
>> +1.9.1
>> +
>> diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
>> b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
>> index 62126f8..d81117c 100644
>> --- a/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
>> +++ b/meta-oe/recipes-extended/rsyslog/rsyslog_8.22.0.bb
>> @@ -26,6 +26,11 @@ SRC_URI =
>> "http://www.rsyslog.com/download/files/download/rsyslog/${BPN}-${PV}.t
>>             file://rsyslog-fix-ptest-not-finish.patch \
>>  "
>>
>> +SRC_URI_append_libc-musl = " \
>
>
> Do they have to be applied conditionally?
> I would suggest to make it portable across All libc
>
> OK, attempt to say that the changes would not cause problems in glibc as
> well, although glibc does not have the problem, will verify it and send a
> V2.

glibc wont have issues without patch sure. However making the patch
apply unconditionally makes maintaining easier.


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

end of thread, other threads:[~2017-03-08 16:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 11:08 [meta-oe] [PATCH] rsyslog: fixes musl libc build liu.ming50
2017-03-07 23:54 ` Khem Raj
     [not found]   ` <VI1PR0301MB191902ED0C0BB1DB7F1F1F36E32E0@VI1PR0301MB1919.eurprd03.prod.outlook.com>
2017-03-08 16:30     ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.