Commit graph

791 commits

Author SHA1 Message Date
Carlos Miguel Ferreira
36e0d6664c boost: Update 6
Minor fixes:
 - CoRoutine2 selector requires that a GCC v5 compiler or better is selected
   - coroutine2 requires C++14
 - The Makefile was not alowing the libraries to be compiled with both
   statically and shared, at the same time. There are now two seperate options,
   allowing to select which version is wanted.
 - The Makefile was also not allowing to compile both single thread and multi-
   thread versions. Again, two seperate options now exist.
 - There is also the option to build another set of libraries with debug support
   which is good for development.
 - These options are important for those who whish to build an OpenWRT SDK.

Signed-off-by: Carlos M. Ferreira <carlosmf.pt@gmail.com>
2015-11-29 00:49:25 +00:00
Ted Hess
40c040abd4 libshout: Fix build/configure errors
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-28 15:09:02 -05:00
Ted Hess
9624739946 Merge pull request #1973 from thess/libshout-work
Make 2 variants for libshout. Update oggfwd to use full variant.
2015-11-25 09:04:16 -05:00
Nikos Mavrogiannopoulos
f90f6251d5 gnutls: updated to 3.4.7
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-11-25 00:27:38 +01:00
Nikos Mavrogiannopoulos
7730977135 Merge pull request #2015 from ClaymorePT/p11_kit_1
p11-kit: Version update
2015-11-25 00:33:15 +02:00
Hannu Nyman
e44e0e3736 Merge pull request #1961 from hnyman/gnome
libgee, grilo, grilo-plugins: use GNOME alias to fix downloads in buildbot
2015-11-24 21:16:11 +02:00
Jo-Philipp Wich
c7ddd3140d Merge pull request #2008 from ollie27/libpngupdate
libpng: update to 1.2.54
2015-11-24 16:17:31 +01:00
Hannu Nyman
7b78ed456e libgee, grilo, grilo-plugins: use GNOME alias to fix downloads in buildbot
Switch grilo, grilo-plugins and libgee to use the @GNOME alias for
source download in order to fix download problems in buildbot.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-11-24 12:44:59 +02:00
Carlos Miguel Ferreira
869c22565c p11-kit: Version update
Just a regular version update
- Package gnutls requires the 0.23.1 to compile.

Signed-off-by: Carlos M. Ferreira <carlosmf.pt@gmail.com>
2015-11-24 02:15:12 +00:00
Ted Hess
1933a7aa3d boost: Updates for python builds and library packages
Minor Fixes:
     - Fixed bug related to Python 3.5 support. [1]
       - "--without-python3" was being issued when it should only be
         "--without-python".
       - "--without-python" is only issued in the event of neither Python 3.5
         support neither Python 2.7 support is requested.
     - Fixed an old bug related to coroutine2 support (added selector).
       - "--without-coroutin2" was not being issued, even when boost-coroutine was
         not selected. Because of that, the boost building system was compiling
         boost- coroutine and all of its dependencies.
     - Added selector for boost-graph-parallel.

     References:
     [1] - openwrt@8f7e090#commitcomment-14542816

    Signed-off-by: Carlos M. Ferreira <carlosmf.pt@gmail.com>
    Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-23 13:56:26 -05:00
Peter Wagner
e9e5ffaed7 libsndfile: update to 1.0.26
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-11-22 20:07:46 +01:00
Oliver Middleton
eb2777d17e libpng: update to 1.2.54
Includes fixes for CVE-2015-7981 and CVE-2015-8126.

Signed-off-by: Oliver Middleton <olliemail27@gmail.com>
2015-11-22 15:18:51 +00:00
Hauke Mehrtens
1ad9005e98 libffi: fix host build
My last commit c1137b6db7 "libffi: fix
libffi.pc file" broke the host build as that still placed the header
files to /usr/lib/libffi-3.0.13/include/ and the libffi.pc file pointed
to /usr/include/ . With this patch I took the patch from Debian and
also made the install process to put the header files to /usr/include
in all situations.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-11-21 12:37:34 +01:00
Hauke Mehrtens
10311faf44 Merge pull request #1989 from hauke/libffi
libffi: fix libffi.pc file
2015-11-21 00:43:07 +01:00
Hauke Mehrtens
1dbf398d5c Merge pull request #1990 from hauke/libgpg-error
libgpg-error: fix build with gcc-5
2015-11-20 23:30:22 +01:00
Michael Heimpold
55421fe27b libxml2: upgrade to 2.9.3
Beside some improvements, this also fixes several CVEs, for full
list see upstream changelog at:
https://mail.gnome.org/archives/xml/2015-November/msg00012.html

The patch needed for musl was accepted upstream, so we can remove it.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2015-11-20 21:53:15 +01:00
Steven Barth
e138a2b4b0 Merge pull request #1870 from dangowrt/update-libmicrohttpd
libmicrohttpd: update to 0.9.44
2015-11-19 16:23:46 +01:00
Carlos Miguel Ferreira
8f7e09026d boost: Update 4
Major Updates
  - Added support for Python 3.5.
  - Removed the restriction for the target MPC85xx when using uclibc [1].
    - No longer required since uclibc was removed from trunk.
  - Added option to force static compilation.
  - Added option to force linking statically to the C++ standard library and compiler runtime support libraries.
  - Added option to disable multithreading support. It can be helpfull for those who wish to fully optimise their code.
    - Some boost libraries will require multithreading to be active. For those, this option is active as a requirement.

  Minor Updates
  - Added -fPIC to CFLags [2].
    - python requires independent position code when statically compiling.

  References:
  [1] - https://github.com/openwrt/packages/issues/1621
  [2] - https://github.com/openwrt/packages/issues/1938

Signed-off-by: Carlos M. Ferreira <carlosmf.pt@gmail.com>
2015-11-19 01:06:02 +00:00
Hauke Mehrtens
5dd2d24c6b libgpg-error: fix build with gcc-5
Call the cpp preprocessor with -P argument which is now needed by gcc-5.

This is a backport of this upstream commit:
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff;h=c01c8f0c4f55d76b037c7f6aa44ad25ede18d38a

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-11-18 23:40:11 +01:00
Hauke Mehrtens
c1137b6db7 libffi: fix libffi.pc file
The include dir pointed to staging_dir/target-mips_34kc+dsp_musl-1.1.11
/usr/lib/libffi-3.0.13/include which does not exists, this made glib2
fail to compile. The header files are copied to /usr/include so define
it in the libffi.pc file.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-11-18 22:52:52 +01:00
Ted Hess
a7161b8e4c libshout: Make 2 variants (with/without speex & theora)
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-15 15:16:47 -05:00
Hannu Nyman
8276f382a9 libtorrent: update to 0.13.6, disable ipv6, remove ipv6 hack
Fix libtorrent compilation by:
* Disable ipv6
* Remove the problematic patches/120-... ipv6 hack at the same time,
  as it is a 5-year old hack to fix one ipv6 problem.
* Update libtorrent to git master HEAD (0.13.6).

Libtorrent compilation has been broken due to patches/120-...
since #1181 got merged and ipv6 got enabled.
Users have seen issues like #1316 and #1804

IPv6 support in libtorrent master is not compelete.
Instead there is a separate ipv6 branch, which still needs some
cleanup before mainstream use. See discussion at
https://github.com/rakshasa/rtorrent/issues/59#issuecomment-56651538
So, it makes no sense to use ipv6 with the master branch.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-11-14 10:34:09 +02:00
Álvaro Fernández Rojas
f535396cd9 libftdi: fix cmake build issues
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2015-11-11 19:26:43 +01:00
Dov Murik
964835bccd libs/libestr: add new package (needed for net/rsyslog)
Signed-off-by: Dov Murik <dmurik@us.ibm.com>
2015-11-11 10:00:12 -05:00
Damiano Renfer
22752a668a libs/libsodium: update to 1.0.6
Signed-off-by: Damiano Renfer damiano.renfer@gmail.com
2015-11-09 20:04:24 +01:00
John Crispin
c5c8dc19be libmraa: board detection was broken after the name changed
Signed-off-by: John Crispin <blogic@openwrt.org>
2015-11-06 22:38:57 +01:00
Ted Hess
fdb927f919 Merge pull request #1917 from thess/boost-build
boost: Add ignore-site-config option to bjam
2015-11-05 13:50:41 -05:00
Karl Palsson
5ccaccf03b libwebsockets: Bump to version 1.5
Very minor changes in this release, but best to keep up.

Full changelog available at
http://git.libwebsockets.org/cgi-bin/cgit/libwebsockets/tree/changelog

