Install pkgconfig metadata to allow detection of libgcrypt during
build of other packages which rely on pkgconfig.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
ICU 76 updates to Unicode 16 (blog), including new characters and scripts, emoji, collation & IDNA changes, and corresponding APIs and implementations. It also updates to CLDR 46 (beta blog) locale data with new locales, significant updates to existing locales, and various additions and corrections. For example, the CLDR and Unicode default sort orders are now very nearly the same.
ICU 76 and CLDR 46 are major releases, including a new version of Unicode and major locale data improvements.
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Some applications using Glib2 require using glib_compile_schemas during
build and deduct the path of that executable via pkg-config.
This currently fails as the path is not fixed in gio.pc.
Fix that by adding glib_compile_schemas to the sed expression taking
care of applying prefix_hostpkg.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
When compiled with GnuTLS external functions can be used to calculate
hashes. Enable them to reduce the library binary size (by disabling
internal code for hash calculations).
Note: libmicrohttpd 1.0.0 or later required
Signed-off-by: Evgeny Grin (Karlson2k) <k2k@narod.ru>
libgcrypt was used by early GnuTLS 2.x versions. For GnuTLS versions
without ability to automatically initialise libgcrypt, MHD was able to
initialise libgcrypt. However, it is not required for a long time.
Signed-off-by: Evgeny Grin (Karlson2k) <k2k@narod.ru>
If 'poll()' function is disabled, then in thread-per-connection mode
'select()' is used. This is much less efficient.
'epoll' is not used in thread-per-connection mode as it would require
additional epoll FD per every connection.
Signed-off-by: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Install header for libxlt by default to handle case when dependent
package depends on the library but doesn't select the configuration.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This adds the Secure Reliable Transport (SRT) package.
SRT is used as a popular transfer protocol for video & audio
and can be used within gstreamer as both a sink or source.
It also supports stream encryptino by simply
setting a password on both ends of the link.
More details can be found here:
https://www.haivision.com/products/srt-secure-reliable-transport/
It is being actively developed on github:
https://github.com/Haivision/srt
Signed-off-by: Koen Vandeputte <koen.vandeputte@citymesh.com>
libmaxminddb has switched to using CMAKE_INSTALL_PREFIX,
CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR for generating the
pkg-config in upstream commit [1] and thus broke pkg-config file
generation in openwrt.
It would generate:
prefix=/usr
exec_prefix=/usr
libdir=lib
includedir=include
Obviously libdir and includedirs are incorrect for OpenWrt and this
would then cause pdns compilation to fail if geoip backend was enabled
since it uses pkg-config to get the required flags and passing just
lib for LDFLAGS would cause libtool to error out since that path is not
valid.
So, lets use SED magic to replace libdir and includedir with the correct
paths, so now pkg-config looks like:
prefix=/usr
exec_prefix=/usr
libdir=${exec_prefix}/lib
includedir=${prefix}/include
[1] 8b4bf0dec9
Fixes: 9f7357880f ("libmaxminddb: update to 1.11.0")
Signed-off-by: Robert Marko <robimarko@gmail.com>
Switch to local tarballs instead of codeload. No need to override
PKG_BUILD_DIR.
Remove PKG_BUILD_PARALLEL and PKG_INSTALL as they are not needed with
meson.
Remove upstreamed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
- Remove a mirror with invalid certificate
- Manually rebase 010-link-to-libucontext.patch
- Add new 020-fix-ucontext-maybe-uninitialized.patch
Signed-off-by: Aleksey Vasilenko <aleksey.vasilenko@gmail.com>
Remove the obsolete patch as the required functionality was already
available upstream.
Refresh 006-c99.patch.
Remove -Ddefault_library option from MESON_HOST_ARGS and MESON_ARGS as
this is now the default behavior.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Looks like libarchive v3.7.3 adds support for pcre2 (d1231a7ea7).
Because of this, the following build error is observed (in the case pcre2 is compiled before libarchive):
Package libarchive is missing dependencies for the following libraries:
libpcre2-8.so.0
libpcre2-posix.so.3
So let's disable linking with pcre2, just like linking with pcre was disabled before.
Signed-off-by: Matthias FRANCK <matthias.franck@softathome.com>
This commit updates boost to version 1.86.0
This update does not bring new libraries.
More info about Boost 1.86.0 can be found at the usual place [1].
[1]: https://www.boost.org/users/history/version_1_86_0.html
Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
- This release contains fixes for CVE-2024-45490,
CVE-2024-45491, CVE-2024-45492.
- Since official place for expat development moved from SourceForge
to GitHub, SourceForge was removed from PKG_SOURCE_URL.
- Use gzip archive to avoid xz usage.
- Remove DOCBOOK_TO_MAN=OFF from CMAKE_OPTIONS because
we already have EXPAT_BUILD_DOCS=OFF, which has same effect.
Signed-off-by: Yanase Yuki <dev@zpc.st>
Upstream bug fixes:
- fix C++ tests with recent kernels which introduced stricter reconfigure
behavior
- fix a use-after-free bug in python bindings
- fix passing the event clock property to line requests in python bindings
- fix a memory leak in tools
- make sure the string buffers in line-info and chip-info are big enough to not
truncate the strings they hold below the size accepted by the kernel
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
There's no need to maintain an old version.
Removed all patches as they are all upstream.
Import new ones from Arch, Debian, and OpenEmbedded.
Signed-off-by: Rosen Penev <rosenp@gmail.com>