aboutsummaryrefslogtreecommitdiff
path: root/libs
Commit message (Collapse)AuthorAge
* libyang: add patch for lyb bugfixMislav Novakovic2019-01-29
| | | | Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
* libextractor: update to version 1.8Daniel Golle2019-01-29
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* libmad: Some patch renaming for consistencyRosen Penev2019-01-28
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* glib2: update to 2.58.3Peter Wagner2019-01-28
| | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* Merge pull request #7998 from neheb/patch-20Ted Hess2019-01-28
|\ | | | | libsodium: Update to 1.0.17
| * libsodium: Update to 1.0.17Rosen Penev2019-01-19
| | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | Merge pull request #8044 from diizzyy/libs-jsoncppTed Hess2019-01-28
|\ \ | | | | | | jsoncpp: Add to repo
| * | jsoncpp: Add to repoDaniel Engberg2019-01-28
| | | | | | | | | | | | | | | | | | Add (lib)jsoncpp to repo Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | Merge pull request #8045 from diizzyy/libs-libupnppTed Hess2019-01-28
|\ \ \ | | | | | | | | libs/libupnpp: Update to 0.17.0
| * | | libs/libupnpp: Update to 0.17.0Daniel Engberg2019-01-26
| | | | | | | | | | | | | | | | | | | | | | | | Update libupnpp to 0.17.0 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | libs/libupnp: Update to 1.8.4Daniel Engberg2019-01-28
| |/ / |/| | | | | | | | | | | | | | | | | | | | Update libupnp to 1.8.4 Add PR #104 to fix musl compatibility https://github.com/mrjimenez/pupnp/pull/104 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | Merge pull request #7995 from neheb/patch-13Hannu Nyman2019-01-28
|\ \ \ | | | | | | | | hwloc: Update to 2.0.3
| * | | hwloc: Update to 2.0.3Rosen Penev2019-01-19
| | |/ | |/| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #7675 from neheb/vipsHannu Nyman2019-01-27
|\ \ \ | | | | | | | | vips: Update to 8.7.2
| * | | vips: Update to 8.7.4Rosen Penev2019-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added ability to compile with uclibc++. Refresh Makefile for consistency. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #8009 from neheb/v4lTed Hess2019-01-26
|\ \ \ \ | | | | | | | | | | libv4l: Update to 1.16.3
| * | | | libv4l: Update to 1.16.3Rosen Penev2019-01-21
| |/ / / | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #8037 from MikePetullo/libdmapsharingHannu Nyman2019-01-26
|\ \ \ \ | | | | | | | | | | libdmapsharing: Update to 3.9.4
| * | | | libdmapsharing: Update to 3.9.4W. Michael Petullo2019-01-24
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | Merge pull request #7867 from neheb/ldnHannu Nyman2019-01-26
|\ \ \ \ \ | |/ / / / |/| | | | ldns: Make ENGINE support optional
| * | | | ldns: Make ENGINE support optionalRosen Penev2019-01-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ENGINE support is needed for GOST, which is already disabled. However, it is going to be disabled by default in a future update. This fixes the compilation failure. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | libgpg-error: Update to 1.34Rosen Penev2019-01-23
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Remove FPIC as it is already default. Both fPIC and DPIC are passed. Some extra configure arguments to speed up build times. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #7977 from neheb/keyuHannu Nyman2019-01-21
|\ \ \ \ | | | | | | | | | | keyutils: Update to 1.6
| * | | | keyutils: Update to 1.6Rosen Penev2019-01-19
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Add keyctl binary, which can be used to add fscrypt support to ext4 and other filesystems that support it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* / | | getdns: update to version 1.5.0Jonathan G. Underwood2019-01-20
|/ / / | | | | | | | | | Signed-off-by: Jonathan G. Underwood <jonathan.underwood@gmail.com>
* | | Merge pull request #7922 from daniel-santos/classpathHannu Nyman2019-01-19
|\ \ \ | | | | | | | | classpath: Fix breakage caused by -Werror=implicit-fallthrough
| * | | classpath: Fix breakage caused by -Werror=implicit-fallthroughDaniel Santos2019-01-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | classpath builds with -Wextra and, unless configured with --disable-werror, -Werror. Since GCC 7 added -Wimplicit-fallthrough=3 to -Wextra we need to make it not an error for code that doesn't use __attribute__((fallthrough)) yet. Signed-off-by: Daniel Santos <daniel.santos@pobox.com>
* | | | libyang: update to 0.16-r3Mislav Novakovic2019-01-16
| | | | | | | | | | | | | | | | Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
* | | | Merge pull request #7952 from neheb/patch-3Jiri Slachta2019-01-16
|\ \ \ \ | | | | | | | | | | libxslt: Update to 1.1.33
| * | | | libxslt: Update to 1.1.33Rosen Penev2019-01-13
| | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #7966 from ja-pa/libmad-security-fixTed Hess2019-01-15
|\ \ \ \ \ | | | | | | | | | | | | libmad: patch multiple CVEs
| * | | | | libmad: patch multiple CVEs and add CPEJan Pavlinec2019-01-15
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVE-2017-8374 CVE-2017-8373 CVE-2017-8372 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | libarchive: Update configure argumentsRosen Penev2019-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of these were introduced after the Makefile was written. Adding them guarentees fewer issues down the road. Also did some small reorganization for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | alsa-lib: update to 1.1.8Peter Wagner2019-01-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | Merge pull request #7904 from ja-pa/libarchive-patch-cveHannu Nyman2019-01-14
|\ \ \ \ \ | |/ / / / |/| | | | libarchive: patch multiple CVEs
| * | | | libarchive: patch multiple CVEsJan Pavlinec2019-01-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVE-2018-1000880 CVE-2018-1000879 CVE-2018-1000878 CVE-2018-1000877 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | Revert "libmicrohttpd: Update to 0.9.62"Hannu Nyman2019-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reverted at request by Daniel Engberg. https://github.com/openwrt/packages/pull/7706#issuecomment-453734749 This reverts commit d4a62bbbca95fbe9a1dcde0203992d5dfdd0ee60. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | Merge pull request #7805 from iamperson347/patch-4Hannu Nyman2019-01-12
|\ \ \ \ \ | | | | | | | | | | | | getdns: Remove iamperson347 from maintainer
| * | | | | getdns: Remove iamperson347 from maintainerDavid Mora2018-12-30
| | | | | | | | | | | | | | | | | | I am no longer able to support maintaining the getdns lib for openwrt. I suggest Jonathan Underwood <jonathan.underwood@gmail.com> as a replacement.
* | | | | | Merge pull request #7790 from micmac1/sqlite3-initHannu Nyman2019-01-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | sqlite3: various improvements
| * | | | | | sqlite3: small improvementsSebastian Kemper2018-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit: - adds support for parallel builds (the possibilities of building parts of sqlite3 in parellel are limited, but there is no downside) - adds a CVE/CPE ID - Removes useless "=1" from -D[EFINES] - Adds --disable-debug (default anyway, just makes it explicit), put --disable-static-shell up top to sort the list alphabetically - Saves one INSTALL_DIR line in the end Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | sqlite3: make cli-editing support selectableSebastian Kemper2018-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sqlite3 can use libedit, readline or disable command-line editing support altogether. This commit adds a choice to menuselect. The default is changed from readline to libedit, as the latter is upstream's first choice and is also a bit smaller than readline. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | sqlite3: add configure switches to menuselectSebastian Kemper2018-12-27
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds (most) configure switches to menuselect. The defaults are _not_ changed, meaning the default configuration itself remains the same. This enables changing the configuration through menuselect and adds flags that other packages may use. Config.in is renamed to Config-lib.in in anticipation of a future commit where the cli tool package also gets a file to source. The variables also get a prefix change from SQLITE to SQLITE3 in case there will be a new major release in the future that may coexist with sqlite3. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | | | Merge pull request #7706 from neheb/patch-11Hannu Nyman2019-01-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | libmicrohttpd: Update to 0.9.62
| * | | | | | libmicrohttpd: Update to 0.9.62Rosen Penev2018-12-17
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | libsndfile: update to 2019-01-10-58c64581Peter Wagner2019-01-11
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | Merge pull request #7777 from neheb/patch-9Hannu Nyman2019-01-05
|\ \ \ \ \ \ | | | | | | | | | | | | | | libpng: Update to 1.6.36
| * | | | | | libpng: Update to 1.6.36Rosen Penev2018-12-26
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | quasselc: Update to latest commitRosen Penev2019-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switched to codeload for simpler Makefile. Several adjustments for consistency. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | libxml2: update to 2.9.9Michael Heimpold2019-01-03
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also drop the CVE patches which are already covered by this new release. Compile tested for and run tested on mxs platform. Signed-off-by: Michael Heimpold <mhei@heimpold.de>