<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-oe/recipes-extended, branch pyro</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=pyro</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=pyro'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2017-09-14T00:16:28+00:00</updated>
<entry>
<title>corosync: Fix build with musl</title>
<updated>2017-09-14T00:16:28+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-08-31T02:03:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=3232999d645d166cad1e6f678afd45e974fb506b'/>
<id>urn:sha1:3232999d645d166cad1e6f678afd45e974fb506b</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
(cherry picked from commit 2756ef68c92db20c093ef44460ff0ff7047006ec)
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>sblim-sfcb: Fix build with musl</title>
<updated>2017-09-14T00:16:28+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-09-01T05:07:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=bd4cc1044eeb9ba967eebf982d70b44055012809'/>
<id>urn:sha1:bd4cc1044eeb9ba967eebf982d70b44055012809</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
(cherry picked from commit e67ac72d077a6d01577d15c08898f54bc5f568a2)
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>sblim-sfcb: Add stdint.h for 'UINT16_MAX'</title>
<updated>2017-09-14T00:16:28+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-06-28T02:08:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=386613255973754d0d99c84149c327abd48f821d'/>
<id>urn:sha1:386613255973754d0d99c84149c327abd48f821d</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
(cherry picked from commit c0d763a6e604647f6dad25119eed5820195c2280)
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>corosync: fixes for sysvinit and systemd</title>
<updated>2017-09-14T00:16:28+00:00</updated>
<author>
<name>Jackie Huang</name>
<email>jackie.huang@windriver.com</email>
</author>
<published>2017-08-29T09:27:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=84d5454ade283f60586adfb6f146f2bd76856cb0'/>
<id>urn:sha1:84d5454ade283f60586adfb6f146f2bd76856cb0</id>
<content type='text'>
* Replace ${systemd_unitdir}/system with ${systemd_system_unitdir}

* Remove the upstar settings and don't install upstar config files

* Add volatile for sysvinit and tmpfiles for systemd

* Set the correct bash path for init scripts to avoid QA issue:
| corosync-2.4.2: /usr/share/corosync/corosync contained in package corosync
  requires /tmp/hosttools/bash, but no providers found in RDEPENDS_corosync?
  [file-rdeps]

* The systemd services are intalled properly by "make install",
  no need to install manually.

Signed-off-by: Jackie Huang &lt;jackie.huang@windriver.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
(cherry picked from commit 8ca8ec9be39ea04c3b89831e6cafa4a67f015f55)
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>libexecinfo: fix complie issue</title>
<updated>2017-09-14T00:16:28+00:00</updated>
<author>
<name>Armin Kuster</name>
<email>akuster808@gmail.com</email>
</author>
<published>2017-08-07T01:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=792548bce16d8c6647596d5da84fa9a24436d3d1'/>
<id>urn:sha1:792548bce16d8c6647596d5da84fa9a24436d3d1</id>
<content type='text'>
define _GNU_SOURCES to fix compile issue:
 execinfo.c:76:5: error: unknown type name 'Dl_info'
|      Dl_info info;
|      ^~~~~~~
| execinfo.c:83:13: warning: implicit declaration of function 'dladdr' [-Wimplicit-function-declaration]
|          if (dladdr(buffer[i], &amp;info) != 0) {

Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>Revert "rrdtool: add gettext-native dependency"</title>
<updated>2017-07-17T18:17:47+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2017-06-05T09:13:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=e55a2fe7b9ab85f9cb3df0fe6de4fae64e7d527d'/>
<id>urn:sha1:e55a2fe7b9ab85f9cb3df0fe6de4fae64e7d527d</id>
<content type='text'>
This reverts commit e1b1f8cf320004e3b917ae78e26271352f468051.

Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>rrdtool: add gettext-native dependency</title>
<updated>2017-07-17T18:17:47+00:00</updated>
<author>
<name>Randy MacLeod</name>
<email>randy.macleod@windriver.com</email>
</author>
<published>2017-05-17T18:15:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=ad5d9d60426516ccb8cafcab163bfa5047f2b9d3'/>
<id>urn:sha1:ad5d9d60426516ccb8cafcab163bfa5047f2b9d3</id>
<content type='text'>
Add gettext-native dependency to use autopoint.

When building rrdtool for a 'tiny' distro, ie one that does
not have internationalization support in glibc, configure
fails with the error:
   autoreconf: failed to run autopoint: No such file or directory
autopoint is part of gettext so add that native dependency.
This must happen transitively for builds using a regular configuration
of glibc.

Signed-off-by: Randy MacLeod &lt;Randy.MacLeod@windriver.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>mozjs: prevent target CFLAGS etc being passed to the host</title>
<updated>2017-04-26T18:14:16+00:00</updated>
<author>
<name>Andre McCurdy</name>
<email>armccurdy@gmail.com</email>
</author>
<published>2017-04-24T21:41:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=a0b2e6f4fca7ac907eb7d6e06ca4c1581a5c553f'/>
<id>urn:sha1:a0b2e6f4fca7ac907eb7d6e06ca4c1581a5c553f</id>
<content type='text'>
Signed-off-by: Andre McCurdy &lt;armccurdy@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>mozjs: Fix build with gcc7</title>
<updated>2017-04-26T18:14:15+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-04-24T19:23:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=c9f063c218181e4eac3a0a67d74ce91b898a6443'/>
<id>urn:sha1:c9f063c218181e4eac3a0a67d74ce91b898a6443</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>efibootmgr: Fix build with gcc 7</title>
<updated>2017-04-26T18:14:15+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-04-24T18:44:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=db1ceb94283fcc15d4c0ae812f85b9212cec1ba9'/>
<id>urn:sha1:db1ceb94283fcc15d4c0ae812f85b9212cec1ba9</id>
<content type='text'>
backport patch to remove double const in decls

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
</feed>
