<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/package/multimedia/alsa-utils, branch 2010.11_rc1</title>
<subtitle>Buildroot: Making Embedded Linux easy
</subtitle>
<id>https://git.hiegel.fr/cgit/buildroot.git/atom?h=2010.11_rc1</id>
<link rel='self' href='https://git.hiegel.fr/cgit/buildroot.git/atom?h=2010.11_rc1'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/'/>
<updated>2010-07-07T06:20:21Z</updated>
<entry>
<title>Update all packages to quote $(TARGET_CC)</title>
<updated>2010-07-07T06:20:21Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-07-06T07:27:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=a1c8fa41f6f6e5047182fe90656bcd30243bca8d'/>
<id>urn:sha1:a1c8fa41f6f6e5047182fe90656bcd30243bca8d</id>
<content type='text'>
Now that TARGET_CC contains several space-separated words, it must be
used quoted everywhere.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>alsa-utils: alsamixer needs WCHAR</title>
<updated>2010-04-26T21:01:14Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-04-26T21:01:14Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=671ec3917b7b8d9e6a22c1f881ff46808e3d8806'/>
<id>urn:sha1:671ec3917b7b8d9e6a22c1f881ff46808e3d8806</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>alsa-utils: fix usr/share/alsa installation to target</title>
<updated>2010-04-26T20:58:25Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-04-26T20:58:25Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=5ad2672470109ddea4c467a67b0ddae6471e6f9c'/>
<id>urn:sha1:5ad2672470109ddea4c467a67b0ddae6471e6f9c</id>
<content type='text'>
Closes #1573

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Merge branch 'misc-fixes3' of git://git.busybox.net/~tpetazzoni/git/buildroot</title>
<updated>2010-02-18T21:02:03Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-02-18T21:02:03Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=ac8329cff0a969bec23be7871bfaf394e369be7c'/>
<id>urn:sha1:ac8329cff0a969bec23be7871bfaf394e369be7c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>alsa-utils: force the variant of ncurses library</title>
<updated>2010-02-18T18:08:41Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-02-18T18:08:41Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=1072cf190cb9ce2a0cd7269065bcc07922211998'/>
<id>urn:sha1:1072cf190cb9ce2a0cd7269065bcc07922211998</id>
<content type='text'>
Two variants of the ncurses library exist: the normal one, and the
ncursesw one, which has support for wide char. Currently, Buildroot
only builds the normal variant (the second variant requires
--enable-widec while compiling ncurses).

Unfortunately, when libncursesw is installed on the host, the
configure script of alsa-utils finds /usr/bin/ncursesw5-config and
thinks that the target has this version. Unfortunately, as this is not
the case, it causes a configure failure when trying to link a sample
program against libpanelw (which is part of ncurses).

Therefore, we force the libncurses variant used by alsa-utils to the
normal variant.

Later on, if needed, support for the wide-char variant of the
libncurses library could be added.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>alsa-utils: alsamixer need libform, libmenu &amp; libpanel (from ncurses)</title>
<updated>2010-02-18T10:11:43Z</updated>
<author>
<name>Julien Boibessot</name>
<email>julien.boibessot@armadeus.com</email>
</author>
<published>2010-02-11T16:31:25Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=909fb5be4b69359f93fef419592dfcb5174480ed'/>
<id>urn:sha1:909fb5be4b69359f93fef419592dfcb5174480ed</id>
<content type='text'>
Without this patch alsamixer complains about missing libs and
ldd says:
        libform.so.5 =&gt; not found
        libmenu.so.5 =&gt; not found
        libpanel.so.5 =&gt; not found
        libncurses.so.5 =&gt; /usr/lib/libncurses.so.5 (0x4000e000)
        libasound.so.2 =&gt; /usr/lib/libasound.so.2 (0x40056000)
        ... &lt;cut&gt;

Signed-off-by: Julien Boibessot &lt;julien.boibessot@armadeus.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>PATCH: Add more config options to alsa, bump version</title>
<updated>2010-01-28T22:13:05Z</updated>
<author>
<name>William Wagner</name>
<email>will_wagner@carallon.com</email>
</author>
<published>2010-01-28T18:07:27Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=aea2ef9b9e639f75e6fd8b574f40e60221fa03a2'/>
<id>urn:sha1:aea2ef9b9e639f75e6fd8b574f40e60221fa03a2</id>
<content type='text'>
Signed-off-by: William Wagner &lt;will_wagner@carallon.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>buildroot: silence ./configure step when building with 'make -s'</title>
<updated>2009-10-01T19:24:42Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-10-01T19:24:42Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=3fdf0bffb87c81f6abf70e64e5b9239431d79ee2'/>
<id>urn:sha1:3fdf0bffb87c81f6abf70e64e5b9239431d79ee2</id>
<content type='text'>
We have been passing -q to ./configure when using 'make -s' for
packages using Makefile.autotools.in for some time. Do the same
for packages using autotools, but not using the
Makefile.autotools.in infrastructure, taking care to not do it
for packages with hand written configure scripts.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>package: Remove unnecessary dependencies on uclibc.</title>
<updated>2009-09-03T18:22:38Z</updated>
<author>
<name>Will Newton</name>
<email>will.newton@gmail.com</email>
</author>
<published>2009-09-02T15:02:02Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=422ce6536b6d45e4632d526ae04c6af0bd36e80a'/>
<id>urn:sha1:422ce6536b6d45e4632d526ae04c6af0bd36e80a</id>
<content type='text'>
A C library will have been built by the toolchain makefiles, so there is no
need for packages to explicitly depend on uclibc.

Signed-off-by: Will Newton &lt;will.newton@gmail.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>alsa-utils: fix build for x86 on x86-64</title>
<updated>2009-08-19T22:07:27Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2009-08-19T22:07:27Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=350b6c6e4b039ae0256e52cd06c6f6d769a1c2b1'/>
<id>urn:sha1:350b6c6e4b039ae0256e52cd06c6f6d769a1c2b1</id>
<content type='text'>
alsa-utils included two ugly patches for ARM and AVR32 to fix build
issues encountered with ncurses. In fact these build issues were
caused by the fact that alsa-utils was using ncurses5-config of the
host instead of the one installed in $(STAGING_DIR).

Therefore, these two patches are removed, and we instead pass
ac_cv_prog_ncurses5_config to the ./configure script.

This commit solves bug #569, reported by Simon Pasch, who also
contributed this fix.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
</feed>
