<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/package, branch 2011.11</title>
<subtitle>Buildroot: Making Embedded Linux easy
</subtitle>
<id>https://git.hiegel.fr/cgit/buildroot.git/atom?h=2011.11</id>
<link rel='self' href='https://git.hiegel.fr/cgit/buildroot.git/atom?h=2011.11'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/'/>
<updated>2011-11-27T21:16:40Z</updated>
<entry>
<title>ruby: really disable ncurses/readline for host</title>
<updated>2011-11-27T21:16:40Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-11-27T21:16:40Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=e4c61e5ea4b09bf112c94b86cde78784476c4014'/>
<id>urn:sha1:e4c61e5ea4b09bf112c94b86cde78784476c4014</id>
<content type='text'>
Commit 150124b (ruby: fix host build breakage) tried to fix host-ruby
build failures by disabling ncurses/readline extensions, but the
ruby configure script doesn't understand --without-ncurses /
--without-readline arguments, so the commit didn't do anything.

Fix it by really disabling them using the --with-out-ext argument.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>ruby: fix host build breakage</title>
<updated>2011-11-26T13:30:15Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-11-25T11:35:12Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=150124b9525c5db8f1f70e092ac6b00a7fb7e898'/>
<id>urn:sha1:150124b9525c5db8f1f70e092ac6b00a7fb7e898</id>
<content type='text'>
When building host-ruby with ncurses enabled on an x86_64 host we get a
"relocation R_X86_64_32 against `_nc_globals' can not be used when making
a shared object; recompile with -fPIC" error when building.
Just disable ncurses and readline support for the host version - we
don't need it.

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>ruby: fix build breakage</title>
<updated>2011-11-26T13:30:11Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-11-25T11:35:11Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=fc11bb0ab4db4c44f50b8985b5d1a6f7ca7f5b84'/>
<id>urn:sha1:fc11bb0ab4db4c44f50b8985b5d1a6f7ca7f5b84</id>
<content type='text'>
Fix build breakage regarding invalid file format of
/usr/lib/libpthread.so
This is because ruby has rpath enabled by default and was throwing in
the runtime paths and pulling in host libraries into the mix.
So disable rpath.

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>php: fix build breakage</title>
<updated>2011-11-26T12:55:11Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-11-25T15:49:04Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=30ed378a978e322e5b0243409c84b550f945f13a'/>
<id>urn:sha1:30ed378a978e322e5b0243409c84b550f945f13a</id>
<content type='text'>
The zip extension requires zlib, so select it.

[Peter: Only select zlib, not php zlib extension]
Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>thttpd: fix build breakage with eglibc/glibc</title>
<updated>2011-11-26T12:07:14Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-11-25T14:48:30Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=7948b0c621adab123f7585a32c0cf6810f83ca91'/>
<id>urn:sha1:7948b0c621adab123f7585a32c0cf6810f83ca91</id>
<content type='text'>
Fix getline() function conflict with glibc/eglibc by renaming it.

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>lsof: fix permission of extracted files</title>
<updated>2011-11-24T22:07:09Z</updated>
<author>
<name>Damian Kaczmarek</name>
<email>damian@veritymedical.co.uk</email>
</author>
<published>2011-10-20T22:05:23Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=9f930d2d7f6ca80d9ccc9a38e631704c1b931f43'/>
<id>urn:sha1:9f930d2d7f6ca80d9ccc9a38e631704c1b931f43</id>
<content type='text'>
Closes #4369

Default tar permissiong make it impossible to apply patches to some of
the files.

Change extraction command to skip permissions by using "-O" tar option
and a pipe tar chain.

Solution suggested by: Arnout Vandecappelle &lt;arnout@mind.be&gt;

[Peter: rework to use define as suggested by Thomas]
Signed-off-by: Damian Kaczmarek &lt;damian@veritymedical.co.uk&gt;
Tested-by: "Yann E. MORIN" &lt;yann.morin.1998@anciens.enib.fr&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>busybox: remove old unused quirk handling</title>
<updated>2011-11-23T22:36:32Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-11-23T22:36:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=468f1cac8a2dad537bea6cbdabbf34031ceaae42'/>
<id>urn:sha1:468f1cac8a2dad537bea6cbdabbf34031ceaae42</id>
<content type='text'>
The definition of these variables were removed back in June
(7d814728 / f1e4aac4).

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>rsyslog: only install S01rsyslog if not present in fs skeleton</title>
<updated>2011-11-23T22:28:30Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-11-23T22:28:30Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=1fccc2031412d1025deda5f44c8b0a42c045f929'/>
<id>urn:sha1:1fccc2031412d1025deda5f44c8b0a42c045f929</id>
<content type='text'>
To allow custom configurations.

Reported-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>freetype: security bump to version 2.4.8</title>
<updated>2011-11-22T09:15:09Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2011-11-22T01:59:21Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=f4642c8bae842243f5a98d1d8028ce08d1962612'/>
<id>urn:sha1:f4642c8bae842243f5a98d1d8028ce08d1962612</id>
<content type='text'>
Bump freetype to version 2.4.8 to fix CVE-2011-3439.

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>toolchain/crosstool-NG: update to 1.13.2</title>
<updated>2011-11-20T20:54:45Z</updated>
<author>
<name>Yann E. MORIN</name>
<email>yann.morin.1998@anciens.enib.fr</email>
</author>
<published>2011-11-20T20:51:17Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=32bea4a1cf9968a4e46a6ecd7fd878e6f0159511'/>
<id>urn:sha1:32bea4a1cf9968a4e46a6ecd7fd878e6f0159511</id>
<content type='text'>
crosstool-NG 1.13.2 contains an important fix related to building
the ncurses libraries: the latest ncurses version requires tic to
be either in ${TIC_PATH}, or to be exactly /usr/bin/tic.

Also contains a few minor fixes:
 - CLooG extraction
 - prescott is a i686

Signed-off-by: "Yann E. MORIN" &lt;yann.morin.1998@anciens.enib.fr&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
</feed>
