buildroot.git
10 years agodocs: responsive web design website
Angelo Compagnucci [Fri, 31 Oct 2014 15:50:51 +0000 (16:50 +0100)]
docs: responsive web design website

This patch migrate the layout to a responsive web design one.

* Fixing the layout of all pages to be fully responsive
* Adding panels around "Recent commints" and "Recent discussion"
* Adding fonts for glyphs in buttons

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agodocs: responsive web design website - upgrading bootstrap/jquery
Angelo Compagnucci [Fri, 31 Oct 2014 15:50:50 +0000 (16:50 +0100)]
docs: responsive web design website - upgrading bootstrap/jquery

* Upgrading to Bootstrap 3.2.0
* Upgrading to Jquery 1.11.1
* Removing older files

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/dovecot-pigeonhole: bump version to 0.4.5
Bernd Kuhls [Fri, 31 Oct 2014 06:17:41 +0000 (07:17 +0100)]
package/dovecot-pigeonhole: bump version to 0.4.5

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibpcap: omit -rpath from pcap-config
Baruch Siach [Fri, 31 Oct 2014 06:59:28 +0000 (08:59 +0200)]
libpcap: omit -rpath from pcap-config

For target processes the libraries are always in their usual location under
/lib and /usr/lib. It doesn't make sense to add RPATH tag pointing to host
build directory to programs using libpcap. This commit changes V_RPATH_OPT in
pcap-config to remove -rpath from its output.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoconfigs/qemu: update to the latest kernel/headers version
Gustavo Zacarias [Fri, 31 Oct 2014 10:36:35 +0000 (07:36 -0300)]
configs/qemu: update to the latest kernel/headers version

Also drop the sparc memset patch, it's upstream as of 3.17.2.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomp4v2: fix help2man-related build failure
Peter Korsgaard [Fri, 31 Oct 2014 14:54:58 +0000 (15:54 +0100)]
mp4v2: fix help2man-related build failure

Fixes:
http://autobuild.buildroot.net/results/62a/62af25aace6b17492135e3567f3fa14cc05fef75/
http://autobuild.buildroot.net/results/043/043e23a8a1575f249d4654e2ce5f4a24e29d080a/
http://autobuild.buildroot.net/results/c6f/c6f1f7eef34025f736e35b5714029f5190bcb648/
http://autobuild.buildroot.net/results/bc4/bc4beb415491fdfb65639c0d51ae75a1789c68dd/

And many others.

Help2man expects to be able to run utilities on the build machine to grab
--help output which doesn't work when cross compiling, so disable it.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomp4v2: disable CFLAGS mangling
Peter Korsgaard [Fri, 31 Oct 2014 14:13:51 +0000 (15:13 +0100)]
mp4v2: disable CFLAGS mangling

Fixes
http://autobuild.buildroot.net/results/235/235cade242ce3bcd583c57575a3612b811fa6e89/
http://autobuild.buildroot.net/results/529/5298118b20f5e0c4c38104411d979e1c17cca04b/
http://autobuild.buildroot.net/results/773/773c53c9c7d422b319dc0d9196426cae06d81c14/
http://autobuild.buildroot.net/results/41e/41eb1936c3afe329d1321f5a0f071db098b2fb37/

And many others.

When mp4v2 is configured with --disable-debug (which the infrastructure will
pass unless BR2_ENABLE_DEBUG is enabled) then the configure script tries to
filter out any -g* debugging flags with the following logic:

if test "$enable_debug" = "no"; then
    changequote(<<,>>)dnl
    if test "$GCC" = "yes"; then
        CFLAGS=`echo "$CFLAGS" | sed -e 's/-g[^ ]*[ ]*//' -e 's/^ //' -e 's/ $//'`
    fi
    if test "$GXX" = "yes"; then
        CXXFLAGS=`echo "$CXXFLAGS" | sed -e 's/-g[^ ]*[ ]*//' -e 's/^ //' -e 's/ $//'`
    fi
    changequote([,])dnl
fi

This logic is unfortunately buggy as it also strips up arguments like
-mfloat-gprs=double breaking the build when the powerpc SPE variants are
-used.

Instead of fixing the sed invocation we can simply pass --enable-debug to
configure as the debugging flag is not used for anything else.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonuttcp: add tarball hash
Peter Korsgaard [Fri, 31 Oct 2014 13:22:34 +0000 (14:22 +0100)]
nuttcp: add tarball hash

Fixes (eventually, once the bad downloads are deleted):
http://autobuild.buildroot.net/results/055/0556ffec533af65392c24f7c74092d3282245c95/
http://autobuild.buildroot.net/results/481/4810de845bac9ec28cba86379de0f8c554038ea0/
http://autobuild.buildroot.net/results/384/384b627a104793f460072aa43381a8c2d703a693/
http://autobuild.buildroot.net/results/2f8/2f8574a5bc692e3dfb803b420fb6ae2dc420cfed/

And many others.

There's no upstream hash, but this matches E.G. Freebsd:

http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2009-August/170685.html

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoavahi: fix avahi-ui build with libgtk3
Peter Korsgaard [Fri, 31 Oct 2014 11:50:49 +0000 (12:50 +0100)]
avahi: fix avahi-ui build with libgtk3

Fixes:
http://autobuild.buildroot.net/results/daa/daad247db16818f25ab33402e26e27257defbe13/
http://autobuild.buildroot.net/results/720/720e2c8a5eab8b47d2510fe03b4a90ec8beafc17/
http://autobuild.buildroot.net/results/02b/02b4ab9ee07707ee4a4d4ea2b9c67bee91b1392d/
http://autobuild.buildroot.net/results/819/81914317ce82dc1321484d8c2b65647f92aa6929/

And many others.

avahi-ui uses deprecated gtk functionality, but explicitly requests to
disable the deprecated API support in gtk - Breaking the build when building
against libgtk3.

Patch is taken from Fedora:
https://bugzilla.redhat.com/show_bug.cgi?id=1001676

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonss-mdns: unbreak after e1eba3d97 (system/skeleton: make nsswitch install conditional)
Peter Korsgaard [Fri, 31 Oct 2014 10:31:05 +0000 (11:31 +0100)]
nss-mdns: unbreak after e1eba3d97 (system/skeleton: make nsswitch install conditional)

Fixes http://autobuild.buildroot.net/results/481/4819cacd4b7015ef2bfaaf1b3fc9ba33f9194315/

After commit e1eba3d97, the skeleton no longer has a /etc/nsswitch.conf by
the time nss-mdns gets built, so the sed invocation fails.

Work around it by installing the glibc one early if not already available
in the skeleton.

If we want to do further modification of nsswitch.conf in the future (for
E.G.  samba), then we should probably introduce some hooks to
GLIBC_COPY_NSSWITCH_FILE instead.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopixman: unbreak on nios codesourcery 2014.05
Peter Korsgaard [Fri, 31 Oct 2014 10:12:05 +0000 (11:12 +0100)]
pixman: unbreak on nios codesourcery 2014.05

Fixes
http://autobuild.buildroot.net/results/ec3/ec31257a66583ca69bbad5ecfedb4c25b85268ee/
http://autobuild.buildroot.net/results/b24/b241ef7b7283efd92028d98355f268d93a12ffdd/
http://autobuild.buildroot.net/results/36c/36cc9386747854b632ec4e22bed8f32a0e2eec32/
http://autobuild.buildroot.net/results/b8a/b8a2de871eec249d03744fcd4ea6b5d3d1b01bd5/

And many others.

The toolchain gets confused about TLS access through the GOT (PIC), so
disable TLS support in pixman.

The error from the assembler is:
movhi r4, %got_hiadj(%tls_ldo(fast_path_cache))
{standard input}:172: Error: bad expression

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agompd: add jack output support option
Pieter De Gendt [Fri, 8 Aug 2014 13:11:32 +0000 (15:11 +0200)]
mpd: add jack output support option

[Thomas: reworked patch on top of the latest master.]

Signed-off-by: Pieter De Gendt <pieter.degendt@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agomongrel2: Add comments to avoid use of github call
Maxime Hadjinlian [Sun, 12 Oct 2014 19:39:18 +0000 (21:39 +0200)]
mongrel2: Add comments to avoid use of github call

As the comment says, we don't want to uses the github helper, as we
would end up with a generated tarball, which is not the same one as the
one linked with the releases.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolame: Disable debug symbols for Aarch64 and MIPS
Vicente Olivert Riera [Thu, 30 Oct 2014 10:05:41 +0000 (10:05 +0000)]
lame: Disable debug symbols for Aarch64 and MIPS

Building lame with debug symbols needs the following macros to be
defined: _FPU_MASK_IM, _FPU_MASK_ZM, _FPU_MASK_OM.
So, if BR2_ENABLE_DEBUG is selected, then we have to force lame to be
built without debug symbols for Aarch64 and MIPS because these
architectures don't have those macros defined.

Fixes:
http://autobuild.buildroot.net/results/721/721dff299b204b1d3ccc0846009eb17faa2d29eb/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/exim: Add support for SMTP AUTH through Dovecot
Bernd Kuhls [Wed, 29 Oct 2014 20:14:06 +0000 (21:14 +0100)]
package/exim: Add support for SMTP AUTH through Dovecot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/dovecot-pigeonhole: New package
Bernd Kuhls [Wed, 29 Oct 2014 20:14:05 +0000 (21:14 +0100)]
package/dovecot-pigeonhole: New package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/dovecot: New package
Bernd Kuhls [Wed, 29 Oct 2014 20:14:04 +0000 (21:14 +0100)]
package/dovecot: New package

[Thomas:
 - slightly adjust the prompt of options in the Config.in file
 - fix license: it's just LGPLv2.1, no exceptions. Parts of the code
   are under public domain, or under the MIT license, but the
   combination is under LGPLv2.1.
 - rewrap one comment in the .mk file.]

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agotcpdump: use libpcap shared library
Baruch Siach [Wed, 29 Oct 2014 12:20:21 +0000 (14:20 +0200)]
tcpdump: use libpcap shared library

Currently the tcpdump configure script finds libpcap.a in
output/build/libpcap-[version]. This check is hard coded in aclocal.m4. Add a
patch to optionally ignore local libpcap so that the system shared library
version is found instead. This reduces the tcpdump binary size in a few 100KB.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoshairport-sync: needs toolchain with NPTL
Baruch Siach [Wed, 29 Oct 2014 13:33:40 +0000 (15:33 +0200)]
shairport-sync: needs toolchain with NPTL

Also remove the comment attributing threads dependency to alsa-lib, since
shairport-sync itself uses pthreads.

Fixes:
http://autobuild.buildroot.net/results/58e/58eafd2499919a45bfb5a2becc233d3678deedde/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/upmpdcli: add hash file
Jörg Krause [Thu, 30 Oct 2014 09:36:52 +0000 (10:36 +0100)]
package/upmpdcli: add hash file

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/libupnpp: add hash file
Jörg Krause [Thu, 30 Oct 2014 09:36:51 +0000 (10:36 +0100)]
package/libupnpp: add hash file

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agogcc: remove version 4.4.x
Andreas Larsson [Thu, 30 Oct 2014 08:29:36 +0000 (09:29 +0100)]
gcc: remove version 4.4.x

That gcc series is old and is not used as the default version for
any of the architectures we support, so this commit gets rid of it.

[Thomas: move the Config.in.legacy option at the right location.]

Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoarch: sparc: Add leon3 cpu type and remove sparc{s,h}fleon{,v8}
Andreas Larsson [Thu, 30 Oct 2014 08:29:35 +0000 (09:29 +0100)]
arch: sparc: Add leon3 cpu type and remove sparc{s,h}fleon{,v8}

There is support for -mcpu=leon3 from gcc 4.8.3. Use this for LEON systems
instead of the non-mainline targets sparcsfleon, sparchfleon, sparcsfleonv8, and
sparchfleonv8.

[Thomas: add Config.in.legacy handling for the removed options.]

Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/shairport-sync: bump to version 2.1.8
Jörg Krause [Thu, 30 Oct 2014 09:03:09 +0000 (10:03 +0100)]
package/shairport-sync: bump to version 2.1.8

Bump to version 2.1.8:
* remove comment about COPYING (fixed upstream)
* adapt ssl configure option for openssl and polarssl

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/nodejs: security bump to version 0.10.33
Jörg Krause [Thu, 30 Oct 2014 09:07:05 +0000 (10:07 +0100)]
package/nodejs: security bump to version 0.10.33

This release handles the recent POODLE vulnerability [CVE-2014-3566] by
disabling SSLv2/SSLv3 by default.

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agogcc: bump 4.9.x series to version 4.9.2
Gustavo Zacarias [Thu, 30 Oct 2014 11:48:07 +0000 (08:48 -0300)]
gcc: bump 4.9.x series to version 4.9.2

