aboutsummaryrefslogtreecommitdiff
path: root/libs
Commit message (Collapse)AuthorAge
...
| * | | libgphoto2: libgphoto2_port.pc needed by devLuiz Angelo Daros de Luca2019-10-28
| | | | | | | | | | | | | | | | | | | | | | | | 'pkg-config --exists libgphoto2' fails without libgphoto2_port.pc. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | | spice: initial version 0.14.1Yousong Zhou2019-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | spice-protocol: initial version 0.12.15Yousong Zhou2019-10-28
| | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | Merge pull request #10369 from micmac1/xml2-config-host-tripletMichael Heimpold2019-10-27
|\ \ \ \ | |/ / / |/| | | libxml2: install xml2-config with host triplet
| * | | libxml2: install xml2-config with host tripletSebastian Kemper2019-10-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently only xml2-config is installed, for both the normal libxml2 package as well as the host package. The problem with that is that due to multilib considerations the build host may have xml2-config installed with a host triplet prefix, like x86_64-pc-linux-gnu-xml2-config (and xml2-config as a symbolic link to it). Gentoo for instance sets it up like this. Packages may actually search for a prefixed xml2-config before searching for xml2-config. An example would be Asterisk: checking for x86_64-pc-linux-gnu-xml2-config... /usr/bin/x86_64-pc-linux-gnu-xml2-config This then introduces wrong information into the build, for instance bad includes: ~/tmp/openwrt $ /usr/bin/x86_64-pc-linux-gnu-xml2-config --cflags -I/usr/include/libxml2 When the intention is to use OpenWrt's own (host) libxml2 one would like to see this output used instead: ~/tmp/openwrt $ ./staging_dir/hostpkg/bin/xml2-config --cflags -I/home/sk/tmp/openwrt/staging_dir/hostpkg/include/libxml2 This commit addresses this by installing xml2-config with a suitable prefix and creating a symbolic link xml2-config. This is done for both the host package and the normal package. The latter also needs this fix because the target may use the same triplet as the host system (for instance x86_64 cross-compiling for x86_64). Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | libxslt/host: depend on libxml2/hostSebastian Kemper2019-10-26
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The host build requires libxml2-dev. This commit adds the dependency for libxml2/host, as the host system may not have it installed. This also avoids using the host's xml2-config (in /usr/bin for instance) while linking to libraries in staging_dir/hostpkg. ldd staging_dir/hostpkg/bin/xsltproc | grep xml2 libxml2.so.2 => /home/sk/tmp/openwrt/staging_dir/hostpkg/lib/libxml2.so.2 (0x00007fcc0644c000) Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | Merge pull request #10344 from lucize/nsprupDaniel Engberg2019-10-25
|\ \ \ | | | | | | | | nspr: update to 4.23
| * | | nspr: update to 4.23Lucian Cristian2019-10-24
| | | | | | | | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | nss: update to 3.47Lucian Cristian2019-10-24
|/ / / | | | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | Merge pull request #10333 from micmac1/xml2-config-fixMichael Heimpold2019-10-23
|\ \ \ | | | | | | | | libxml2/host: revert xml2-config prefix fix
| * | | libxml2/host: revert xml2-config prefix fixSebastian Kemper2019-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 218f0229a4594b32d9db6ad0678cdce7e2663e27 added a workaround for a problem. The host compile overwrote xml2-config in "$(STAGING_DIR)/host/bin". The workaround fixed the issue for regular target packages. But it didn't leave a proper xml2-config script for host packages. Times have changed. Host packages are now installed in "$(STAGING_DIR_HOSTPKG). So there is no longer any danger of the host package overwriting the xml2-config script for target packages. So revert the mentioned commit, leaving us with two proper xml2-config scripts, one for target package builds and one for host package builds. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | Merge pull request #10240 from neheb/mbRosen Penev2019-10-22
|\ \ \ \ | | | | | | | | | | libmbim: Fix compilation with full iconv
| * | | | libqmi: Fix compilation with full iconvRosen Penev2019-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nls.mk is needed. Removed +glib2 dependency. It's already included in libmbim. Other minor cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | libmbim: Fix compilation with full iconvRosen Penev2019-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nls.mk is needed. explicitly disabled udev. It's not available for use. Added autoreconf to try to fix the buildbots. Minor cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #10318 from jalowiczor/masterRosen Penev2019-10-22
|\ \ \ \ \ | |_|/ / / |/| | | | poco:InstallDev section changed due to poco all problems
| * | | | poco: Added changes to InstallDev section and conditions for poco libs.Jakub Jalowiczor2019-10-21
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
| * | | | poco: Minor changesJakub Jalowiczor2019-10-09
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* | | | | Merge pull request #10261 from TDT-AG/pr/20191016-xsltprocFlorian Eckert2019-10-22
|\ \ \ \ \ | |_|/ / / |/| | | | libxslt: add host build
| * | | | libxslt: add host buildFlorian Eckert2019-10-22
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | Merge pull request #10168 from neheb/booooooooooooRosen Penev2019-10-16
|\ \ \ \ \ | | | | | | | | | | | | boost: Remove several host libraries
| * | | | | boost: Remove thread dependency from contextRosen Penev2019-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | thread is only used when the C++ mutex header is missing. AFAIK, this is the case on Windows and not on Linux. Certainly not in OpenWrt. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | boost: Remove several host librariesRosen Penev2019-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The facebook people have been working on removing Boost dependencies from their projects. This is the current state. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #10169 from jalowiczor/masterRosen Penev2019-10-16
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Changed poco version to "all", and from minimal build to typical.
| * | | | | poco: Minor changesJakub Jalowiczor2019-10-09
| | |/ / / | |/| | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
| * | | | poco: A new variant of poco library poco-allJakub Jalowiczor2019-10-09
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
| * | | | poco: Minor changesJakub Jalowiczor2019-10-07
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
| * | | | poco: Package version changedJakub Jalowiczor2019-10-07
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
| * | | | poco: Changed poco version to all, and from minimal build to typical.Jakub Jalowiczor2019-10-07
| | |_|/ | |/| | | | | | | | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* | | | Merge pull request #10248 from changeway/libstropheRosen Penev2019-10-15
|\ \ \ \ | | | | | | | | | | libstrophe: Update to 0.9.3
| * | | | libstrophe: Update to 0.9.3Chih-Wei Chen2019-10-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release 0.9.3: -PLAIN mechanism is used only when no other mechanisms are supported -Legacy authentication is disabled by default, can be enabled with connection flag XMPP_CONN_FLAG_LEGACY_AUTH -Session is not established if it is optional -Fixed a bug causing a reused connection not to cleanup properly -Improved debug logging in OpenSSL module -Few memory leaks fixed Also fix some build flag Signed-off-by: Chih-Wei Chen <changeway@gmail.com>
* | | | | sqlite3: bump to version 3.30.1Sebastian Kemper2019-10-14
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In other news: - adds ABI_VERSION - prefers INSTALL_DATA over CP - removes gratuitous trailing slashes Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | libplist: Switch to normal releasesRosen Penev2019-10-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added the capability to use uclibcxx instead of libstdcpp. Several size optimizations. Fixed up Makefile to be up to standards. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | protobuf-c: Fix typo in pkgconfig fileRosen Penev2019-10-14
| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | libdmapsharing: Add build dependencyRosen Penev2019-10-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | glib2 no longer depends on its host build. Added here. Fixed license information. Added PKG_BUILD_PARALLEL:=1 for faster compilation. Removed gstreamer1-libs dependency as gst1-plugins-base includes it. Other cleanups for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #10226 from flyn-org/hwlocRosen Penev2019-10-14
|\ \ \ \ | | | | | | | | | | hwloc: update to 2.1.0
| * | | | hwloc: add PKG_LICENSE_FILES and remove PKG_FIXUPW. Michael Petullo2019-10-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
| * | | | hwloc: update to 2.1.0W. Michael Petullo2019-10-13
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | Merge pull request #10231 from flyn-org/vipsRosen Penev2019-10-14
|\ \ \ \ \ | | | | | | | | | | | | vips: update to 8.8.3
| * | | | | vips: update to 8.8.3W. Michael Petullo2019-10-13
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* / / / / libqmi: update libqmi to 1.24.0Nicholas Smith2019-10-14
|/ / / / | | | | | | | | | | | | Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
* | | | treewide: Use default PKG_BUILD_DIR when possibleJeffery To2019-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes lines that set PKG_BUILD_DIR when the set value is no different from the default value. Specifically, the line is removed if the assigned value is: * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT if it is set, so now this is identical to the default value. * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it the same as the previous case * $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) This is the same as the default PKG_BUILD_DIR when there is no BUILD_VARIANT. * $(BUILD_DIR)/[name]-$(PKG_VERSION) where [name] is a string that is identical to PKG_NAME [1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | Merge pull request #10196 from lucize/nssupRosen Penev2019-10-11
|\ \ \ \ | | | | | | | | | | nss: update to 3.46.1
| * | | | nss: update to 3.46.1Lucian Cristian2019-10-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and clean some comments Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | Merge pull request #10107 from BKPepe/expatRosen Penev2019-10-11
|\ \ \ \ \ | |/ / / / |/| | | | expat: Update to version 2.2.9
| * | | | expat: Update to version 2.2.9Josef Schlehofer2019-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVE-2019-15903 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | Merge pull request #10170 from ewsi/feature_dcwifi_1.1Rosen Penev2019-10-09
|\ \ \ \ \ | |_|_|_|/ |/| | | | dcwifi: Update component versions
| * | | | dcwifi: Update component versionsCarey Sonsino2019-10-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update package versions and hashes remove bzero patches remove uclibc++ patch refactor directory structure relocate mrmctl in menuconfig update macremapper patch Signed-off-by: Carey Sonsino <careys@edgewaterwireless.com> Signed-off-by: Carey Sonsino <csonsino@gmail.com>
* | | | | icu: Revert "icu: Deactivate uClibc"Eneas U de Queiroz2019-10-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit db424ede2f079f2bf73634d30ec3c59a8a782118. It is causing recursive dependencies. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | icu: Deactivate uClibcHirokazu MORIKAWA2019-10-08
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | | | | Merge pull request #10113 from dhewg/pull/libid3tagRosen Penev2019-10-07
|\ \ \ \ \ | | | | | | | | | | | | libid3tag: add pkg-config file