<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/package/multimedia/alsa-lib, 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-11-05T09:21:17Z</updated>
<entry>
<title>Remove support for shared configuration cache</title>
<updated>2010-11-05T09:21:17Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-11-04T19:31:25Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=5f71fc1f19c21676f029b63499e0341a89cf2049'/>
<id>urn:sha1:5f71fc1f19c21676f029b63499e0341a89cf2049</id>
<content type='text'>
The configuration cache shared between packages, while being in
principle a nice idea to speed-up the configuration of packages by
avoiding repetitive identical checks, turned out to be unreliable due
to the subtle differences between similar but not identical checks in
different packages. After spending some time trying to fix those, we
concluded that supporting the shared configuration cache is definitely
too hard and too unreliable, and that we'd better get rid of it
altogether.

This patch therefore removes the shared configuration cache
infrastructure and usage.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>alsa-lib: bump version</title>
<updated>2010-10-18T20:42:59Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-10-18T20:42:59Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=01d7afdc929256f14e3662294b2710c336ae5b5f'/>
<id>urn:sha1:01d7afdc929256f14e3662294b2710c336ae5b5f</id>
<content type='text'>
Fixes gst-plugins-base build issue.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>packages: remove unneeded _INSTALL_TARGET_OPT definitions</title>
<updated>2010-09-27T13:32:32Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-09-07T22:52:27Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=478ea1a12dffca0025c0ad55ad702cbaec465f93'/>
<id>urn:sha1:478ea1a12dffca0025c0ad55ad702cbaec465f93</id>
<content type='text'>
Now that &lt;pkg&gt;_INSTALL_TARGET_OPT always defaults to
'DESTDIR=$(TARGET_DIR) install', we can remove the
&lt;pkg&gt;_INSTALL_TARGET_OPT definition from a lot of packages.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>alsa-lib: use correct step override method</title>
<updated>2010-09-12T17:26:50Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-09-01T21:19:39Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=879465e040214d77238c7d42fcbad148a6580f8b'/>
<id>urn:sha1:879465e040214d77238c7d42fcbad148a6580f8b</id>
<content type='text'>
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>alsa-lib: make sure to only look in STAGING_DIR for Python includes</title>
<updated>2010-07-18T21:26:25Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-07-18T21:26:25Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=538773a66f2e71ac29cf799e3249737dd6903c8e'/>
<id>urn:sha1:538773a66f2e71ac29cf799e3249737dd6903c8e</id>
<content type='text'>
Even though we pass a -I option to tell alsa-lib to look for Python
includes in the STAGING_DIR, alsa-lib build process still looks in
/usr/include for some stuff, causing bug #321.

This fix is the one suggested by Ulf Samuelsson in bug #321, and
allows to make alsa-lib with Python support to build properly on a 64
bits machine with python-dev installed on the host. Without this fix,
the build fails with exactly the same problem that Ulf reported.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>Temporary fix for alsa-lib breakage with --disable-pcm</title>
<updated>2010-02-14T11:10:38Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-02-14T11:01:13Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=94e172c8e7660213d29cb37ff760f5abf8886c31'/>
<id>urn:sha1:94e172c8e7660213d29cb37ff760f5abf8886c31</id>
<content type='text'>
The current version of alsa-lib (1.0.22) does not build when
--disable-pcm is used at configure time. I've reported the issue at
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4913.

In the mean time, we can prevent the user from not selecting PCM
support by using the following patch.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&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>alsa-lib: fix build with BR2_CONFIG_CACHE</title>
<updated>2009-11-23T12:03:59Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-11-23T12:03:59Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=81e4ba320b982fa4c74d00a46ddb918fc492a1b3'/>
<id>urn:sha1:81e4ba320b982fa4c74d00a46ddb918fc492a1b3</id>
<content type='text'>
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-lib: don't force EABI for ARM</title>
<updated>2009-03-18T11:27:37Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-03-18T11:27:37Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=2f575f43ec33c5739bcc5c3113506e2a7cb0a3ad'/>
<id>urn:sha1:2f575f43ec33c5739bcc5c3113506e2a7cb0a3ad</id>
<content type='text'>
Closes #191.
</content>
</entry>
</feed>