Signed-off-by: Karl Palsson <karlp@remake.is>
2015-11-05 14:00:41 +00:00
Ted Hess
5becb1259e boost: Add ignore-site-config option to bjam
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-04 15:33:10 -05:00
Steven Barth
c9c7b246ad Merge pull request #1910 from dajhorn/liblz4-r131
liblz4: update to r131
2015-11-04 01:39:06 +01:00
Darik Horn
00e337755b liblz4: update to r131
From the upstream NEWS file:

  r131
  New    : Dos/DJGPP target, thanks to Louis Santillan (#114)
  Added  : Example using lz4frame library, by Zbigniew Jędrzejewski-Szmek (#118)
  Changed: xxhash symbols are modified (namespace emulation) within liblz4

  r130:
  Fixed  : incompatibility sparse mode vs console, reported by Yongwoon Cho (#105)
  Fixed  : LZ4IO exits too early when frame crc not present, reported by Yongwoon Cho (#106)
  Fixed  : incompatibility sparse mode vs append mode, reported by Takayuki Matsuoka (#110)
  Performance fix : big compression speed boost for clang (+30%)
  New    : cross-version test, by Takayuki Matsuoka

Signed-off-by: Darik Horn <dajhorn@vanadac.com>
2015-11-01 19:24:36 -05:00
Damiano Renfer
4888daa6f5 libs/libsodium: update to 1.0.5
Signed-off-by: Damiano Renfer damiano.renfer@gmail.com
2015-11-01 17:37:54 +01:00
Matthias Schiffer
25ca289e4d libuecc: update to v6
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-10-25 17:11:47 +01:00
Damiano Renfer
e073ad7ca7 libs/libsodium: update to 1.0.4
Signed-off-by: Damiano Renfer damiano.renfer@gmail.com
2015-10-24 12:07:12 +02:00
Steven Barth
6b10101b15 Merge pull request #1860 from karlp/libcoap-endian
libcoap: Pass endian flags down to target
2015-10-22 10:35:13 +02:00
Steven Barth
56c19739dc Merge pull request #1866 from MikePetullo/libgee
libgee: add new package
2015-10-22 10:34:39 +02:00
Nikos Mavrogiannopoulos
472cb4e3a8 gnutls: update to 3.4.6
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-10-22 07:33:06 +02:00
John Crispin
180999e20f libupm: add fixes for 2 sensors
Signed-off-by: John Crispin <blogic@openwrt.org>
2015-10-20 15:59:25 +02:00
John Crispin
221c1e3d03 libupm: add package
upm is a sensor library that sits ontop of libmraa. it has support for a large
number of sensors and exports bindings for node, python, ...

Signed-off-by: John Crispin <blogic@openwrt.org>
2015-10-19 12:20:11 +02:00
John Crispin
896feff364 libmraa: add mraa including mips platform code
mraa is a lowlevel io bus abstraction layer. it allows us to export bindings for
various linux io busses for node, python, ...

Signed-off-by: John Crispin <blogic@openwrt.org>
2015-10-19 12:20:11 +02:00
W. Michael Petullo
25f897ed98 libdmapsharing: update to 2.9.32
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2015-10-18 22:25:47 -04:00
W. Michael Petullo
10f280c314 libgee: add new package
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2015-10-18 22:20:29 -04:00
Daniel Golle
fc4fdf2829 libmicrohttpd: update to 0.9.44
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-10-19 00:19:07 +02:00
Karl Palsson
c4a8c4eae2 libcoap: Pass endian flags down to target
Fixes github issue #1856

Signed-off-by: Karl Palsson <karlp@tweak.net.au>
2015-10-14 17:18:08 +00:00
Steven Barth
1d853ac05a all: get rid of kmod-ipv6 dependencies
Signed-off-by: Steven Barth <steven@midlink.org>
2015-10-06 09:04:29 +02:00
Peter Wagner
c136bcbddb glib2: update to 2.44.1
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-10-04 12:58:22 +02:00
Anton Glukhov
bf45232591 libcoap: Add new package
Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com>
2015-10-01 12:34:27 +00:00
Marko Ratkaj
5b2245131b file: bump version to 5.25
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-09-27 23:44:22 +02:00
Anton Glukhov
ce7ae15a98 Canfestival library: add new package
Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com>
2015-09-26 04:50:40 +03:00
Nikos Mavrogiannopoulos
aa8a98e6ec libtasn1: updated to 4.7
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-09-24 10:07:28 +02:00
Nikos Mavrogiannopoulos
026486fc0a gnutls: updated to 3.4.5
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-09-24 10:05:27 +02:00
Nikos Mavrogiannopoulos
849a3f1cb4 radcli: updated to 1.2.3
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-09-24 09:57:37 +02:00
Felix Fietkau
4e7545ff68 libcap: fix build on non-linux systems
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2015-09-18 15:51:28 +02:00
Steven Barth
86dbea4aa2 Merge pull request #1696 from plntyk/fix_opencv
opencv: disable precompiled headers
2015-09-15 08:29:33 +02:00
Daniel Golle
d2cb285774 libextractor: fix build with full NLS support
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-09-11 07:28:22 +02:00
Daniel Golle
9ddf3ded77 libinput: update to version 1.0.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-09-07 20:02:49 +02:00
Daniel Golle
344e27c547 libevdev: update to version 1.4.4
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-09-07 19:51:13 +02:00
Steven Barth
a59d3ba39b libsigc++: bump to 2.5.4
Signed-off-by: Steven Barth <steven@midlink.org>
2015-09-07 10:17:26 +02:00
heil
29195f5b98 unixodbc: bump to version 2.3.4
Signed-off-by: heil <heil@terminal-consulting.de>
2015-09-06 23:53:35 +02:00
Jan Čermák
718f1651e0 libevent: update to 1.4.15 (fixes CVE-2014-6272)
This update fixes CVE-2014-6272. Change of source URL was needed,
because the older location does not contain the latest version.

Signed-off-by: Jan Čermák <jan.cermak@nic.cz>
2015-09-01 11:26:54 +02:00
Steven Barth
d0554e68a0 Merge pull request #1730 from kissg1988/libzdb
libzdb: musl compatibility fix
2015-08-29 08:40:49 +02:00
Gergely Kiss
f323dd3690 libzdb: musl compatibility fix
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
2015-08-29 00:55:29 +02:00
Ted Hess
27ce9f5c20 Merge pull request #1723 from thess/boost-build
boost: Fix building without hard float (fenv.h)
2015-08-27 15:14:15 -04:00
Michael Heimpold
704c15e711 Merge pull request #1714 from lynxis/libxml2_nonparallel
libxml2: disable parallel build
2015-08-27 21:12:10 +02:00
Ted Hess
fbef12c6a6 boost: Fix building without hard float (fenv.h)
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-08-27 14:31:29 -04:00
Ted Hess
7e88a109f2 alsa-lib: Add missing comma to maintainer list
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-08-27 13:10:22 -04:00
Ted Hess
f149916fe1 Merge pull request #1718 from changeway/libstrophe
libstrophe : Update to version 0.8.8
2015-08-27 09:08:50 -04:00
Alexander Couzens
71c0915496 libxml2: disable parallel build
libxml2 fails to build in one of three runs.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
2015-08-26 16:11:09 +02:00
Steven Barth
1ad2576aa8 libsigc++: bump to 2.5.2
Signed-off-by: Steven Barth <steven@midlink.org>
2015-08-25 08:43:38 +02:00
Chih-Wei Chen
02fa2b7160 libstrophe : Update to version 0.8.8
Signed-off-by: Chih-Wei Chen <changeway@gmail.com>
2015-08-24 22:51:06 +08:00
heil
da89247736 unixodbc: update to 2.3.3
Signed-off-by: heil <heil@terminal-consulting.de>
2015-08-24 10:40:38 +02:00
John Crispin
62581b3851 libuv: fix download path
Signed-off-by: John Crispin <blogic@openwrt.org>
2015-08-22 01:12:31 +02:00
Ted Hess
242089ecc6 hidapi: Fix iconv depends
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-08-21 15:24:02 -04:00
Jonas Gorski
28804d8d97 Merge pull request #1671 from plntyk/fix_musl_dtndht
dtndht: fix musl build
2015-08-21 15:20:13 +02:00
Jonas Gorski
8fce0732d6 Merge pull request #1694 from jsiverskog/protobuf-maintainer2
protobuf: add myself as maintainer.
2015-08-21 15:15:18 +02:00
Dirk Neukirchen
75b0c4fb1b openvc: disable precompiled headers
this commit fixes musl build

precompiled headers are not strictly necessary according to
https://gcc.gnu.org/onlinedocs/gcc/Precompiled-Headers.html

precompiled headers will probably be broken anyway in cross-compile cases

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-21 11:14:54 +02:00
Dirk Neukirchen
bf119cb33b postgresql: fix potential snprintf issue
adopt buildroot commit: 3d3f70b567718ae308b5704ddd7d107c4849309e

spotted while reviewing buildroot changes to postgresql

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-21 10:05:11 +02:00
Dirk Neukirchen
b19dc5496e postgresql: fix uclibc locale.h bug
reported in forum:
https://forum.openwrt.org/viewtopic.php?id=59137

issue was discovered and fixed already in buildroot
git commit id: f5e4ca10220e2325d3a34c0a423388e40b27dbdf

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-21 10:05:06 +02:00
Dirk Neukirchen
736ecae209 postgresql: add missing librt dependency
fixes build error with uclibc

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-21 10:04:59 +02:00
Jacob Siverskog
433880cc1d protobuf: add myself as maintainer.
Signed-off-by: Jacob Siverskog <jacob@teenageengineering.com>
2015-08-21 09:46:53 +02:00
Ted Hess
0f4e1326fe alsa-lib: Combine package maintainers
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-08-20 14:14:13 -04:00
cmf
ac8ed17be9 Boost Makefile Update to Version 1.59
This commit updates Boost to version 1.59, released in the 13th of August of 2015 [1].
  - The new version adds two new template libraries, Convert [2] and CoRoutine2 [3].
  - [Warning]-> CoRoutine2 library absolutly requires a C++14 compiler.
  - patch 001-mips-options-fix.patch was removed, since it is already incorporated upstream.

[1] - http://www.boost.org/users/history/version_1_59_0.html
[2] - http://www.boost.org/libs/convert/
[3] - http://www.boost.org/libs/coroutine2/

Signed-off-by: Carlos Ferreira <carlosmf.pt@gmail.com>
2015-08-20 14:28:47 +01:00
Dirk Neukirchen
e49e38ea3e dtndht: fix musl build
add missing headers on musl

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-19 11:33:59 +02:00
Jo-Philipp Wich
9cfcbeeeac Merge pull request #1655 from dangowrt/update-postgresql
update postgresql
2015-08-13 23:52:41 +02:00
Daniel Golle
0bb0084691 libinput: update source
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-08-13 10:47:22 +02:00
Daniel Golle
714a408a6e postgresql: update source to 9.4.4 and refresh scripts
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-08-12 17:30:20 +02:00
Dirk Neukirchen
6ae54e4075 postgresql: update to 9.4.1
- supports arm64/aarch64

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-08-12 17:30:20 +02:00
Nikos Mavrogiannopoulos
ffc5360856 gnutls: updated to 3.4.4
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-08-10 19:50:20 +02:00
Nicolas Thill
56e85309d8 liburcu: update to 0.8.7
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-08-04 03:03:51 +02:00
Nicolas Thill
3d929bbd08 freetype: -config & .pc files cleanup & fixes
Fix libdir as well in freetype-config, merge both freetype2.pc fixes into a single one

Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-08-04 02:28:36 +02:00
Nicolas Thill
d3d79c36eb Merge branch 'freetype-config-include-path-fix' of git://github.com/paulfertser/packages into PR1591 2015-08-04 02:14:56 +02:00
Steven Barth
f71205a155 Merge pull request #1565 from hauke/liblo
liblo: fix build with musl
2015-08-03 13:43:12 +02:00
Marcel Denia
f85c46e2f4 libidn: Update to 1.32
Signed-off-by: Marcel Denia <naoir@gmx.net>
2015-08-03 13:07:33 +02:00
Steven Barth
e23bc0e76a Merge pull request #1612 from changeway/libstrophe
Add libstrophe : XMPP client library
2015-08-03 08:04:27 +02:00
changeway
ce13ffa1d6 Add libstrophe : XMPP client library
Config.in for libxml2/expat XML library choice

Signed-off-by: Chih-Wei Chen <changeway@gmail.com>
2015-08-03 09:40:24 +08:00
champtar
397f2ce75d Merge pull request #1627 from dangowrt/update-sqlite3
sqlite3: update source

compile tested on ar71xx
2015-08-03 00:02:43 +02:00
Steven Barth
1b82e37ad4 Merge pull request #1622 from lijpsummer/master
opencv:update to version 3.0.0
2015-07-30 06:55:26 +02:00
Steven Barth
996dc6086c Merge pull request #1626 from proidiot/proidiot
Adds YAJL
2015-07-30 06:54:40 +02:00
claymore
5586dce88d Boost Makefile Update - Release 6
This update solves two issues:
 1) Incompatibility with the combination of using Target mpc85xx and uclibc at the same time[1].
   - For now, Boost is disabled when the respective combination is detected.
 2) The selection of Boost.Locale was not activating the build with full language support.

 [1] - https://github.com/openwrt/packages/issues/1621

Signed-off-by: Carlos Ferreira <carlosmf.pt@gmail.com>
2015-07-30 04:04:14 +01:00
Daniel Golle
20ccf3c52e sqlite3: update source
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-07-30 04:16:31 +02:00