Drop PR60102 patch which is now upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystemd: downgrade kernel headers minimum version to 3.7
Christophe Vu-Brugier [Thu, 30 Oct 2014 10:54:13 +0000 (11:54 +0100)]
systemd: downgrade kernel headers minimum version to 3.7

The kernel headers minimum version for systemd was bumped to 3.8
(IFLA_GRE_FLOWINFO and IFLA_IPTUN_FLAGS definitions) and then to 3.10
(IFLA_VLAN_PROTOCOL definition). However, systemd since version v215
contains the following patch that defines IFLA_* constants if
needed:

  81577dc missing.h: add various network enums
  http://cgit.freedesktop.org/systemd/systemd/commit/?id=81577dc

As a consequence, this patch downgrades the kernel headers minimum
version to linux 3.7 which is required for BPF_XOR.

Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agokernel headers: remove deprecated version 3.9
Gustavo Zacarias [Thu, 30 Oct 2014 17:29:24 +0000 (14:29 -0300)]
kernel headers: remove deprecated version 3.9

Deprecate 3.9.x headers for the 2014.11 release, a year has passed.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolinux: bump default version to 3.17.2
Gustavo Zacarias [Thu, 30 Oct 2014 17:29:23 +0000 (14:29 -0300)]
linux: bump default version to 3.17.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolinux-headers: bump 3.{17, 16, 14, 12, 10}.x series
Gustavo Zacarias [Thu, 30 Oct 2014 17:29:22 +0000 (14:29 -0300)]
linux-headers: bump 3.{17, 16, 14, 12, 10}.x series

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopppd: set resolv.conf directory appropiately
Gustavo Zacarias [Mon, 20 Oct 2014 21:32:32 +0000 (18:32 -0300)]
pppd: set resolv.conf directory appropiately

/etc/ppp/resolv.conf might not be writable and it's not useful, switch
to standard /etc/resolv.conf
If users don't want to update dns lookup entries they shouldn't use the
"userpeerdns" option.

[Thomas: slightly reword the comment in the code.]

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopython-rtslib-fb: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:31 +0000 (19:45 +0100)]
python-rtslib-fb: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopython-pyusb: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:30 +0000 (19:45 +0100)]
python-pyusb: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopython-ipy: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:29 +0000 (19:45 +0100)]
python-ipy: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopython-configshell-fb: Bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:28 +0000 (19:45 +0100)]
python-configshell-fb: Bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agodhcp: add systemd service file
Eric Le Bihan [Mon, 15 Sep 2014 21:04:43 +0000 (23:04 +0200)]
dhcp: add systemd service file

Add a systemd service file to start dhcpd.

The network interfaces to listen on can be set via the variable
INTERFACES in /etc/default/dhcpd.conf. Example:

  INTERFACES="eth0 eth1"

Also install a tmpfiles.d file to create /var/lib/dhcp/dhcpd.leases
(needed at dhcpd start-up).

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agogpu-viv-bin-mx6q: provide libopenvg
Jérôme Pouiller [Mon, 13 Oct 2014 11:10:12 +0000 (13:10 +0200)]
gpu-viv-bin-mx6q: provide libopenvg

Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agobinutils: now depends on wchar
Alexey Brodkin [Tue, 28 Oct 2014 22:19:18 +0000 (23:19 +0100)]
binutils: now depends on wchar

binutils starting at least from 2.23 when build for target require
uClibc configured with UCLIBC_HAS_WCHAR otherwise:

libtool: link: [...] -o as-new [...]
read.o: In function `read_symbol_name':
read.c:(.text+0x3634): undefined reference to `mbstowcs'
collect2: error: ld returned 1 exit status

because "mbstowcs" is not available in the C library.

Even though we're not yet using 2.23.2 as the default version, we will
probably do it in the near future, so this commit doesn't bother with
making the wchar dependency version-specific, and applies it to the
binutils package as a whole.

Fixes bug #6218

[Thomas:
 - more details in the commit log.
 - add comment about the wchar dependency
 - propagate the dependency to dropwatch (and fix a mistake in the
   architecture dependencies of the comment)
 - propagate the dependency to oprofile.]

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Anton Kolesov <akolesov@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
10 years agobinutils: bump the default target version of binutils
Thomas Petazzoni [Tue, 28 Oct 2014 22:19:17 +0000 (23:19 +0100)]
binutils: bump the default target version of binutils

When binutils for the host is not built (which is the case when an
external toolchain is used), the version of binutils used is 2.21,
which is quite old. Since we have bumped to 2.22 as the default
version for the host binutils, let's do the same for the target
binutils.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
10 years agobinutils: remove dead code
Thomas Petazzoni [Tue, 28 Oct 2014 22:19:16 +0000 (23:19 +0100)]
binutils: remove dead code

We no longer have any way of using version 2.23, and all the other
versions that we support are available as .tar.bz2. Therefore we can
remove the special case related to the 2.23 version only being
available as a .tar.gz archive.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
10 years agocppunit: new package
Sebastien Bourdelin [Wed, 29 Oct 2014 00:14:49 +0000 (20:14 -0400)]
cppunit: new package

CppUnit is the C++ port of the famous JUnit framework for unit testing.
Test output is in XML or text format for automatic testing and GUI
based for supervised tests.

http://www.freedesktop.org/wiki/Software/cppunit/

[Thomas:
  - change license to LGPLv2.1, since there is no indication that the
    "or later" option is used.
  - slightly rewrap text in Config.in file.]

Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agomxml: bump to 2.9
Yegor Yefremov [Wed, 29 Oct 2014 20:43:30 +0000 (21:43 +0100)]
mxml: bump to 2.9

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agonuttcp: update download link and homepage
Baruch Siach [Wed, 29 Oct 2014 13:02:52 +0000 (15:02 +0200)]
nuttcp: update download link and homepage

Fixes:
http://autobuild.buildroot.net/results/9b3/9b335d93fd1dba87a5c30923718e137f28b46867/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoopenvpn: bump to version 2.3.5
Gustavo Zacarias [Wed, 29 Oct 2014 16:02:21 +0000 (13:02 -0300)]
openvpn: bump to version 2.3.5

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agocryptsetup: bump to version 1.6.6
Gustavo Zacarias [Wed, 29 Oct 2014 16:01:35 +0000 (13:01 -0300)]
cryptsetup: bump to version 1.6.6

Drop upstream patch, add hash file, switch to kernel.org mirror.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolvm2: bump to version 2.02.111
Gustavo Zacarias [Wed, 29 Oct 2014 16:01:34 +0000 (13:01 -0300)]
lvm2: bump to version 2.02.111

And add hash file.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agofix minor typo in kexec description
Zoltan Gyarmati [Wed, 29 Oct 2014 13:56:40 +0000 (14:56 +0100)]
fix minor typo in kexec description

Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/sqlite: bump version to 3.8.7.1
Bernd Kuhls [Wed, 29 Oct 2014 19:51:43 +0000 (20:51 +0100)]
package/sqlite: bump version to 3.8.7.1

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolibenca: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:20 +0000 (19:45 +0100)]
libenca: bump version

Remove all the patches as they were accepted upstream.

[Thomas: drop AUTORECONF = YES, as suggested by Bernd.]

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolttng-modules: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:51 +0000 (19:45 +0100)]
lttng-modules: bump version

Add a hash file

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolttng-tools: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:50 +0000 (19:45 +0100)]
lttng-tools: bump version

add hash file

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolttng-libust: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:49 +0000 (19:45 +0100)]
lttng-libust: bump version

Add hash file

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolttng-babeltrace: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:48 +0000 (19:45 +0100)]
lttng-babeltrace: bump version

Add hash file

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agotvheadend: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:42 +0000 (19:45 +0100)]
tvheadend: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/tvheadend: Bump version to current git master
Bernd Kuhls [Tue, 14 Oct 2014 18:28:28 +0000 (20:28 +0200)]
package/tvheadend: Bump version to current git master

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/tvheadend: Enable bundled build
Bernd Kuhls [Tue, 14 Oct 2014 18:28:27 +0000 (20:28 +0200)]
package/tvheadend: Enable bundled build

host-python is needed to create a bundled version of the tvheadend binary which
includes all files used by the web UI.

Having host-python alone as dependency is not enough, we need to add
--enable-bundle to enable this functionality.

Also remove the now bundled webinterface files from /usr/share/tvheadend/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/tvheadend: Add support for libdvbcsa
Bernd Kuhls [Tue, 14 Oct 2014 18:28:26 +0000 (20:28 +0200)]
package/tvheadend: Add support for libdvbcsa

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/tvheadend: Needs iconv()
Bernd Kuhls [Tue, 14 Oct 2014 18:28:25 +0000 (20:28 +0200)]
package/tvheadend: Needs iconv()

Fixes
CC              src/intlconv.o
src/intlconv.c:1:19: fatal error: iconv.h: No such file or directory
 #include <iconv.h>

with this defconfig

BR2_arm=y
BR2_cortex_a15=y
BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y
BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_TVHEADEND=y

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/ffmpeg: Enable support for libavresample
Bernd Kuhls [Tue, 14 Oct 2014 18:28:24 +0000 (20:28 +0200)]
package/ffmpeg: Enable support for libavresample

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop pcmcia bits
Gustavo Zacarias [Tue, 28 Oct 2014 18:02:34 +0000 (15:02 -0300)]
system/skeleton: drop pcmcia bits

They're obsolete and the package was removed way back in 2010.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolibgtk3: fix undefined reference to get_xkb()
Eric Le Bihan [Mon, 27 Oct 2014 12:56:16 +0000 (13:56 +0100)]
libgtk3: fix undefined reference to get_xkb()

When configuring Gtk+ with --disable-xkb, the build fails because of an
undefined reference to get_xkb().

This issue as been reported upstream [1]. This patch fixes it.

Fixes:

http://autobuild.buildroot.net/results/513/513d79b97bb8ad0e5cd431c47c706b5ec87a9882/
http://autobuild.buildroot.net/results/0c3/0c3f1df92481852622445478d2239371fc818f41/

[1] https://bugzilla.gnome.org/show_bug.cgi?id=739070

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoipset: Don't include host headers
Baruch Siach [Mon, 27 Oct 2014 22:33:26 +0000 (00:33 +0200)]
ipset: Don't include host headers

Add a patch removing /usr/local/include from the include path.

Fixes:
http://autobuild.buildroot.net/results/4f5/4f55c2415281c6204500efe28fe9e24c8ef73863/

Technically speaking this autobuild failure has already been fixes when
-Werror was removed in commit a923b44112aa3 (ipset: add patch to fix
--enable-debug build). But the warning in this case indicates a real problem
that needs to be fixed by itself.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoschifra: fix build of examples and add hash
Arnout Vandecappelle [Tue, 28 Oct 2014 10:17:41 +0000 (11:17 +0100)]
schifra: fix build of examples and add hash

The OPTIONS argument passed to make had a redundant -o option, leading
to:

g++ -pipe -Os   -o -o schifra_reed_solomon_speed_evaluation schifra_reed_solomon_speed_evaluation.cpp -lstdc++ -lm
arm-linux-musleabi-g++: error: schifra_reed_solomon_speed_evaluation: No such file or directory

Fixes:
http://autobuild.buildroot.net/results/2143b4f6f22f50ccb4af36732cc7d9304daa3ff9/

This error didn't occur before because upstream has silently updated
the tarball. To protect against this in the future, a hash is added as
well.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoboost: ignore site config
Gustavo Zacarias [Tue, 28 Oct 2014 10:49:11 +0000 (07:49 -0300)]
boost: ignore site config

It can lead to build failures if you've got boost installed in the host,
like this:
http://stackoverflow.com/questions/23013433/how-to-install-modular-boost

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agompd: add explicit upnp support option
Gustavo Zacarias [Tue, 28 Oct 2014 12:48:08 +0000 (09:48 -0300)]
mpd: add explicit upnp support option

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agompd: fix upnp build failure
Gustavo Zacarias [Tue, 28 Oct 2014 12:48:07 +0000 (09:48 -0300)]
mpd: fix upnp build failure

Add patch to fix build failure:
http://autobuild.buildroot.net/results/7ff/7ff28551b9c72658eb75394e7cbd1904861f23e3/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agompd: bump to version 0.19.1
Gustavo Zacarias [Tue, 28 Oct 2014 12:48:06 +0000 (09:48 -0300)]
mpd: bump to version 0.19.1

Also add hash file.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agobluez5_utils: not for static builds
Gustavo Zacarias [Tue, 28 Oct 2014 17:02:33 +0000 (14:02 -0300)]
bluez5_utils: not for static builds

Disable for static builds, it uses dlfcn. Fixes:
http://autobuild.buildroot.net/results/7cd/7cd87c9e9b8b41ee01413050e554b5422d207e70/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agotrinity: enable only for supported architectures
Vicente Olivert Riera [Tue, 28 Oct 2014 17:10:22 +0000 (17:10 +0000)]
trinity: enable only for supported architectures

This package only has support for some architectures which are listed in
the project website: http://codemonkey.org.uk/projects/trinity/

We enable this package only for those supported architectures which are
also supported in Buildroot.

Fixes:
http://autobuild.buildroot.net/results/ea7/ea788f1f0ed5ee4e9b1bf0c8a0d1304e7467dc77/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoRevert "package/libcap: Fix build error with kernel headers < 3.6"
Thomas Petazzoni [Tue, 28 Oct 2014 10:58:58 +0000 (11:58 +0100)]
Revert "package/libcap: Fix build error with kernel headers < 3.6"

This reverts commit a759931c9b0cb4337dc30fd35d03ce123271c5a4.

10 years agopackage/libdvbcsa: New package
Bernd Kuhls [Tue, 14 Oct 2014 18:28:23 +0000 (20:28 +0200)]
package/libdvbcsa: New package

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: fix zeroconf support
Jörg Krause [Thu, 16 Oct 2014 22:29:03 +0000 (00:29 +0200)]
package/mpd: fix zeroconf support

Add a config option to explicitly enable Avahi support in MPD.

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: enable support for dsd
Jörg Krause [Thu, 16 Oct 2014 22:29:02 +0000 (00:29 +0200)]
package/mpd: enable support for dsd

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: enable support for libnfs
Jörg Krause [Thu, 16 Oct 2014 22:29:01 +0000 (00:29 +0200)]
package/mpd: enable support for libnfs

[Thomas: add missing comment for the toolchain dependency.]

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: enable support for libsmbclient
Jörg Krause [Thu, 16 Oct 2014 22:29:00 +0000 (00:29 +0200)]
package/mpd: enable support for libsmbclient

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: enable support for libsoxr
Jörg Krause [Thu, 16 Oct 2014 22:28:59 +0000 (00:28 +0200)]
package/mpd: enable support for libsoxr

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: sort plugins alphabetically in mpd.mk
Jörg Krause [Thu, 16 Oct 2014 22:28:58 +0000 (00:28 +0200)]
package/mpd: sort plugins alphabetically in mpd.mk

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: sort plugins by type in Config.in
Jörg Krause [Thu, 16 Oct 2014 22:28:57 +0000 (00:28 +0200)]
package/mpd: sort plugins by type in Config.in

* sort plugins by type
* fix indentation of config symbols help text

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopackage/mpd: bump to version 0.19
Jörg Krause [Thu, 16 Oct 2014 22:28:56 +0000 (00:28 +0200)]
package/mpd: bump to version 0.19

* Bump to version 0.19
* Add boost as dependency
* Add support for libicu

Signed-off-by: Jörg Krause <jkrause@posteo.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoruby: security bump to version 2.1.4
Gustavo Zacarias [Mon, 27 Oct 2014 21:13:41 +0000 (18:13 -0300)]
ruby: security bump to version 2.1.4

Fixes:
CVE-2014-8080 - Denial of service XML expansion

And change default ext/openssl settings WRT CVE-2014-3566.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agolibunistring: move at the right location in menuconfig
Thomas Petazzoni [Mon, 27 Oct 2014 21:39:36 +0000 (22:39 +0100)]
libunistring: move at the right location in menuconfig

It should be in "Libraries" -> "Text" instead of "Libraries" ->
"Other", and also entries should be sorted alphabetically.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoimagemagick: bump to version 6.8.9-9
Gustavo Zacarias [Mon, 27 Oct 2014 12:41:57 +0000 (09:41 -0300)]
imagemagick: bump to version 6.8.9-9

Add hash file.
And drop autoreconf/patch, it's is finally upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agotargetcli-fb: allow to build with Python 3
Christophe Vu-Brugier [Mon, 27 Oct 2014 09:26:11 +0000 (10:26 +0100)]
targetcli-fb: allow to build with Python 3

Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop lp user from shadow
Gustavo Zacarias [Mon, 27 Oct 2014 18:19:01 +0000 (15:19 -0300)]
system/skeleton: drop lp user from shadow

It has no counterpart in passwd so it's basically a NOP.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop shutdown user from shadow
Gustavo Zacarias [Mon, 27 Oct 2014 18:19:00 +0000 (15:19 -0300)]
system/skeleton: drop shutdown user from shadow

It has no counterpart in passwd so it's basically a NOP.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop adm user from shadow
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:59 +0000 (15:18 -0300)]
system/skeleton: drop adm user from shadow

It has no counterpart in passwd so it's basically a NOP.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop valid shell from non-login users
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:58 +0000 (15:18 -0300)]
system/skeleton: drop valid shell from non-login users

Non-login users shouldn't have a valid shell so drop it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop proxy user
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:57 +0000 (15:18 -0300)]
system/skeleton: drop proxy user

AFAIK no package uses it and even if it did it would belong there.
And it's not a standard user either.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: drop backup user
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:56 +0000 (15:18 -0300)]
system/skeleton: drop backup user

AFAIK no package uses it and even if it did it would belong there.
And it's not a standard user either.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agoopenssh: drop user from skeleton
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:55 +0000 (15:18 -0300)]
openssh: drop user from skeleton

The sshd privilege drop user doesn't belong in the skeleton, it's
exclusively used by OpenSSH.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agodbus: drop user/group from skeleton
Gustavo Zacarias [Mon, 27 Oct 2014 18:18:54 +0000 (15:18 -0300)]
dbus: drop user/group from skeleton

It belongs to the package.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosystem/skeleton: remove haldaemon
Gustavo Zacarias [Mon, 27 Oct 2014 17:17:28 +0000 (14:17 -0300)]
system/skeleton: remove haldaemon

We dropped the hal package quite some time ago, and it's not even a
properly created user.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Acked-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agowget: bump to version 1.16
Gustavo Zacarias [Mon, 27 Oct 2014 13:00:08 +0000 (10:00 -0300)]
wget: bump to version 1.16

Add hash file.
And drop autoreconf/gettextize/patch, it's upstream now.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopolarssl: disable assembly for more scenarios
Gustavo Zacarias [Mon, 27 Oct 2014 14:07:18 +0000 (11:07 -0300)]
polarssl: disable assembly for more scenarios

Disable assembly optimizations for:
Microblaze in general (previously a patch).
ARM with debugging in Thumb1/2 mode. This one fixes:
http://autobuild.buildroot.net/results/31e/31e8c4e29d51039cd5d213c2fe176a9cc39879da/

Do so in a nicer way with a one-liner sed and drop the patch.

And rename patches around, numbering was off.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agopolarssl: security bump to version 1.2.12
Gustavo Zacarias [Mon, 27 Oct 2014 14:07:17 +0000 (11:07 -0300)]
polarssl: security bump to version 1.2.12

Fixes several memory leaks.
No assigned CVE or Polar-SA yet.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agosubversion: needs sqlite and pkg-config
Peter Korsgaard [Mon, 27 Oct 2014 16:39:02 +0000 (17:39 +0100)]
subversion: needs sqlite and pkg-config

Fixes:
http://autobuild.buildroot.net/results/de2/de243c429c1e443efdbba82a860dbb7a03d5b746/
http://autobuild.buildroot.net/results/40c/40ce377893789883503deaa57912b87d2e0192e8/
http://autobuild.buildroot.net/results/134/13449cd77fbbd1c2b21d04b1fc866a086d915353/
http://autobuild.buildroot.net/results/e3f/e3fc33177eef955830a7be68e7b23503fd1d9ebe/
and others.

Also add the missing 'select' statements for apr, expat and zlib to match
the .mk file.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agotrinity: Bump version to fix a PowerPC build failure
Vicente Olivert Riera [Mon, 27 Oct 2014 16:11:27 +0000 (16:11 +0000)]
trinity: Bump version to fix a PowerPC build failure

Some PowerPC toolchains have old Linux headers which don't define the
KVM_CREATE_SPAPR_TCE and KVM_ALLOCATE_RMA macros. To workaround this
problem we enclose the lines which use these macros into ifdef blocks.

This fix has been merged upstream so we bump the version to fix the
problem in Buildroot as well.

Fixes:
http://autobuild.buildroot.net/results/3a4/3a4e7e6077cd4bbbcb8fe398e0938ad228306d2d/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 years agojsmin: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:17 +0000 (19:45 +0100)]
jsmin: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agojson-javascript: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:16 +0000 (19:45 +0100)]
json-javascript: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agojquery-keyboard: bump version
Maxime Hadjinlian [Sun, 26 Oct 2014 18:45:15 +0000 (19:45 +0100)]
jquery-keyboard: bump version

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>