Commit Graph

6 Commits

Author SHA1 Message Date
lean
a01b1ac233 libunistring: add host build 2024-04-18 16:31:40 +08:00
John Audia
92da63e418 gnutls: Update to 3.7.4
Bump to latest upstream release.  Rebased existing patches.

This version introduces certificate compression support, and with that,
optional dependencies on zlib and zstd. When configure picks them up,
build will fail due to missing dependencies:

Package libgnutls is missing dependencies for the following libraries:
libz.so.1
libzstd.so.1

Disable zlib and zstd support to avoid that.

Signed-off-by: John Audia <graysky@archlinux.us>
[disable zlib and zstd]
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2022-03-31 06:24:11 +00:00
Eneas U de Queiroz
c1ba24c8e3 gnutls: don't run aclocal --install
Remove the --install parameter when running aclocal.  The --install
argument is used to copy third-party files to the first -I directory.
gnutls has -I m4 first, which would copy files to its local build
directory.  However, openwrt prepends the staging dir m4 directory,
causing aclocal --install to copy an old definition of
ax_code_coverage.m4 into the staging dir.

If strace is built after gnutls, compilation will fail:

    Makefile:9303: *** missing separator.  Stop.

The version of ax_code_coverage.m4 that gets installed does not define
@CODE_COVERAGE_RULES@.

Removing the --install parameter in gnutls solves the issue.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2022-03-30 09:41:09 +00:00
Beginner
f5da0aa44c
gnutls: revert (#394)
* Revert "gnutls: disable zlib (#393)"

This reverts commit c872102fcf.

* Revert "gnutls: add build dependency on gettext-full/host"

This reverts commit 693a785ee3.

* Revert "gnutls: Update to 3.7.4"

This reverts commit 8f62def8a5.

* Revert " gnutls: don't run aclocal --install"

This reverts commit f161712d37.
2022-03-30 17:39:45 +08:00
John Audia
8f62def8a5 gnutls: Update to 3.7.4
Bump to latest upstream release.  Rebased existing patches.

This version introduced certificate compression support, and with that,
an optional dependency on zstd. When zstd is built, configure will pick
it up, and build will fail due to a missing dependency:

Package libgnutls is missing dependencies for the following libraries:
libzstd.so.1

Disable zstd support to avoid that.

Signed-off-by: John Audia <graysky@archlinux.us>
[disable zstd]
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2022-03-26 07:29:04 +08:00
breakings
f161712d37 gnutls: don't run aclocal --install 2022-03-26 07:28:24 +08:00