summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* support/download: generate reproducible Hg archivesYann E. MORIN2016-01-031-1/+1
| | | | | | | | | | | | | | | | | | When hg directly creates the output file, the hash for that file changes everytime. However, if we just tell hg to output the archive on stdout and we do the redirect to the file, then the archive is reproducible. (The reason is that in the first case, a temporary file is created and then compressed, and gzip is adding the filename and its timestamp in the gzip header, while in the second case, there is no temporary file, and thus no timestamp and thus it is reproducible.) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Tested-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Makefile: drop ldconfig handlingThomas Petazzoni2016-01-032-13/+4
| | | | | | | | | | | | | | | | | | | | | | | | | The ldconfig handling in the main Makefile is utterly broken, as it calls the build machine ldconfig to generate the ld.so.cache of the target. Unfortunately, the format of the ld.so.cache is architecture specific, and therefore the build machine ldconfig cannot be used as-is. This patch therefore simply drops using ldconfig entirely, and removes /etc/ld.so.conf.d/ from the target skeleton. The idea is that all libraries that should be loaded by the dynamic linker must be installed in paths where the dynamic linker searches them by default (typically /lib or /usr/lib). This might potentially break a few packages, but the only way to know is to actually stop handling ldconfig. In order to be notified of such cases, we add a check in target-finalize to verify that there is no /etc/ld.so.conf file as well as no /etc/ld.so.conf.d directory. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package:sysdig: propagate dependencies from jsoncppRomain Naour2016-01-011-2/+4
| | | | | | | sysdig select jsoncpp which needs a gcc compiler >= 4.7 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sysdig: reorder select/dependsRomain Naour2016-01-011-3/+3
| | | | | | | | | | | | | | | | >From [1]: "Even though the ordering has absolutely no consequences in Kconfig, it is not logical (when reading). It is more logical and far easier to understand when depends come first, followed by the selects." Also, the Config.in exemple in the manual suggest to use this coding style [2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-October/142955.html [2] http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-config-in Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tinyalsa: fix toolchain commentPeter Korsgaard2016-01-011-1/+1
| | | | | | Documented syntax is '.. needs A toolchain ..' Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* kodi: fix libva toolchain commentPeter Korsgaard2016-01-011-1/+1
| | | | | | Documented syntax is '.. needs A toolchain ..' Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-plugins-good: fix v4l2 toolchain commentPeter Korsgaard2016-01-011-1/+1
| | | | | | Documented syntax is '.. needs A toolchain ..' Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cxxtest: new packageAbhishek Singh2016-01-014-0/+43
| | | | | | | | | | [Peter: fix toolchain comment, use INSTALL instead of mkdir/cp] Reviewed-by: Marcin Nowakowski <marcin.nowakowski@imgtec.com> Reviewed-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> Reviewed-by: Piotr Nakraszewicz <piotr.nakraszewicz@imgtec.com> Reviewed-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Abhishek Singh <Abhishek.Singh@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-pyxml: remove obsolete packageYegor Yefremov2016-01-015-32/+7
| | | | | | | | | | | PyXML is bitrotten and obsolete. You'll find the functionality it previously provided is now included in the Python standard library. So no need to keep this package in Buildroot anymore. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/openocd: select libusb when selecting libusb-compatRomain Naour2016-01-011-0/+5
| | | | | | | | | | | | | | | | | | | | | libusb-compat depends on libusb package, so we need to select libusb package at the same time as libusb-compat to avoid an unmet dependency. Since 28f67899e54f15c6e48484ea2976c3e431756bcb, the build stop if a package build is trigged at Makefile level without being selected at Config.in level. This is the case here with BR2_PACKAGE_OPENOCD_USBPROG which select BR2_PACKAGE_LIBUSB_COMPAT without selecting BR2_PACKAGE_LIBUSB. Fixes: http://autobuild.buildroot.net/results/b4a/b4a8c54eed6bf75ab8ade0653953d19792155727/ Signed-off-by: Romain Naour <romain.naour@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gstreamer/zbar-plugin: propagate dependencies from zbarRomain Naour2016-01-011-0/+10
| | | | | | | | | | | | BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR select BR2_PACKAGE_ZBAR which has several dependencies from libv4l. Propagate these dependencies to avoid unmet dependencies while selecting BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR. [Peter: show comment if toolchain dependencies aren't available] Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dillo: fix jpeg dependencyPeter Korsgaard2016-01-011-1/+1
| | | | | | | | dillo was explicitly pulling in libjpeg instead of the virtual 'jpeg' package, even though it also works with jpeg-turbo. Reported-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mongodb: new packageSergio Prado2016-01-014-0/+97
| | | | | | | | | Compiled and tested on arm (beaglebone black), aarch64 (qemu), i386 (qemu) and x86_64 (qemu). [Peter: limit to supported archs, disable -Werror] Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* acsccid: propagate dependencies from pcsc-liteThomas Petazzoni2015-12-311-3/+7
| | | | | | | | | | | | | The new package acsccid properly propagated the dependency of libusb, but not the one of pcsc-lite, causing pcsc-lite to be selected in situation where it shouldn't be (such as in static-only configurations). Fixes: http://autobuild.buildroot.org/results/e0b/e0b205dceb84303d1dfaf8b39562b934f6914b8d/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: orangepipc defconfig needs dtc for u-bootThomas Petazzoni2015-12-311-0/+1
| | | | | | | | | | As can be seen at https://travis-ci.org/buildroot/buildroot-defconfig-testing/jobs/99518455, the new Orange Pi PC defconfig fails to build due to DTC being missing when building U-Boot. This commit adds the appropriate option to add DTC as a dependency to U-Boot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi*: update them to use genimageGustavo Zacarias2015-12-316-93/+122
| | | | | | | | | | | Update the raspberrypi and raspberrypi2 configs to use genimage directly to build the image. Update the documentation to reflect this, and drop the volatile rootfs option since it doesn't make much sense and it's not easily integrated with the genimage configurations. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* vlc: add optional dependency to libmatroskaPieterjan Camerlynck2015-12-311-0/+7
| | | | | | | | | | libmatroska is an optional dependency to vlc: http://git.videolan.org/?p=vlc.git;a=blob;f=configure.ac;h=c46120d7f2a7d49d68d488d617e071148b8c5595;hb=HEAD#l2044 Add it to vlc.mk to get reproducable builds. Signed-off-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-headers: bump 3.2.x seriesGustavo Zacarias2015-12-311-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nodejs: version 5.X needs host GCC >= 4.8Arnout Vandecappelle2015-12-311-0/+2
| | | | | | | | | | Fixes http://autobuild.buildroot.org/results/4589dd076585d6472ad1e65926ffe68343b94422 http://autobuild.buildroot.org/results/e3147c0d9c9eb9f58773b75c8cb4ea49df483611 and many more. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* skeleton: fix VCS folders not being excluded from rootfsNathan Ford2015-12-311-1/+1
| | | | | | | | There is a typo in skeleton.mk preventing rsync from excluding VCS folders such as .svn. Signed-off-by: Nathan Ford <nford@westpond.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Config.in: add symbols for BR2_HOST_GCC_AT_LEAST_X_YArnout Vandecappelle2015-12-313-0/+40
| | | | | | | | | | | | | | Some host packages need a recent gcc version. Add symbols to Config.in to specify the HOSTCC version. The values are passed through the environment, and this environment is generated in a new support script. Also update the documentation to mention the new symbols. [Thomas: simplify by using only make logic instead of an external shell script.] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-twisted: bump to 15.5.0Yegor Yefremov2015-12-312-2/+2
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* vlc: add support for libdvbpsiPieterjan Camerlynck2015-12-301-0/+7
| | | | | Signed-off-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libdvbpsi: new packagePieterjan Camerlynck2015-12-304-0/+31
| | | | | | | | | | libdvbpsi is a library used by vlc for decoding MPEG TS [Thomas: - add missing Config.in comment about the thread dependency.] Signed-off-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bind: add libressl-enabling patchGustavo Zacarias2015-12-301-0/+129
| | | | | | | Besides the version bump we also require this patch, which is upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fetchmail: add libressl-enabling patchGustavo Zacarias2015-12-301-0/+67
| | | | | | | Patch status: upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* acsccid: new packageJuha Rantanen2015-12-304-0/+34
| | | | | | | | | | | | | | [Thomas: - fix commit title - change libusb back to a mandatory dependency, since even though there is a --disable-libusb option, it has no effect, and the code fails to build due to missing libusb.h - add hash file, noticed by Arnout - remove host-perl dependency, noticed by Arnout - rewrap Config.in help text, noticed by Arnout.] Signed-off-by: Juha Rantanen <juha@codercoded.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libvncserver: disable on nios2, due to binutils issuesThomas Petazzoni2015-12-301-0/+2
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/469/469d5667f05ca6954805772fcaaa2b33dfdc6167/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: add missing select BR2_PACKAGE_MCOOKIEThomas Petazzoni2015-12-301-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/7af/7afbf93492819ce59141f056f72679e4cdec0649/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: CodeSourcery PowerPC: Revert the removal of CS PowerPC ↵Romain Naour2015-12-305-5/+51
| | | | | | | | | | | | | | | | | | | | | | | | | 2011.03 As reported by Yann E. MORIN [1], the latest CS PowerPC toolchain (2012.03) requires a PPC CPU with SPE, which is basically two variants, 8540 (e500v1) and 8548 (e500v2) in Buildroot. All other PPC CPU can't use that toolchain. Keep CS PowerPC 2011.03 as latest available version and add a second Kconfig symbol for the CS PowerPC 2012.03 since it's verry specific to one CPU type (e500v2). Previously it was possible to select the CS 2012.03 with a powerpc 8540 (e500v1) CPU but the sysroot provided by the toolchain only support the 8548 (e500v2) variant. Allow to select CS 2012.03 only with BR2_powerpc_8548. Also re-add the previous CS toolchain handling for pixman and liquid-dsp. [1] http://lists.busybox.net/pipermail/buildroot/2015-December/148308.html Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* hidapi: add libiconv handlingThomas Petazzoni2015-12-302-0/+6
| | | | | | | | | hidapi uses iconv functions, which on uClibc without locale support is provided by the external libiconv library. This commit adds the necessary libiconv handling to make the hidapi package build on !locale toolchains. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* hidapi: fix build with toolchains lacking C++ supportThomas Petazzoni2015-12-301-0/+47
| | | | | | | | | | | | | hidapi currently doesn't build on non-C++ capable toolchains due to hidtest being a C++ source file, even if it in facts contains only C code. This commit adds a patch that fixes this in the hidapi source code. Fixes: http://autobuild.buildroot.org/results/6ce/6ce0a4b8c7acb857005350a57c313b493bc6e2b7/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gst1-plugins-bad: fix openh264 handlingPeter Korsgaard2015-12-302-0/+18
| | | | | | | | | | Commit 301e8ffbb25 (gst1-plugins-bad: update configure options) added a sub option for openh264, but didn't propagate the toolchain dependencies or add any configure options. Fix this and while we're at it also add a help text for the option. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gstreamer1: Allow to build OpenJPEG pluginVincent Dehors2015-12-302-1/+13
| | | | | | | | | | The OpenJPEG library is packaged in buildroot (version 1) and there is a plugin "openjpeg" using it in gst1-plugins-bad. This commit add the option for building this plugin. It provide a JPEG2000 encoder and decoder. [Peter: use 'select' instead of 'depends on', sort alphabetically] Signed-off-by: Vincent Dehors <vincent.dehors@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* netatalk: bump to version 3.1.8Gustavo Zacarias2015-12-302-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iptables: add parallel build fix patchGustavo Zacarias2015-12-302-0/+41
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/5c4/5c4ca595c4bf744aa00fc58851eeccf81f9c6ecc/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bind: disable libjson supportGustavo Zacarias2015-12-301-7/+1
| | | | | | | | | | | | | | | | | It conflicts with jsoncpp, bind probes for json/json.h first, but that header is installed by jsoncpp, which is completely different from json-c. Since it's not clear who's correct here (there might be some other json-c predecessor/version that installs there as well) and the same functionality (stats channel) is provided by libxml2 as well, just disable libjson support completely. Fixes: http://autobuild.buildroot.net/results/226/2262c9b46663ea7a45e128a5fd7ff30417c2c2a7/build-end.log (indirectly, it was probing aboslute directories while searching for it) Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt: add missing select BR2_PACKAGE_TSLIBThomas Petazzoni2015-12-301-0/+5
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/36c/36c56d10abcf96afd389f2ebe8db4dc13659997b/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dbus: audit support needs both audit and libcap-ngThomas Petazzoni2015-12-301-1/+1
| | | | | | | | | | | | | | | | | | As was suggested by the <pkg>_DEPENDENCIES variable, the audit support in DBus requires both audit and libcap-ng. However, it didn't take care of the fact that libcap-ng must be enabled in the configuration to depend on it, causing some build failures with the newly added check. DBus configure.ac confirms that both packages are needed to enable audit support, so we simply fix the condition to only be true when both BR2_PACKAGE_AUDIT *and* BR2_PACKAGE_LIBCAP_NG are true. Fixes: http://autobuild.buildroot.org/results/239/23953cc66faecb65e9ebf1f6980924f823d736a2/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* php: add missing select BR2_PACKAGE_LIBMCRYPTThomas Petazzoni2015-12-301-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/b0c/b0c9ea0d577a74549476ddbdb0d2ecd09311c765/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openbox: add missing propagated dependencies from pangoThomas Petazzoni2015-12-301-2/+6
| | | | | | | | | | | pango needs atomics support and C++ support, and those dependencies where not propagated to the new openbox package. Should fix: http://autobuild.buildroot.org/results/d3b/d3b17335f2e5720a69b4635602fef30a5ae34660/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lttng-babeltrace: add missing select BR2_PACKAGE_POPTThomas Petazzoni2015-12-301-0/+1
| | | | | | | | | | | | lttng-babeltrace unconditionally uses "popt" in its <pkg>_DEPENDENCIES variable, but does not select it. This commit fixes this inconsistency. Fixes: http://autobuild.buildroot.org/results/274/2748a02b090ce078fc880bd821df3c913b8c8dfd/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sshfs: use SSHFS_VERSION variable in URLJerzy Grzegorek2015-12-301-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libfuse: use LIBFUSE_VERSION variable in URLJerzy Grzegorek2015-12-301-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* vboot-utils: ssize_t needs unistd.hAlex Suykov2015-12-301-0/+14
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/95c8708411fbb116f313a0fdeccacf92cf9e3d8d/ http://autobuild.buildroot.net/results/cf4aa60f9fc9c48ff13d3233994b77b7c0950afe/ http://autobuild.buildroot.net/results/6f7dcafde693f06dfc88c922c5f8dd70ae2e30b5/ http://autobuild.buildroot.net/results/a2e95784d32c8842f6947801fd0d8c48f68b84e2/ http://autobuild.buildroot.net/results/f69ae4c9eee27df43389ae76048fb4ddd5a3eca6/ Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* vboot-utils: MTD_CHAR_MAJOR definitionAlex Suykov2015-12-301-0/+17
| | | | | | | | | | Fixes http://autobuild.buildroot.net/results/a6360fd21314899321071c34fcb4892c5eed9bcc/ http://autobuild.buildroot.net/results/0af3aa4a429c45d3a2609913ec1040f32378f3c8/ http://autobuild.buildroot.net/results/cc4940fd6f51b31d71014f5aedee5223180eb36e/ Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-paho-mqtt: add new packageDavide Viti2015-12-304-0/+27
| | | | | Signed-off-by: Davide Viti <zinosat@tiscali.it> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/tpm-tools: fix build with locale supportSamuel Martin2015-12-303-1/+109
| | | | | | | | | | | | | | | | | | | | | | | tpm-tools needs to link with libintl when locale support is enabled. However, tpm-tools' build-system internally builds a couple of static libraries used to build the final programs. When linking these libraries or the final programs, we need to explicitly tell the linker to link with libintl in order to resolve all the missing symbols. Fixes: http://autobuild.buildroot.org/results/560/56020558ec298ac4007bf7f6ce030b3f2fa1157d/ http://autobuild.buildroot.org/results/17f/17fc6ca79765fd9ecdacec4f5a2b58caa554d48d/ http://autobuild.buildroot.org/results/2d2/2d2c655429df62da2b8746a564fc064609e96001/ http://autobuild.buildroot.org/results/d52/d5259b83e7a269bca019d024366aa201f5a174fd/ http://autobuild.buildroot.org/results/11c/11cb0d1e51459e75e5f376cb07ce0188f8f050c4/ http://autobuild.buildroot.org/results/bad/bad9a97b4fff00732f2efb043bbb76a99963c491/ http://autobuild.buildroot.org/results/2f8/2f8bd534e6fcd9d356fe9087cb1394b9b2c4192c/ and many others... Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: Noé Rubinstein <nrubinstein@aldebaran.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mbedtls: disable assembly for some scenariosGustavo Zacarias2015-12-301-0/+18
| | | | | | | | | | It's affected in the same way as polarssl, but use an enhanced trick compared to 130ca81b since it's required by the codebase. Fixes: http://autobuild.buildroot.net/results/584/584d1d12be9f2bbf45ccbdf93b6b442524059dcc/ http://autobuild.buildroot.net/results/d13/d13a06ba3fc0d7f08a03c04fcb484761da7af3f7/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bind: bump to version 9.10.3-P2Gustavo Zacarias2015-12-304-33/+13
| | | | | | | | | | | | | Leave the LTS series for the latest stable version for libressl compatibility. Unfortunately this means threads are now required, but this shouldn't be a problem for a fully-featured resolver. Drop 0001-disable-tests.patch since it's no longer required, genrandom isn't run unless the tests are called upon. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud