summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* package/gcc: backport PR56780 patchesRomain Naour2015-05-111-0/+244
| | | | | | | | | | | | | | | | | --disable-install-libiberty configure option is broken in gcc 4.8.x, so libiberty.a is always installed in HOST_DIR. This library broke the host-gdb build due to a fpic/fPIC issue. Fixes: http://autobuild.buildroot.net/results/28f/28f3074e99a35f4321dad2fa6c5abdad14d2d2c6/ And many more. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* binutils: fix xtensa gas trampolines regressionMax Filippov2015-05-102-18/+16
| | | | | | | | | | | | | | | | | | | | | | | xtensa trampolines relaxation optimization caused the following build errors: Error: operand 1 of 'j' has out of range value '131643' Error: operand 1 of 'j' has out of range value '4294836162' Error: operand 1 of 'j' has out of range value '4294836072' Extra condition 'abs (addr - trampaddr) < J_RANGE / 2' for trampoline selection results in regressions: when relaxable jump is little longer than J_RANGE so that single trampoline makes two new jumps, one longer than J_RANGE / 2 and one shorter, correct trampoline cannot be found. Drop that condition. Upstream status: patch submitted. Fix squashed into the optimization patch. Fixes: http://autobuild.buildroot.net/results/5ba7d18262ce6a2dfd69db07d064a971267f1128/ Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Makefile: Handle whitespace when stripping .koerico.nunes2015-05-101-2/+2
| | | | | | | | | | | | | | | | | It is possible to end up with a path containing spaces if the kernel localversion contains spaces. Be it good practice or not, there are third party vendors which distribute kernel configuration files for reference platforms which have quoted strings containing whitespaces in the localversion. There was already a fix to handle paths with whitespaces or other special characters when running strip, which consists of using the find -print0 and xargs -0 pair of arguments, but the kernel module stripping wasn't included in the fix. This commit includes the same fix to the kernel module stripping line. Signed-off-by: Erico Nunes <erico.nunes@datacom.ind.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xlib_libXfont: work around missing __ELF__ symbol on microblazePeter Korsgaard2015-05-101-0/+10
| | | | | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/688/688a839ec57e7bc83b490535871b2dac0b1309ff/ http://autobuild.buildroot.net/results/75c/75c676b1baed6f39657578caf7fc213ce71c1089/ http://autobuild.buildroot.net/results/2b9/2b9e9ebaaabe4880e7d258d88f12ce90738ca779/ http://autobuild.buildroot.net/results/988/988022e559af81d9b7dfc716dfb84bd0fa3698f2/ And many more. The microblaze toolchains don't define the __ELF__ preprocessor symbol even though they do use the elf format. LibXfont checks for this symbol to know if weak symbols are supported, and otherwise falls back to emulation code using dlopen - Causing linker issues for stuff using libXfont. Work around it by defining the symbol here as well. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: security bump to 3.8.10Peter Korsgaard2015-05-082-2/+2
| | | | | | | | | Fixes: CVE-2015-3414, CVE-2015-3415 and CVE-2015-3416. For details, see the Debian advisory: https://www.debian.org/security/2015/dsa-3252 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* fix typo in package install suggestion for dependenciesGergely Imreh2015-05-081-1/+1
| | | | | Signed-off-by: Gergely Imreh <imrehg@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* guile: add patch borrowed from Yocto to fix compiler errorThomas Petazzoni2015-05-071-0/+64
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/85b/85bd849e17c6e5ed6b5b56a4d4ad1a73f7de99c2/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/efl/expedite: x-includes and x-libraries must be set for cross-compilingRomain Naour2015-05-071-0/+6
| | | | | | | | | | | | | | | If those flags are not explicitly passed, the libecore configure script will include -I/usr/X11R6/include and -L/usr/X11R6/lib in the compile flags, which are obviously unsafe for cross-compilation. The fix is similar to 0d9d8984a9240a27f5ed2e15f1977ada67266906 and da50b6b61c4a566fd28888f5a3a6dcb06fe1b495. Fixes: http://autobuild.buildroot.org/results/24b/24b578a28455409b7bcc0277abc6b478c51ae67f Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* valgrind: Backport patch to fix build on 4.0 host kernelsChristian Artin2015-05-071-0/+48
| | | | | | | | | | | Valgrind fails to build when the host kernel is >=4.0. This patch backports the commit from upstream that fixes the kernel version verification. This verification is pointless for buildroot anyway, but it fixes the building process. [Peter: rename patch to 0002-* and add SoB, slightly reword commit msg] Signed-off-by: Christian Artin <christian@gridshowsystems.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cc-tool: fix static build problem with boost regexThomas Petazzoni2015-05-071-0/+6
| | | | | | | | | | | | The boost.m4 logic is a bit crappy, and needs some help to know that boost_regex needs the pthread library. Fixes: http://autobuild.buildroot.org/results/69a/69aff0b9d0ac8fe08e1d2f7ffb691f6a8fc8693b/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cryptsetup: disable on broken NIOS 2 toolchainsThomas Petazzoni2015-05-071-0/+5
| | | | | | | | | | | | This package triggers the infamous _gp issue with the external NIOS 2 toolchains, so let's disable it. Fixes: http://autobuild.buildroot.org/results/ff4/ff456344eb5bc8af619c1f5d88be0cb758dd5075/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iproute2: fix static buildBaruch Siach2015-05-071-1/+2
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/a10/a107ac3252ad48732069ec0de6ff8692b32c6a71/ http://autobuild.buildroot.net/results/e27/e2785a35bc6bc63d5da77e406e589889e7d39055/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* expedite: fix dependencies comment logicBaruch Siach2015-05-071-2/+1
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ola: depend on python for bindings instead of selecting itPeter Korsgaard2015-05-061-4/+2
| | | | | | | | | | Most likely people have already enabled python if they want to use the bindings for ola, so use depends on instead of select so we don't need to propagate the dependencies here. Python already depends on mmu, so drop that here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dstat: propagate python !static dependencyPeter Korsgaard2015-05-061-2/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* giflib: remove from the description the reference to libungifFabio Porcedda2015-05-061-3/+1
| | | | | | | | | | | | | Starting from version 5.0 giflib it's no longer compatible with libungif, also the libungif is now deprecated so just remove the reference to libungif. Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Baruch Siach <baruch@tkos.co.il> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/postgresql: fix pthread flags detectionMax Filippov2015-05-062-0/+57
| | | | | | | | | | | | | | | | | | | PostgreSQL configure may not correctly determine flags for compiling and linking with pthreads support when compiler or linker give irrelevant warnings. Record default compiler and linker output and see if adding pthread option changes that, instead of assuming that linker and compiler are silent by default. Fixes: http://autobuild.buildroot.net/results/916487aae929c181d4e3f471c6c7508552f0b683/ http://autobuild.buildroot.net/results/921a94d1a489d81b362c5b6a403a156b4691effd/ http://autobuild.buildroot.net/results/dbcdc58ad32b7b811ea47b6fc0f926a477e30786/ http://autobuild.buildroot.net/results/68b582f4caec223a646f095487263353f273156d/ Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/poppler: autoconf options take two dashesYann E. MORIN2015-05-061-2/+2
| | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pyqt: fix opengl build failureGwenhael Goavec-Merou2015-05-061-0/+6
| | | | | | | | | | | | | Fix: http://autobuild.buildroot.net/results/206/2062208c171207428c9121215971e00c52bf306a/ According to configure-ng.py, PyQt_NoOpenGLES must be added to qtdetail when QT_OPENGL_ES is set. [Thomas: add comment to explain the double negation.] Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt: fix missing targetGwenhael Goavec-Merou2015-05-061-0/+2
| | | | | | | | | | | | Fix : http://autobuild.buildroot.net/results/093/09302c153418c3af6dc4cdd12a0149505cfbca0b/ http://autobuild.buildroot.net/results/96f/96f8a9758f0116aec999028fde1b9c983c143809/ sh target must be provided instead of generic to have the correct QT_NO_FPU behaviour. Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/autoconf-archive: fix ax_tls syntax errorRomain Naour2015-05-051-0/+46
| | | | | | | | | | | | The ax_tls.m4 serial 11 procude a syntax error in configure scripts. Fixes: http://autobuild.buildroot.net/results/619/619339810617212a667fe72278ec727ee992ffbf/ Signed-off-by: Romain Naour <romain.naour@openwide.fr> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docs/manual: add list of instrumentation stepsYann E. MORIN2015-05-051-3/+14
| | | | | | | | | | | The names of steps are not obvious, so add this list to the manual. Small formatting fix at the same time. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain/external: better report RPC error for custom toolchainsYann E. MORIN2015-05-051-2/+2
| | | | | | | | | | | | | | | | | | Currently, we instruct users to enable/disable BR2_TOOLCHAIN_HAS_NATIVE_RPC but that is a blind option. The only option users can set/unset is BR2_TOOLCHAIN_EXTERNAL_INET_RPC. Use that in the error message. Notes: the only way for this message to appear is for a custom external toolchain, either downloaded or pre-installed, so even though we check the validity of the toolchain with BR2_TOOLCHAIN_HAS_NATIVE_RPC, we do report on BR2_TOOLCHAIN_EXTERNAL_INET_RPC. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* binutils: backport xtensa trampolines relaxation optimizationMax Filippov2015-05-052-0/+692
| | | | | | | | This optimization alone reduces gnuradio build time for xtensa from 2 hours to 40 minutes. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* arch/Config.in.xtensa: provide BR2_ENDIAN symbolMax Filippov2015-05-051-0/+17
| | | | | | | | | | | | | | Packages get hints from the buildroot at configure time, e.g. ac_cv_c_bigendian=yes/no. This particular hint is based on the value of BR2_ENDIAN and when it doesn't match actual toolchain endiannes the build may break. Provide BR2_ENDIAN for xtensa to fix this sort of build errors. Fixes: http://autobuild.buildroot.net/results/31115fe8d88f52d77ed0f2da769eb8896a1b34a2/ Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* freerdp: fix build with uClibcBaruch Siach2015-05-051-0/+95
| | | | | | | | | | | | | Add upstream patch disabling use of C99 long double math functions (powl, ceill, ...) that uClibc(-ng) don't have. Fixes: http://autobuild.buildroot.net/results/bda/bda53fffd4a0937fd4b2313cdf2d12ced95cc7a7/ http://autobuild.buildroot.net/results/d96/d9613c9f791157e1de3a34923f1c91b35cec693f/ http://autobuild.buildroot.net/results/bfd/bfd4ef86b257ee918e3c4463ebc5cf77694244a0/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/at: fix glibcismYann E. MORIN2015-05-051-0/+59
| | | | | | | | | | | | | | | | | | | | at needs __isleap() which is in (e)glibc and uClibc, but not in musl. Add a patch (from Open Embedded) that removes use of the macros, and directly expands the corresponding code in lieu of the macro calls. Fixes: http://autobuild.buildroot.org/results/6f2/6f25e80e8aedec91323ef9b67576b550d7abee60/ http://autobuild.buildroot.org/results/da5/da5bb779f3077b079203fcbdb2533dd790963cd4/ http://autobuild.buildroot.org/results/8a6/8a6ce608c6f46d08ed77049f796e98e6e10a1709/ ... Thanks to Jörg for pointing to the OE patch! :-) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Jörg Krause <joerg.krause@embedded.rocks> Tested-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipmiutil: force md2 offGustavo Zacarias2015-05-051-1/+3
| | | | | | | | | | | | | | The configure test runs against LIB_DIR (which is --libdir in configure parlay) hence it's against the distro openssl version. On newish openssl versions md2 is disabled by default, and buildroot doesn't try to enable it (it's obsolete), but if the distro libcrypto/openssl has it enabled then ipmiutil tries to use it. Force it off to avoid build breakage. Fixes: http://autobuild.buildroot.net/results/cd2/cd2e617f8e2b00581ab5936029f85e62ed3259ba/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/neard: needs shared libsYann E. MORIN2015-05-051-2/+3
| | | | | | | | | | | neard uses dlopen(), so needs shared libs. Fixes: http://autobuild.buildroot.org/results/0a4/0a466cde55c5e128a2e201924f80f0ec6b8b5c2a/ Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* website/sponsors: fix typoYann E. MORIN2015-05-051-1/+1
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Revert "qt: add QT_COORD_TYPE to double option"Peter Korsgaard2015-05-052-15/+0
| | | | | | | | | | This reverts commit 7619aba496208102e098e24454371b9513ec2f90. This change causes a number of build issues with poppler / pinentry / python-pyqt and Qt itself on various architectures, so lets revert it for now and rework it for the 2015.08 cycle. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Revert "qt: QT_COORD_TYPE_DOUBLE should only be set on soft float"Peter Korsgaard2015-05-051-1/+0
| | | | | | This reverts commit e07ec136ee3dd4bf16b18571623ac57f99136faa. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/website/news.html: add 2015.05-rc1 announcement linkPeter Korsgaard2015-05-041-1/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Update for 2015.05-rc1Peter Korsgaard2015-05-044-9/+22
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wpa_supplicant: apply upstream security patchesBaruch Siach2015-05-043-0/+246
| | | | | | | | | | | | This commit adds patches for three different upstream security advisories. No CVE numbers stated. http://w1.fi/security/2015-2/wps-upnp-http-chunked-transfer-encoding.txt http://w1.fi/security/2015-3/integer-underflow-in-ap-mode-wmm-action-frame.txt http://w1.fi/security/2015-4/eap-pwd-missing-payload-length-validation.txt Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* hostapd: apply upstream security patchesBaruch Siach2015-05-043-0/+246
| | | | | | | | | | | | This commit adds patches for three different upstream security advisories. No CVE numbers stated. http://w1.fi/security/2015-2/wps-upnp-http-chunked-transfer-encoding.txt http://w1.fi/security/2015-3/integer-underflow-in-ap-mode-wmm-action-frame.txt http://w1.fi/security/2015-4/eap-pwd-missing-payload-length-validation.txt Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: document external-deps / legal-info / source / source-checks changesPeter Korsgaard2015-05-041-3/+8
| | | | | | And fixup indentation for version/patch dependencies section. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sane-backends: unbreak on toolchains without threads supportPeter Korsgaard2015-05-041-0/+3
| | | | | | | Fixes: http://autobuild.buildroot.net/results/f2a/f2a43b62aa2a720c538fc60c80c78c8ed5b04dea/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vlc: ensure correct directfb-config is usedPeter Korsgaard2015-05-041-0/+1
| | | | | | | | | | Otherwise we can end up using host includes/libraries if the build host has directfb-config. Fixes: http://autobuild.buildroot.net/results/361/3612b54b0bbc2a55ba6f0febb7be32595b523d96/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain-external: mark musl based toolchains as experimentalPeter Korsgaard2015-05-041-2/+2
| | | | | | | Like we do for the internal musl backend. We still see a large number of build failures with musl, so warn users about it. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* manual: Add notes about GitHub and hashesMaxime Hadjinlian2015-05-041-0/+7
| | | | | | | | | | | | | | We can't take hashes from GitHub, unless the tarball has been uploaded by the maintainer, otherwise it is generated and may change over time, which renders hash files useless. [Peter: slightly reword] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual: also document md5 hashYann E. MORIN2015-05-041-11/+18
| | | | | | | | | | | We accept an md5 hash, but only if coming from upstream, and if also accompanied with a stronger hash. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* autotools-package: also handle pre-installed external toolchain in .la fixupArnout Vandecappelle2015-05-041-4/+11
| | | | | | | | | | | | | | | | | | | | | The .la fixup handling looks for paths starting with /usr and assumes that they are missing the installation prefix (i.e. $(STAGING_DIR)). It already handles the cases that $(STAGING_DIR) itself and $(BASE_DIR) are under /usr, but it does not yet handle the case that a pre-installed external toolchain is under /usr (and tracks that fact in some .la file). For instance, if you use buildroot to generate a toolchain with HOST_DIR=/usr/local/some_path, this problem will occur. Fix this in the same way as $(STAGING_DIR) and $(BASE_DIR), but in addition check that TOOLCHAIN_EXTERNAL_INSTALL_DIR is non-empty. For internal toolchains, it is empty and the sed expression would fail. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Reported-by: Carlos Soto <csotoalonso@gmail.com> Cc: Carlos Soto <csotoalonso@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gnutls: security bump to version 3.3.15Gustavo Zacarias2015-05-042-2/+2
| | | | | | | | Fixes: GNUTLS-SA-2015-2 - Fix for MD5 downgrade in TLS 1.2 signatures. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* barebox: unbreak custom patch handling after 0eba4759 (packages: apply ↵Peter Korsgaard2015-05-041-1/+1
| | | | | | | | custom patches using *.patch instead of <pkg>-*.patch) The commit accidently dropped the continuation character (\), breaking the logic. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* barebox: bump to version 2015.04.0 and add hash fileFabio Porcedda2015-05-042-2/+7
| | | | | Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: Update with recent changesPeter Korsgaard2015-05-041-63/+110
| | | | | | And list major additions in 2015.05. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linknx: needs argp-standalone on uClibcPeter Korsgaard2015-05-032-1/+2
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/b27/b27c4b0822494fb393a5e28b8febd063222bd83f/ http://autobuild.buildroot.net/results/9db/9db2cc9fe6ddfda5663251872fdba00998020fce/ http://autobuild.buildroot.net/results/465/465328d0aa6b5f4b36903e2a4bc41d4ddd343db8/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libfreeimage: disable on ARC and BlackfinThomas Petazzoni2015-05-031-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libfreeimage fails to build on ARC, due to compiler issues: Error: invalid register number `63' This should probably be fixed at the compiler level. It also fails to build on Blackfin, due to numerous libfreeimage issues: 1/ Missing LL suffixes in Source/OpenEXR/IlmImf/ImfFastHuf.cpp. This can be fixed by backporting upstream OpenEXR commit https://github.com/openexr/openexr/commit/57ecf581d053f5cacf2e8fc3c024490e0bbe536f.patch. 2/ Invalid characters in libraw_x3f.cpp. This can be fixed by applying dos2unix on the file. 3/ Usage of too long constants in an unsigned long in dcraw_common.cpp, in code like "id == 0x4434303430" where id is an "unsigned long" i.e 32 bits on 32 bits platform. Due to (3) being apparently unsolved upstream, and causing a build error on Blackfin, we disable libfreeimage on this architecture. However, this code seems so broken that making libfreeimage as entirely broken would maybe be a better option. Fixes: http://autobuild.buildroot.org/results/b33/b3372581c82786cc0a87f8cc2e78f047cc079255/ (ARC issue) http://autobuild.buildroot.org/results/f3b/f3bd6be448cffed3caae7850233168e6d0f6a5bd/ (Blackfin issue) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libfreeimage: add patch to fix x86 build problemThomas Petazzoni2015-05-031-0/+67
| | | | | | | | | | | | Add a patch to fix an x86 build problem caused by invalid register usage when -fPIC is used. Fixes: http://autobuild.buildroot.org/results/fe7/fe72243a84a91b68ef3138847294674b36f16c58/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud