summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* flex: propagate m4 dependency on wcharThomas Petazzoni2013-05-281-0/+4
| | | | | | | | | | | | | | Commit fe6a9e5e9d4046173a60235f8fd9a3b4746929c6 missed the fact that m4 has a dependency on wide char support, so this dependency should be propagated to flex. Fixes: http://autobuild.buildroot.org/results/495/49502b2e33a346b2fcebf5e2da00af2661b54d6e/build-end.log [Peter: Note where wchar dep comes from, show comment if not available] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libv4l: needs thread supportThomas Petazzoni2013-05-282-4/+6
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/c74/c741ca445a63ce9ab8b0e5b87f3126d7b6051009/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* acpid: fix obvious syntax error in addprefix callThomas Petazzoni2013-05-281-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvstreams: need largefile supportThomas Petazzoni2013-05-282-2/+7
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/bc4/bc4c617a5d7740b6eedcfc0dd24aeed5bc888f6d/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "sqlite: bump to version 3.7.17"Peter Korsgaard2013-05-282-25/+2
| | | | | | This reverts commit ddddef3e6e52b4205306190e4a3830fad06d23aa. This was supposed to have been for next, not 2013.05.
* Revert "mpg123: bump to version 1.15.4"Peter Korsgaard2013-05-281-1/+1
| | | | | | This reverts commit 609aa4156aa6fbda182856d3dab7df752c54eb78. This was supposed to have been for next, not 2013.05.
* Revert "gmp: bump to version 5.1.2"Peter Korsgaard2013-05-281-1/+1
| | | | | | This reverts commit 78927d3f92f0a397e9551dee491e26602e63a30a. This was supposed to have been for next, not 2013.05.
* lttng-babeltrace: fix build failure on gcc14Thomas Petazzoni2013-05-283-0/+31
| | | | | | | | | | | | | | The gcc14 machine has a moderately old host gcc, which was causing a recurrent build failure of host-lttng-babeltrace: http://autobuild.buildroot.org/results/492/49216052c161874f41738e41e6e0c89a6dd04000/build-end.log This commit adds a patch to fix this build failure, related to the access of the ULLONG_MAX define on compilers that did not default to the C99 variant of the C language. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sqlite: bump to version 3.7.17Gustavo Zacarias2013-05-282-2/+25
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mpg123: bump to version 1.15.4Gustavo Zacarias2013-05-281-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gmp: bump to version 5.1.2Gustavo Zacarias2013-05-281-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jamvm: Not available for all architecturesMarkos Chandras2013-05-281-0/+2
| | | | | | | jamvm supports arm, armeb, powerpc, i386, x86_64 and mipsel. Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* flex: fix autobuilder failuresThomas Petazzoni2013-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since fe6a9e5e9d (flex: needs M4 at runtime), the autobuilders have been producing a number of flex related build failures. They have been hard to track down, because even on the same machine, with the same Git commit ID and the same configuration, the failure could not be reproduced. However, a close inspection of flex's config.log file allowed to find out what the problem was. In its configure script, flex uses the host-flex to generate a minimal example, and find out the name of the output file of flex. When the M4 environment is passed when building the target flex, it also affects the *execution* of the host-flex, which tries to use /usr/bin/m4 (which doesn't exist in the autobuilder machines) instead of the one built in $(HOST_DIR)/usr/bin/m4. So generating the minimal example fails. And this is where what I could reproduce and what the autobuilders script produce differ: in my case, even though host-flex fails to run, it creates an empty lex.yy.c, which is enough to make the configure script happy. In the context of the autobuild scripts, this file is apparently not created at all, for an unknown reason, and this leads to the configure script to abort. The fix is to set ac_cv_path_M4. This will affect the default m4 used by the target flex, but it will not affect the m4 used by the host-flex. It allows the test made during the configure script to work properly, and therefore should fix the issue seen in the autobuilders. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* flex: needs M4 at runtimeThomas Petazzoni2013-05-272-0/+3
| | | | | | | | | | | | For proper runtime execution, flex requires m4 to be installed. Passing a M4 variable at configure time is needed, otherwise flex on the target will try to use a 'm4' binary with a build machine path. Fixes bug #4988. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* udpcast: needs threads support in toolchainPeter Korsgaard2013-05-261-2/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wireshark: security bump to version 1.8.7Gustavo Zacarias2013-05-253-42/+2
| | | | | | | | | Fixes CVE-2013-2486, CVE-2013-2487 and several wnpa-sec (wireshark) advisories. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* urg: Add urg-select-h.patch.Will Newton2013-05-251-0/+11
| | | | | | | | This patch fixes a build failure on AArch64 (and potentially others). Make sure sys/select.h is included before using select(2). Signed-off-by: Will Newton <will.newton@linaro.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pptp-linux: add license informationgilles.talis@gmail.com2013-05-251-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pptp-linux: needs MMUgilles.talis@gmail.com2013-05-251-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/9b8/9b80537d0efb3fefab486abaecd128bd18e0efdb Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* weston: Add make dependency on cairoWill Newton2013-05-251-1/+2
| | | | | | | | There's already a config dependency, make sure we build it too. Signed-off-by: Will Newton <will.newton@linaro.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* poco: not available for all architecturesGustavo Zacarias2013-05-231-0/+2
| | | | | | | | | | | | | | | | Missing defines for: aarch64, arc, blackfin, microblaze & xtensa. Not properly supported: mips - only defines generic mips as BE, doesn't know about mipsel (LE) thus assuming it's BE. Fixes: http://autobuild.buildroot.net/results/9847702b046bed59b07f0e075a58b1f31e9236ce/ This should be pretty straightforward to fix in Foundation/include/Poco/Platform.h for interested parties since it only cares about endianness. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: Limit architectures which can build boost context libraryWill Newton2013-05-231-0/+2
| | | | | | | | The boost context library needs porting to each new architecture and only a limited number of ports are currently available. Signed-off-by: Will Newton <will.newton@linaro.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libatomic_ops: fix build failure seen with toolchain without threads supportgilles.talis@gmail.com2013-05-231-0/+41
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/58c188ad59c62c7897381e110fe3518ccc17867e Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* portaudio: needs threadsgilles.talis@gmail.com2013-05-231-0/+4
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/ba2/ba2d3832cb6838b2126e0f7db223305eab579d59 [Peter: move above so sub options gets properly indented] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tvheadend: needs threadsgilles.talis@gmail.com2013-05-231-2/+3
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dvb-apps utilities: needs threadsgilles.talis@gmail.com2013-05-231-2/+3
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/b62/b62289809221b6455fe3db501e869271a64ea454 Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mongrel2: works on ARM with uClibcPeter Korsgaard2013-05-231-2/+3
| | | | | | | Source code has workaround for missing {get,make,swap}context on ARM, so mongrel2 doesn't need glibc/uclibc snapshot when built for ARM. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mongrel2: Needs a {e, }glibc or a uClibc-0.9.34-git based toolchainMarkos Chandras2013-05-231-0/+6
| | | | | | | | | | | | mongrel2 needs the {get,make,swap}context functions which are present in {e,}glibc and in the uClibc's master branch. Fixes: http://autobuild.buildroot.net/results/8e132a2b03a7b5ae94199db7db86883c05dca700/build-end.log Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* portaudio: add license informationgilles.talis@gmail.com2013-05-231-0/+2
| | | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bellagio: add license informationgilles.talis@gmail.com2013-05-171-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bellagio: needs toolchain with threads supportgilles.talis@gmail.com2013-05-171-2/+3
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/a4b/a4b7e19f4eee1de8d8722c2ade673fcb816a811e Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxml2: depend on zlib and libiconv if appropriateSimon Dawson2013-05-171-0/+15
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* flot: add plugins missed from 0.8.0 bumpPeter Korsgaard2013-05-172-0/+31
| | | | | | A number of plugins were not added when the flot version was bumped. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* crda: needs threadsGustavo Zacarias2013-05-161-0/+4
| | | | | | | | Because libnl needs threads, fixes: http://autobuild.buildroot.net/results/8e32f222ddeba262ee2471d22e1c6a8afbf241c2/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libeXosip2: disable multi-thread support for toolchains without threadsgilles.talis@gmail.com2013-05-161-0/+5
| | | | | | | Also added license information Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libosip2: disable multi-thread support for toolchains without threadsgilles.talis@gmail.com2013-05-161-0/+5
| | | | | | | | | | | Also added license information Fixes: http://autobuild.buildroot.org/results/dcf/dcfbdc1a1ee032881ad5e2f7ca6622d90fc7cb19 [Peter: License is LGPLv2.1+ Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* aircrack-ng: don't drop TARGET_LDFLAGSPeter Korsgaard2013-05-161-1/+1
| | | | | Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xinit: revert removalGustavo Zacarias2013-05-153-0/+23
| | | | | | | | | Even though xinit isn't included in the X11R7.7 release it is very useful for debugging and quick tests. Reinstante it without xdm requiring it though. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libglib2: fix build when toolchain has no thread supportSamuel Martin2013-05-152-0/+31
| | | | | | | | Fixes the build failure visible at http://autobuild.buildroot.net/results/3d3/3d3f4f0044a4b58ce3d0a3449a5f012d953d59bb Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* aircrack-ng: fix statically linked buildSamuel Martin2013-05-151-1/+4
| | | | | | | | Fixe the build failure visible at http://autobuild.buildroot.net/results/2441d8b62323a00f32f2edb7cb781dda71ff7f68 Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cairo: fix build when toolchain has no thread supportSamuel Martin2013-05-141-0/+4
| | | | | | | | Fixes the build failure visible at http://autobuild.buildroot.net/results/d49/d491de5a774592929a59f3bfd0b1fd8cbc089ac0 Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox 1.21.0: update mdev patch and add ntfs volume patchGustavo Zacarias2013-05-142-30/+99
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* neon: fix license filesPeter Korsgaard2013-05-141-1/+1
| | | | | | GPL license is under test/, not src/. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* legal-info: fail trying to copy a non-existent license fileLuca Ceresoli2013-05-141-3/+1
| | | | | | | | | | | | | If a package's _LICENSE_FILES contains the name of a non-existent file, the make process would continue and return true, unless the non-existent file is the last listed. Fix this wrong beaviour by failing with an error when any of the listed files is missing. Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sconeserver: fix autobuild failuresSimon Dawson2013-05-141-12/+11
| | | | | | | | | | | | | Fix sconeserver autobuild failures such as the following. http://autobuild.buildroot.net/results/58e/58e4886a6ff41e49ac86cbf497bb509fd37f0d68/ The sconeserver version is bumped to a recent revision in which it is possible to pass the paths to Magick++-config, mysql_config and xml2-config to the configure script. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* fan-ctrl: needs MMU supportPeter Korsgaard2013-05-141-0/+1
| | | | | | Fixes http://autobuild.buildroot.org/results/333/333b6caa6b8a9a04495d82d02b2c0fb7755667ed/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sylpheed: disable gpgme supportGustavo Zacarias2013-05-131-3/+2
| | | | | | | Fixes a build failure when the build host has gpgme installed. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* curlftpfs: specify curl-config pathGustavo Zacarias2013-05-131-0/+1
| | | | | | | | | curlftpfs may pick up the distribution curl-config rather than the one in the staging area thus failing to build. Fix it by hardcoding the curl-config path. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* quota: fix dependenciesGustavo Zacarias2013-05-131-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linknx: fix dependenciesGustavo Zacarias2013-05-131-1/+1
| | | | | | | The mysql_client is set instead of added, thus eliminating libpthsem. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>