aboutsummaryrefslogtreecommitdiff
path: root/libs
Commit message (Collapse)AuthorAge
* libyang: add patchMislav Novakovic2018-04-27
| | | | | | The patch fixes a netopeer2-cli issue on musl. Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
* Merge pull request #5902 from antonlacon/libvorbisTed Hess2018-04-23
|\ | | | | libvorbis: update to 1.3.6
| * libvorbis: build with LTO on armIan Leonard2018-04-11
| | | | | | | | | | | | Reduces library size by 0.6% Signed-off-by: Ian Leonard <antonlacon@gmail.com>
| * libvorbis: update to 1.3.6Ian Leonard2018-04-11
| | | | | | | | | | | | | | | | | | Resolves CVEs: 2018-5146 2017-14632 2017-14633 Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* | Merge pull request #5959 from DocLM/gphoto2Hannu Nyman2018-04-23
|\ \ | | | | | | libgphoto2 and gphoto2: Update to 2.5.17
| * | libgphoto2: update package 2.5.17Leonardo Medici2018-04-23
| | | | | | | | | | | | Signed-off-by: Leonardo Medici <leonardo_medici@me.com>
* | | libdaq: update hash and change maintainerW. Michael Petullo2018-04-23
|/ / | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | libdaq: update to 2.0.6Magnus Kroken2018-04-23
| | | | | | | | Signed-off-by: Magnus Kroken <mkroken@gmail.com>
* | libgpiod: update to 1.0.1Michael Heimpold2018-04-18
| | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | getdns: Package update to replace libidn support with libidn2David Mora2018-04-17
| | | | | | | | | | | | Package update to replace libidn support with libidn2 Signed-off-by: David Mora <iamperson347+public@gmail.com>
* | boost: Package Version Update -> 1.67.0Carlos Miguel Ferreira2018-04-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package update provides two new libraries - Contract (compiled library) [1]: Contract programming for C++. All contract programming features are supported: Subcontracting, class invariants, postconditions (with old and return values), preconditions, customizable actions on assertion failure (e.g., terminate or throw), optional compilation and checking of assertions, etc, from Lorenzo Caminiti. - HOF (header-only library) [2]: Higher-order functions for C++, from Paul Fultz II. More info can be found at the usual place [3]. [1]: https://www.boost.org/libs/contract [2]: https://www.boost.org/libs/hof [3]: https://www.boost.org/users/history/version_1_67_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* | Merge pull request #5854 from diizzyy/libs-sqlitechamptar2018-04-12
|\ \ | |/ |/| libs/sqlite: Update to 3.23.1
| * libs/sqlite: Update to 3.23.1Daniel Engberg2018-04-12
| | | | | | | | | | | | Update sqlite to 3.23.1 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | libidn2: v2.0.4 Add to repoKevin Darbyshire-Bryant2018-04-11
| | | | | | | | | | | | | | | | | | | | Add libidn2 & idn2 tool to repo Heavily based on PR by Daniel Engberg <daniel.engberg.lists@pyret.net> Added idn2 tool & heavily based on existing idn Makefile. Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
* | glib2: update to 2.56.1Peter Wagner2018-04-08
|/ | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* libgpiod: depend on kernel versionMichael Heimpold2018-03-30
| | | | | | | Required kernel interface was introduced in kernel v4.8, so add the kernel version as dependency for this library. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* Merge pull request #5838 from nxhack/icu_bump_61_1Hannu Nyman2018-03-27
|\ | | | | icu: update to 61.1
| * icu: update to 61.1Hirokazu MORIKAWA2018-03-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: me Compile tested: ar71xx, LEDE trunk r5488-893a1ed Run tested: NONE Description: ICU 61 upgrades to CLDR 33 locale data, has a new Java implementation for number and currency parsing, and includes many small API additions, improvements, and bug fixes. (includes security fix CVE-2017-17484,CVE-2017-15422) Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | libtirpc: update to 1.0.3Andy Walsh2018-03-27
|/ | | | | | | * Remove unnecessary patch * fix musl types.h defines Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* Merge pull request #5790 from micmac1/postgresql-fixesDaniel Golle2018-03-27
|\ | | | | Postgresql fixes
| * postgresql: update to version 9.6.8Sebastian Kemper2018-03-19
| | | | | | | | | | | | | | | | | | | | This update addresses: CVE-2018-1052 CVE-2018-1053 CVE-2018-1058 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * postgresql: fix build for ARC archSebastian Kemper2018-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | When building for ARC the compile fails with: /var/lib/buildbot/slaves/dave-builder/arc_arc700/build/sdk/build_dir/target-arc_arc700_uClibc/postgresql-9.6.5/src/include/storage/s_lock.h:899:2: error: #error PostgreSQL does not have native spinlock support on this platform. To continue the compilation, rerun configure using --disable-spinlocks. However, performance will be poor. Please report this to pgsql-bugs@postgresql.org. #error PostgreSQL does not have native spinlock support on this platform. To continue the compilation, rerun configure using --disable-spinlocks. However, performance will be poor. Please report this to pgsql-bugs@postgresql.org. So disable spinlocks when compiling for this arch. This was done likewise for the avr32 target, which is not supported anymore, so this can be deleted. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * postgresql: clean up DEPENDSSebastian Kemper2018-03-19
| | | | | | | | | | | | Currently the DEPENDS do not reflect reality. Fix this. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * postgresql: clean up CFLAGSSebastian Kemper2018-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The extra include is removed; the postgresql build system adds this include by itself. - '-lpthread' is removed; the postgresql build system is able to detect how to access pthread features by itself. - '$(FPIC)' is removed; adding this to CFLAGS is not recommendable: a) The postgresql build system adds its own PIC flag behind OpenWrt's CFLAGS when compiling shared objects, overriding OpenWrt's setting. b) Forcing applications into PIC mode will just slow them down. c) This leads to build failures on aarch64: access/transam/commit_ts.o: In function `CommitTsPagePrecedes': commit_ts.c:(.text+0x14): relocation truncated to fit: R_AARCH64_LD64_GOTPAGE_LO15 against symbol `TransactionIdPrecedes' defined in .text section in access/transam/transam.o commit_ts.c:(.text+0x14): warning: Too many GOT entries for -fpic, please recompile with -fPIC /var/lib/buildbot/slaves/dave-builder/aarch64_generic/build/sdk/staging_dir/toolchain-aarch64_generic_gcc-7.3.0_musl/bin/../lib/gcc/aarch64-openwrt-linux-musl/7.3.0/../../../../aarch64-openwrt-linux-musl/bin/ld: final link failed: Symbol needs debug section which does not exist collect2: error: ld returned 1 exit status Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | Merge pull request #5810 from micmac1/glib2-res_nquery-fixtripolar2018-03-26
|\ \ | | | | | | glib2: fix build when res_nquery is not available
| * | glib2: fix build when res_nquery is not availableSebastian Kemper2018-03-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream commit "gio: Port GThreadedResolver to use res_nquery() to fix thread-safety" introduced a bug that causes compile failures on platforms where res_nquery is unavailable. This patch fixes that. Bug 794606 has been opened upstream: https://bugzilla.gnome.org/show_bug.cgi?id=794606 On the OpenWrt buildbots this bug is visible during the arc_archs compile: gthreadedresolver.c: In function 'do_lookup_records': gthreadedresolver.c:875:16: error: 'res' undeclared (first use in this function); did you mean '_res'? res_nclose (&res); ^~~ _res gthreadedresolver.c:875:16: note: each undeclared identifier is reported only once for each function it appears in Makefile:3334: recipe for target 'libgio_2_0_la-gthreadedresolver.lo' failed make[8]: *** [libgio_2_0_la-gthreadedresolver.lo] Error 1 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | p11-kit: Update to 0.23.10 and update URLsRosen Penev2018-03-25
| | | | | | | | | | | | | | | | | | | | | | | | The FreeDesktop link does not work anymore. Switch to new upstream at GitHub. Update the version while we're at it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #5817 from zhaojh329/libuwscHannu Nyman2018-03-25
|\ \ \ | | | | | | | | libuwsc: update to 2.0.1
| * | | libuwsc: update to 2.0.1Jianhui Zhao2018-03-25
| |/ / | | | | | | | | | Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* | | Merge branch 'libfmt-knxd'Michael Heimpold2018-03-25
|\ \ \ | |/ / |/| | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | libfmt: add new package (closes #5617)Othmar Truniger2018-03-25
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch> Build shared library, add license file hints Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | Merge pull request #5766 from thess/faad2-configTed Hess2018-03-22
|\ \ \ | |_|/ |/| | faad2: Remove BUILD_PATENTED
| * | faad2: Remove BUILD_PATENTEDTed Hess2018-03-15
| | | | | | | | | | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* | | Merge pull request #5783 from zhaojh329/libuhttpdHannu Nyman2018-03-18
|\ \ \ | | | | | | | | libuhttpd: update to 2.0.3
| * | | libuhttpd: update to 2.0.3Jianhui Zhao2018-03-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ecb3ea9 Fix compile error on openwrt-x64 d9ef540 mention some code in lua_template.c copied from. Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* | | | glib2: update to 2.56.0Peter Wagner2018-03-18
|/ / / | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | Merge pull request #5762 from iamperson347/getdns1.4Hannu Nyman2018-03-15
|\ \ \ | |/ / |/| | gettdns: Bump to 1.4.1 plus fixes
| * | gettdns: Bump to 1.4.1 plus fixesDavid Mora2018-03-13
| | | | | | | | | | | | | | | | | | Makefile needed to be updated specify ssl dir Signed-off-by: David Mora <iamperson347+public@gmail.com>
* | | libs/libmicrohttpd: Update to version 0.9.59Paul Wassi2018-03-14
| | | | | | | | | | | | Signed-off-by: Paul Wassi <p.wassi@gmx.at>
* | | libuhttpd: Update to 2.0.2Jianhui Zhao2018-03-12
| | | | | | | | | | | | Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* | | Merge pull request #5731 from lnslbrty/feature/libcap-binHannu Nyman2018-03-11
|\ \ \ | | | | | | | | libcap: executables
| * | | libcap: libcap executablesToni Uhlig2018-03-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add option to install additional executables - capsh, getcap, getpcaps, setcap * capsh can be configured to execute a different shell rather than /bin/bash Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | | libuhttpd: Update to 2.0.1Jianhui Zhao2018-03-11
| | | | | | | | | | | | | | | | Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* | | | vips: add giflib dependencyHannu Nyman2018-03-10
| | | | | | | | | | | | | | | | | | | | | | | | Add dependency to giflib as the buildbot complained about that. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | Merge pull request #5733 from zhaojh329/wifidog-ngHannu Nyman2018-03-10
|\ \ \ \ | | | | | | | | | | wifidog-ng: Add package
| * | | | wifidog-ng: Add packageJianhui Zhao2018-03-09
| |/ / / | | | | | | | | | | | | | | | | | | | | Next generation WifiDog Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
* / / / libuv: bump to 1.19.2Marko Ratkaj2018-03-10
|/ / / | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | Merge pull request #5446 from Tiboris/libhttp-parserHannu Nyman2018-03-08
|\ \ \ | | | | | | | | libhttp-parser: Bump to version 2.8.0
| * | | libhttp-parser: Bump package version and update link to GitHubTibor Dudlák2018-02-12
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | Bumped package version. There was an issue with .so file: dependent package wanted lib.so.2.8 but there was only lib.so.2.8.0 there so one more symlink added. http-parser sources are owned by nodejs now. Signed-off-by: Tibor Dudlák <tdudlak@redhat.com>
* | | libsoxr: Build cleanup.Ted Hess2018-03-07
| | | | | | | | | | | | | | | | | | Remove automatic inclusion of avutil if ffmpeg libraries present in build. Signed-off-by: Ted Hess <thess@kitschensync.net>