summaryrefslogtreecommitdiff
path: root/package
AgeCommit message (Collapse)Author
2012-06-05php: fix WDDX extension build failureGustavo Zacarias
Fix WDDX extension build failure. The documentation and source are conflicting about this, in theory libexpat support is deprecated and libxml2 can replace it, but it seems not so for WDDX, so pull in expat for it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-05beecrypt: fix build failure of C++ code with g++ 4.7Thomas Petazzoni
This fixes http://autobuild.buildroot.org/results/5c1e904b201676275465c902ba3c09951973755c/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04quagga: fix non-IPv6 build failuresGustavo Zacarias
The Zebra daemon now requires IPv6 support so disable it for non-IPv6 toolchains and add a comment mentioning it. The BABEL protocol/daemon also requires IPv6 so just enable it when it's available. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04php: fix build error for snmp extensionGustavo Zacarias
PHP requires that net-snmp be built with the ability to load MIB code, so force it on when the extension is enabled. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04webrtc-audio-processing: disable unsupported target architecturesSamuel Martin
Currently, webrtc-audio-processing only provides support for the following architectures (see src/typedefs.h from the source directory): - x86_64 - i*86 - armel Fixes http://autobuild.buildroot.org/results/ff777bb06eddafa71327015e1d39fe911c1439d8 Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04pulseaudio: fix build error on toolchains without C++ supportPeter Korsgaard
The optional webrtc echo canceller is written in C++, causing auto* to want to link module-echo-cancel.so with CXX even if webrtc ISN'T used. If we don't have C++ support enabled in BR, CXX will point to /bin/false, which makes configure think we aren't able to create C++ .so files (arguable true), breaking the build when it tries to install the .so workaround it by patching up the libtool invocations to use C mode instead. Fixes http://autobuild.buildroot.net/results/114e5bf0086f2394b36f17a70cb54b357a72413c Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04gnutls: add optional zlib supportPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04connman: needs IPv6 support in toolchainPeter Korsgaard
Fixes http://autobuild.buildroot.net/results/c405f9b3a59463fb7367daeb63e282c5d60f0685 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04connman: fixup libglib2 (gettext) dependenciesPeter Korsgaard
Connman was missing from commit b730010c90a (package: gettext needs WCHAR support). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04gnutls: fix libgcrypt handling with external toolchainsPeter Korsgaard
The explicit gnutls prefix in combination with the libc.so linker script and non-default sysroot seems to confuse external toolchains, causing configure to error out. Workaround it by not using an explicit libgcrypt prefix as it is installed in the sysroot anyway. Fixes http://autobuild.buildroot.net/results/3b3901bea904bf32bccbd3e9a4274d604776cb98 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04mediastreamer: fix intltool dependencyPeter Korsgaard
Fixes http://autobuild.buildroot.net/results/c93c1bc01feeea0ff37cb33c81d8712281a01c00 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04linphone: add optional gtk supportPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04linphone: use external ortp/mediastreamer librariesPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-04package: add mediastreamerPeter Korsgaard
It doesn't really need C++ support on Linux, but the configure script checks for it (and fails if not available), and the package is not easy to autoreconf as there's C++ source files for Android/Windows, causing automake to fail if AC_PROG_CXX isn't set. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-06-03package: add ortpPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-31nfs-utils: needs pkg-configPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-31Merge branch 'next'Peter Korsgaard
Conflicts: toolchain/kernel-headers/Config.in
2012-05-30nfs-utils: bump to version 1.2.6nextGustavo Zacarias
Bump nfs-utils to version 1.2.6 Portmap or rpcbind (which we don't have) is required so select it. Remove nfsiostat if there's no target python. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-30mobile-broadband-provider-info: use release tarball instead of gitPeter Korsgaard
Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-29pptp-linux: fix build with high BR2_JLEVEL settingsPeter Korsgaard
The pptp-linux build system is not robust against parallel builds. Fixes http://autobuild.buildroot.net/results/a75fab3f04d03cb39cd41a86b6f57307198ba5f1 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-29ofono: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-29ofono: fix build on uClibc without backtrace supportPeter Korsgaard
Identical to connman patch as this code seems to be cut'n'pasted. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-29Add ofono packageMarek Belisko
[Peter: add upstream URL, fix dep, drop explicit bluetooth option, no AUTORECONF] Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28Add mobile-broadband-provider-info package.Marek Belisko
[Peter: minor whitespace fixes] Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28iptables: bump to version 1.4.14Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28conntrack-tools: bump to version 1.2.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28libnetfilter_cttimeout: new packageGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28libmnl: bump to version 1.0.3Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-28busybox: bump 1.20.x versionPeter Korsgaard
Bugfix release. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-27netsnmp: fix build with high BR2_JLEVEL settingsPeter Korsgaard
The netsnmp build system is not robust against parallel builds. Fixes http://autobuild.buildroot.net/results/5bb827425ed07617a47a0c0d942a3c6c423fc02f Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-25midori: bump version to 0.4.6Simon Dawson
[Peter: sort/indent dependencies] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-25mtd: fix build when no sub options are enabledPeter Korsgaard
mtd-utils with no sub options enabled should be a noop, but we end up calling make with the default target (E.G. to build everything), breaking the build if zlib/lzo aren't available. Fixes http://autobuild.buildroot.net/results/a0781db394792e6d3831c1884fc4bb3525fedb2e/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-24hiawatha: bump to version 8.3Gustavo Zacarias
Bump hiawatha to version 8.3 - adds reverse proxy functionality. Also define WORK_DIR to /var/lib/hiawatha instead of the uncommon /usr/var/lib/hiawatha - missed it in the last path fixes. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23bind: bump to version 9.6-ESV-R7Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23mpg123: bump to version 1.14.2Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23audiofile: bump to version 0.3.4Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23libidn: bump to version 1.25Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23nbd: bump to version 3.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23ipset: bump to version 6.12.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23libnetfilter-conntrack: bump to version 1.0.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23pkg-download.mk: Add missing argument when downloading from primary mirror (scp)Thomas De Schampheleire
This problem was already fixed by Markos Chandras for wget, but not for scp. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23wpa_supplicant: enable interworking and enhanceGustavo Zacarias
Enable IEEE 802.11u (interworking). Also enable new supported EAP methods. Switch from echo to sed where possible for a cleaner .config output Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23hostapd: enable interworking and enhanceGustavo Zacarias
Enable IEEE 802.11u (interworking). Also enable new supported EAP methods. Switch from echo to sed where possible for a cleaner .config output Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-23libmpeg2: move ARM patch to the correct directoryGustavo Zacarias
The patch was added after the multimedia category reorganization so it became unreachable. Move it to the final libmpeg2 package directory. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-22bison: m4 needs MMUPeter Korsgaard
Fixes http://autobuild.buildroot.net/results/0bb659881ed6a01745f596f00da9acbef02a4c31/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-22iproute2: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-22oprofile: fix target-install for archs without performance counters supportPeter Korsgaard
These archs can still use the timer mode. Fixes http://autobuild.buildroot.org/results/2627ee17e1f1a58520e01c52af365998f648bbc5/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-22ntfs-3g: fix build with encryption supportPeter Korsgaard
Fixes http://autobuild.buildroot.org/results/4baa45ca1f4804be1a76a69bb8158c6a91d96d6b/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-22gnuchess: needs threadsPeter Korsgaard
Fixes http://autobuild.buildroot.org/results/63a7cf35ecef02f30641a37d602f7cc55d59f543/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-21php: security bump to version 5.3.13 and enhanceGustavo Zacarias
Bump php to version 5.3.13 to solve multiple CVEs. The 5.2 series is no longer maintained. The PCRE and SPL extensions are no longer optional. Reflection is no longer optional either. Ncurses was spun out to PECL. Add a ton of new extensions and give more granular options on others (like the libxml2-based ones). The FastCGI option no longer exists, it's always on as long as CGI is. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>