summaryrefslogtreecommitdiffstats
path: root/package/multimedia/alsa-utils
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'misc-fixes3' of git://git.busybox.net/~tpetazzoni/git/buildrootPeter Korsgaard2010-02-181-0/+1
|\
| * alsa-utils: force the variant of ncurses libraryThomas Petazzoni2010-02-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 <thomas.petazzoni@free-electrons.com>
* | alsa-utils: alsamixer need libform, libmenu & libpanel (from ncurses)Julien Boibessot2010-02-181-0/+3
|/ | | | | | | | | | | | | | Without this patch alsamixer complains about missing libs and ldd says: libform.so.5 => not found libmenu.so.5 => not found libpanel.so.5 => not found libncurses.so.5 => /usr/lib/libncurses.so.5 (0x4000e000) libasound.so.2 => /usr/lib/libasound.so.2 (0x40056000) ... <cut> Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* PATCH: Add more config options to alsa, bump versionWilliam Wagner2010-01-282-3/+10
| | | | | Signed-off-by: William Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard2009-10-011-1/+1
| | | | | | | | | | 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 <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | 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 <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-utils: fix build for x86 on x86-64Thomas Petazzoni2009-08-203-59/+1
| | | | | | | | | | | | | | | 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 <thomas.petazzoni@free-electrons.com>
* alsa-utils: the entire package needs largefile support, not just aplayPeter Korsgaard2009-03-041-4/+4
|
* alsa-utils: use conditional for utils selection menu itemsPeter Korsgaard2009-03-041-15/+4
|
* alsa-utils: aplay: use depends for toolchain options, not selectPeter Korsgaard2009-03-041-1/+4
|
* alsa-utils: select ncurses library dependencyPeter Korsgaard2009-02-191-5/+1
|
* Add workarounds for alsa-utilsUlf Samuelsson2009-01-223-1/+62
|
* Fix legacy strings for alsa-utils & remove man pagesUlf Samuelsson2009-01-162-0/+31
|
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/alsa-lib/alsa-lib.mkDaniel Laird2009-01-131-1/+1
| | | | | | | | | | | package/gettext/gettext.mk: Both of these components look for iconv when configuring so need to be dependent. Both of these packages can be built with libiconv support. If libiconv is enabled and these are built first then some configure variables get stored in the system cache and then libiconv is not used properly. If libiconv is selected by user make sure it is built before either of these packages are built. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* alsa-util: bump version to 1.0.18 and add patches for this versionHans-Christian Egtvedt2008-12-043-1/+25
| | | | | Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* alsa-utils: add dependency to libintl if libintl is enabledHans-Christian Egtvedt2008-12-041-1/+1
| | | | | Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* package/audio: rename audio category to multimediaPeter Korsgaard2008-11-152-0/+173
Prepare for the merge of audio and video packages. Many packages cannot properly be assigned to either audio or video, because they have support for both (libogg, mplayer, vlc). Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>