summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* dhcp: update dhclient-scriptGustavo Zacarias2014-11-281-1/+283
| | | | | | | | | | | | | | | | | | | | | | The previous no-op dhclient-script is useless and in fact can lead users to believe things will work. dhclient-script is supposed to, among many other things, bring the interface up for dhclient to pump an address, set the interface address, set resolv.conf appropiately and set the default gateway. It's a complex script since it has to deal with a lot of details so let's just use the best fit which is the OpenWRT one since it uses the "legacy" tools (ifconfig, route, ...) which can be easily provided by busybox and/or net-tools. There are newer and more feature-complete versions around but they require full iproute2 ip and wouldn't fit as well with the busybox-only approach. License: likely GPLv2+ Source: http://git.openwrt.org/?p=packages.git;a=blob;f=net/isc-dhcp/files/dhclient-script;h=4afebc0ad20ebac51c5baae5ed01c6713e3a0fd0;hb=HEAD Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcpdump: add 3 security patchesGustavo Zacarias2014-11-283-0/+58
| | | | | | | | | | | | | Fixes: CVE-2014-8767 - denial of service in verbose mode using malformed OLSR payload OLSR payload CVE-2014-8768 - denial of service in verbose mode using malformed Geonet payload CVE-2014-8769 - unreliable output using malformed AOVD payload Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* bind: not available for static buildsGustavo Zacarias2014-11-283-2/+3
| | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/e27/e27111f484f72c77d2179fa1a29ea7b5271ff9fa/ While at it rename patches to new convention. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mpg123: needs host-pkgconfPeter Korsgaard2014-11-281-0/+1
| | | | | | | | SDL detection is done using pkg-config. Fixes http://autobuild.buildroot.net/results/437/437f408122d7f21420a7cdc9758caf0ab1ba877d/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* btrfs-progs: fix static buildBaruch Siach2014-11-281-0/+4
| | | | | | | | | | libuuid needs -lintl when BR2_NEEDS_GETTEXT_IF_LOCALE is set. Fixes: http://autobuild.buildroot.net/results/9f1/9f182cd5955d724750135bcd6cb7e315fb28334f/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt: Webkit Module needs a toolchain with NPTLVicente Olivert Riera2014-11-281-1/+3
| | | | | | | | | | | | | | Qt Webkit Module uses pthread_getattr_np() which is implemented in toolchains with NPTL. Otherwise the compilation will fail showing this error message: wtf/StackBounds.cpp: In member function ‘void WTF::StackBounds::initialize()’: wtf/StackBounds.cpp:172:38: error: ‘pthread_getattr_np’ was not declared in this scope Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt: Script Module needs a toolchain with NPTLVicente Olivert Riera2014-11-282-0/+10
| | | | | | | | | | | | | | Qt Script Module uses pthread_getattr_np() which is implemented in toolchains with NPTL. Otherwise the compilation will fail showing this error message: ../3rdparty/javascriptcore/JavaScriptCore/runtime/Collector.cpp: In function ‘void* QTJSC::currentThreadStackBase()’: ../3rdparty/javascriptcore/JavaScriptCore/runtime/Collector.cpp:692:42: error: ‘pthread_getattr_np’ was not declared in this scope Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pciutils: install to /usr/bin rather than /usr/sbinGustavo Zacarias2014-11-281-2/+4
| | | | | | | | | | Somehow busybox thinks debian standards are the rule and installs lspci to /usr/bin instead of /usr/sbin where upstream says it belongs. So install pciutils binaries there as well to really win over busybox PATH-wise and overwrite the little bugger symlink. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/nfs-utils: use pkg-config to find libtirpcYann E. MORIN2014-11-272-1/+103
| | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/17d/17d1d94e6f1617851e374f4fe9804f1e5ea9e99f/ http://autobuild.buildroot.net/results/c08/c08b7be40c8f208147a4f95ad897e4a1df7e108d/ and probably some others as well... [Peter: correct tirpc/tirpcinclude mixmatch in patch description] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/nfs-utils: rename patchesYann E. MORIN2014-11-277-0/+0
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libtirpc: add -pthread to the private librariesYann E. MORIN2014-11-271-0/+25
| | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/17d/17d1d94e6f1617851e374f4fe9804f1e5ea9e99f/ http://autobuild.buildroot.net/results/c08/c08b7be40c8f208147a4f95ad897e4a1df7e108d/ and maybe a bunch of others... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libtirpc: rename patchesYann E. MORIN2014-11-276-0/+0
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* (e)glibc: add security patches for CVE-2014-7817Gustavo Zacarias2014-11-275-0/+694
| | | | | | | | Fixes: CVE-2014-7817 - command execution in wordexp() with WRDE_NOCMD specified Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* botan: fix static buildFrancois Perrad2014-11-272-4/+3
| | | | | | | | | | | | see http://autobuild.buildroot.net/results/2d1/2d1563e253b669b45c9df449c5b3a750c04a43dc/ this commit reverts the previous commit 84047394ed6ad08adb9f59a9022553a327eef040 which disables static build in Config.in the option --no-autoload prevents the use of the function dlopen. Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* nftables: fix static buildBaruch Siach2014-11-261-1/+9
| | | | | | | | | | | | | | | | | libnftnl needs -ljansson when built with json support. Fixes: http://autobuild.buildroot.net/results/68a/68ab2101a0b2b7d5482aafe0d88c87a50491159f/ http://autobuild.buildroot.net/results/87e/87ecbba5b9b16d592a48fe827fa88ef5a5c6d09b/ libnftl also needs -mxml when built with XML support. Fixes: http://autobuild.buildroot.net/results/58f/58f592d823db14e4e7558134f1b479f4f8659a23/ http://autobuild.buildroot.net/results/1cf/1cf23f2b38236f43971c65e704793b5bc762ecfe/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libnspr: fix static buildBaruch Siach2014-11-261-0/+6
| | | | | | | | | | | | | Disable shared library in a static build. Fixes: http://autobuild.buildroot.net/results/6ff/6ffae151ec3eaca175923ab860cf42167871164c/ http://autobuild.buildroot.net/results/cab/cab19721c43b3256dd51ae511016bc9ea440512a/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/network-manager: NM needs isc-dhcpc or dhcpcdNathaniel Roach2014-11-261-0/+1
| | | | | | | | | | | | | | | NM only currently supports isc-dhcpc and dhcpcd as clients because NM communicates with the client through DBus, and support for clients needs to be written in. (as per files in src/dhcp-manager) Buildroot's default, udhcpc is not supported. Add the dependencies to Config.in, favoring dhcpcd as default due to size. [Peter: drop references to dhclient, isc-dhcpc is dhclient] Signed-off-by: Nathaniel Roach <nroach44@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* binutils: fix xtensa trampolines search code for conditional branchesMax Filippov2014-11-263-0/+270
| | | | | | | | | | | | | | This fixes the following build errors seen when assembling huge files produced by gcc: Error: jump target out of range; no usable trampoline found Error: operand 1 of 'j' has out of range value '307307' Fixes: http://autobuild.buildroot.net/results/545/545168d9caf3bdb3dd3eb3bae58ba9db8a33384a/ Backported from: d92b6eece424f0ad35d96fdd85bf207295e8c4c3 Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lame: also disable debug handling on arm(eb)Peter Korsgaard2014-11-261-1/+1
| | | | | | | | | | | | | Not all arm (E.G. non-VFP) toolchains define the control word macros, so disable debug handling for arm(eb) as well. As the debug handling has limited value (it simply forces CFLAGS which we don't want and enables exceptions on FP errors) don't try to be clever about what toolchain variants to disable it for, but just disable it for all arm(eb). Fixes http://autobuild.buildroot.net/results/672/672a31c0bd329dec566ba74e0e1be43abd0f16c2/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libksba: security bump to version 1.3.2Gustavo Zacarias2014-11-262-3/+3
| | | | | | | Fixes a buffer overflow in ksba_oid_to_str. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/clamav: fix static buildYann E. MORIN2014-11-251-0/+21
| | | | | | | | | | | | | | | | | | | clamav unconditionally includes dlfcn.h which is missing on a uClibc that is configured as a pure-static C library. Thus, the build fails. But the including file does not even makes use of any function from the dlopen() familly, so it does not need to include dlfcn.h to start with. Add a patch to clamav to not include dlfcn.h where not needed. Fixes: http://autobuild.buildroot.net/results/b49/b491f4e5e1760248adb8d21b404e8aa15f7dbdd1/ [Peter: fix typo in patch description] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libpng: security bump to version 1.6.15Gustavo Zacarias2014-11-254-1/+4
| | | | | | | Fixes an out-of-bounds memory access in png_user_version_check(). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rtai: fix typo in config script fixupPeter Korsgaard2014-11-251-1/+1
| | | | | Reported-by: Spielmann Werner <Werner.Spielmann@SWAROVSKI.COM> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gd: use pkg-config to figure out png linker flagsPeter Korsgaard2014-11-251-1/+1
| | | | | | | | | So gdlib-config --libs returns the full dependency chain (-lpng16 -lz -m) when linking statically. Fixes http://autobuild.buildroot.net/results/dac/dac3eb950c7c27b2f09f001f9db9936f897721f9/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gd: needs host-pkgconfPeter Korsgaard2014-11-251-0/+1
| | | | | | configure uses PKG_CHECK_MODULES, so it needs to depend on host-pkgconf. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlcipher: fix static linking with opensslPeter Korsgaard2014-11-251-2/+1
| | | | | | | | | | | | | | | Pass the needed libraries in LIBS instead of LDFLAGS so they end up last on the linker cmdline, fixing static linking. Fixes: http://autobuild.buildroot.net/results/59d/59d8d7c7f3e0a205503121c1288187471c0ce80f/ http://autobuild.buildroot.net/results/2ed/2ed2026bc5502807588a9335bd4c78e0a26c1cd3/ http://autobuild.buildroot.net/results/cd3/cd35b24422cf7f8697e81ca7f0dd2f06dfc55997/ http://autobuild.buildroot.net/results/aa2/aa24359a0d7d9bb4e00ba96cb80301f59466ab90/ And many more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flac: add security patchesGustavo Zacarias2014-11-253-0/+74
| | | | | | | | | | | Fixes: CVE-2014-9028 - Heap buffer write overflow CVE-2014-8962 - Heap buffer read overflow Patches are upstream part of the upcoming 1.3.1 release. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gptfdisk: fix static buildBaruch Siach2014-11-252-3/+9
| | | | | | | | | | | | | libuuid may need -lintl. Augment the existing Makefile patch to support adding link dependencies at build time. Fixes: http://autobuild.buildroot.net/results/24b/24b3f707424e2dcf0158ffe93d728be98ff66701/ http://autobuild.buildroot.net/results/f33/f3359fab166cf3627f15e59fa44cff36ee213102/ http://autobuild.buildroot.net/results/ef7/ef783e3776f25c28ea0de0c082c93f7ab97db56d/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libshairplay: needs avahi with libdnssd compat option at runtimePeter Korsgaard2014-11-251-2/+8
| | | | | | | | | | libshairplay uses dlopen to open libdnssd at runtime (unless dlopen() isn't available, then static linking is used - But avahi depends on !BR2_PREFER_STATIC_LIB so that isn't possible), so ensure avahi is available. Fixes http://autobuild.buildroot.net/results/54d/54de48b23439cef4cbea3b8a65b20e2a8b049f67/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xorg-server: needs mmuPeter Korsgaard2014-11-241-1/+2
| | | | | | | | | | | | os/utils.c::System() unconditionally uses fork(), so it only builds on configurations with mmu. (Indirectly) fixes: http://autobuild.buildroot.net/results/497/4970352598a68d7af89acbb33cdf69d656e23f4d/ http://autobuild.buildroot.net/results/d27/d279dc35bff53b7f939af02bee70b1ed3014e49b/ http://autobuild.buildroot.net/results/84b/84b8f19221a5c841de3016959c99b92c96c57e81/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* czmq: fix static buildBaruch Siach2014-11-241-1/+1
| | | | | | | | | | libstdc++ may also need -lm. Fixes: http://autobuild.buildroot.net/results/aab/aab80285c54641fd7c217cdd45c4593e5c3a66c5/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uemacs: bump to latest LT masterBaruch Siach2014-11-244-59/+11
| | | | | | | | | | | | | | | | Latest LT (Linus Torvalds) master fixes symbol collision with ncurses. Drop patches 01 and 02 as they are not needed anymore. Refresh patch 03 to account for context changes, and rename to new convention. Fixes: http://autobuild.buildroot.net/results/6e0/6e0fb4a74f62e23cbc56482ae25f9979fa6f14f8/ http://autobuild.buildroot.net/results/df9/df9b693d7f53daba0d25f52132ca1594dd1273fa/ http://autobuild.buildroot.net/results/b39/b39d3997466951df078a5f47c5a75200b07dca4c/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xl2tp: fix static buildBaruch Siach2014-11-241-1/+5
| | | | | | | | | | | | Use pcap-config to list dependencies of libpcap. Fixes: http://autobuild.buildroot.net/results/87f/87ff92831d265d437aa0dfcfb99e954f76597761/ http://autobuild.buildroot.net/results/cd5/cd5487e76259752cbe58b171f9a58970916f7bb8/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* radvd: add a patch to fix build failure on architectures without sysctl()Thomas Petazzoni2014-11-241-0/+49
| | | | | | | | | | | | | | | Modern architectures such as ARC do not provide the sysctl() system call, since it is deprecated. However, uClibc still installs <sys/sysctl.h> in such cases, which defeats radvd check for the availability of sysctl(). This commit adds a patch to radvd which improves the sysctl() checking. Fixes: http://autobuild.buildroot.org/results/458/4581c4220adeaebbf6761e3b923088d8de8522d5/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* radvd: switch to new patch naming convention, use Git formatted patchesThomas Petazzoni2014-11-245-34/+57
| | | | | | | | | | | This commit renames the radvd patches to follow the new naming convention, and reformats them to be Git patches. Since the patches are renamed, we adjust the comment in the .mk file explaining why we autoreconf the package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* ushare: do not allow building in static lib situationsThomas Petazzoni2014-11-241-2/+7
| | | | | | | | | | | | | The ushare configure script is a custom shell script, and it is not designed to understand that the library order is important when doing static linking. Fixes: http://autobuild.buildroot.org/results/32e/32ed2a521043f929cc290145c8a651e69042e104/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* mpdecimal: fix build on pure static library configurationsThomas Petazzoni2014-11-242-0/+102
| | | | | | | | | | | | | | This commit adds a patch to mpdecimal that makes it understand --enable-shared/--disable-shared and --enable-static/--disable-static, even if mpdecimal isn't using automake/libtool. It allows to build only the static variant of the mpdecimal library when needed. Fixes: http://autobuild.buildroot.org/results/276/2764bd8c42ba659682760ffc6afa933b7530d06c/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* sstrip: fix source svn repository urlFabio Porcedda2014-11-241-1/+1
| | | | | | | | | | | | | | Because the svn repository url was changed the command "make sstrip-source" gives this error: svn: E000101: Unable to connect to a repository at URL 'svn://dev.openwrt.org/openwrt/trunk/tools/sstrip' svn: E000101: Can't connect to host 'dev.openwrt.org': Network is unreachable To fix this error use the correct url "svn://svn.openwrt.org/openwrt". Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* heirloom-mailx: disable static buildBaruch Siach2014-11-231-0/+5
| | | | | | | | | | | | | heirloom-mailx implements its own version of getopt() that collides with the C library when linking statically. Fixes: http://autobuild.buildroot.net/results/f67/f67eb63a9a8bb25fb0c071f1aac271e9798d95d1/ http://autobuild.buildroot.net/results/722/722f65c4fcc093d6a6a2200c06b2ecb3ee35bc06/ http://autobuild.buildroot.net/results/1cc/1cce267cc4b0a7d6bf5ff10f5429ae7dfe96960a/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dillo: needs iconvPeter Seiderer2014-11-232-0/+3
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/4a7/4a765a66bea1ecf4ec5e4da00b847bc931071132/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-validate: needs pythonPeter Seiderer2014-11-222-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If host installed python version is < 2.7.0 gst1-validate compile will fail with checking for a Python interpreter with version >= 2.7.0... none configure: error: no suitable Python interpreter found Fixed by adding host-python dependency. Target tool /usr/bin/gst-validate-launcher is a python2 script $ head -1 /usr/bin/gst-validate-launcher #!/usr/bin/env python2 (and not easily upgradable to python3) so add python2 dependency and to fix the following runtime error $ gst-validate-launcher Traceback (most recent call last): File "/usr/bin/gst-validate-launcher", line 44, in <module> from launcher.main import main File "/usr/lib/gst-validate-launcher/python/launcher/main.py", line 26, in <module> import reporters File "/usr/lib/gst-validate-launcher/python/launcher/reporters.py", line 29, in <module> from xml.sax import saxutils ImportError: No module named xml.sax add additional BR2_PACKAGE_PYTHON_PYEXPAT select. Fixes: http://autobuild.buildroot.net/results/e8c/e8c27db2a0935c2daef173d5650f6a2b3a219493/ http://autobuild.buildroot.net/results/723/723fe3036e8f0af2a90ff9e98173387466655000/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openssl: drop libdl from more pc filesBernd Kuhls2014-11-221-0/+2
| | | | | | | | | | | | | | | | | | | | | This is a follow-up patch for http://git.buildroot.net/buildroot/commit/package/openssl/openssl.mk?id=c130c5d4635e2a4c7338161953152faf8fca07c4 Fixes http://autobuild.buildroot.net/results/358/35899961b6dc01c1522b17f63946da5ab809bff8/ http://autobuild.buildroot.net/results/c86/c865214e74dd3766b6343ef73c666fa89c0b5dec/ http://autobuild.buildroot.net/results/fc1/fc12e88fb789e2b68d427c37f39789954309b05d/ http://autobuild.buildroot.net/results/f4d/f4deef4e7d2e2cf5fbc9ce5f02289b4dc60cd23b/ http://autobuild.buildroot.net/results/dfd/dfd81f1f1f0f315317b2a85d24b286a277ac7c16/ http://autobuild.buildroot.net/results/918/9188fc9a63d880cac28c5a9a246ca5504dd11bb2/ http://autobuild.buildroot.net/results/dd1/dd1c326345f8f9c8b5838601ace19002f5360bb2/ http://autobuild.buildroot.net/results/27b/27b4544c59166a9f40092403ed3f530190544a82/ http://autobuild.buildroot.net/results/c37/c37022e334d763bad2a59f7311b93504a569b2dd/ http://autobuild.buildroot.net/results/e89/e89265937a6b4808b817be16bcab79bae4a9aed1/ http://autobuild.buildroot.net/results/4a2/4a222a40d627fda6e49714b13b4321d62c9c2e51/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/erlang: disable for static buildsYann E. MORIN2014-11-221-2/+3
| | | | | | | | | | | | | erlang wants to build shared libs, always. So, disable erlang when we're building static-only. Fixes: http://autobuild.buildroot.net/results/1ce/1ceaa6925d1ded236d01ae9feb31f5f915f6b51a/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Frank Hunleth <fhunleth@troodon-software.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libllcp: needs host-pkgconfPeter Korsgaard2014-11-221-1/+1
| | | | | | configure.ac uses PKG_CHECK_MODULES, so we need host-pkgconf. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libllcp: ensure graphviz isn't used to generate documentationPeter Korsgaard2014-11-221-0/+2
| | | | | | | | We don't need the documentation, so it is a waste of time - And more importantly, the .dot file isn't compatible with all graphviz versions breaking the build. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/weston: Fix wrong condition to display the commentBernd Kuhls2014-11-221-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/wayland: Fix wrong condition to display the commentBernd Kuhls2014-11-221-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* uclibc: do not use GENERATE_LOCALEThomas Petazzoni2014-11-211-2/+4
| | | | | | | | | | | | | | | | | | Since commit 33de7401701e5242196a86b0695ee4ae9a4c4082 ("Makefile: convert "target-generatelocales" to a hook"), the GENERATE_LOCALE variable is never defined when using uClibc. This means that setting any value to the BR2_GENERATE_LOCALE option had no effect for uClibc toolchains. In this commit, we make sure the uclibc.mk logic re-creates its own qstripped version of BR2_GENERATE_LOCALE, in a variable called UCLIBC_GENERATE_LOCALES. This fixes locale generation with uClibc in the internal toolchain backend. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.{17, 14, 12, 10}.x seriesGustavo Zacarias2014-11-211-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/dovecot: Fix symbol conflict in static build with MySQL enabledBernd Kuhls2014-11-211-0/+24
| | | | | | | | Fixes http://autobuild.buildroot.net/results/9b5/9b536926b3b2bf82c683b48e9697a220f1b4bf33/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud