Skip to content
Snippets Groups Projects
Commit e7292082 authored by Natanael Copa's avatar Natanael Copa
Browse files

main/cmake: unbreak circular dep

commit 0046e0b7 (main/c-ares: upgrade to 1.24.0) introduced a
circular dependency of gtest:

  gtest -> cmake -> nghttp2 -> c-ares -> gtest

unbreak this by build cmake with bundled nghttp2.
parent 6b76c189
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=cmake pkgname=cmake
pkgver=3.29.2 pkgver=3.29.2
pkgrel=0 pkgrel=1
pkgdesc="Cross-platform, open-source make system" pkgdesc="Cross-platform, open-source make system"
url="https://www.cmake.org/" url="https://www.cmake.org/"
arch="all" arch="all"
...@@ -14,7 +14,6 @@ makedepends=" ...@@ -14,7 +14,6 @@ makedepends="
libuv-dev libuv-dev
linux-headers linux-headers
ncurses-dev ncurses-dev
nghttp2-dev
py3-sphinx py3-sphinx
rhash-dev rhash-dev
samurai samurai
...@@ -50,13 +49,13 @@ build() { ...@@ -50,13 +49,13 @@ build() {
--no-system-cppdap \ --no-system-cppdap \
--no-system-curl \ --no-system-curl \
--no-system-jsoncpp \ --no-system-jsoncpp \
--no-system-nghttp2 \
--system-bzip2 \ --system-bzip2 \
--system-expat \ --system-expat \
--system-libarchive \ --system-libarchive \
--system-liblzma \ --system-liblzma \
--system-librhash \ --system-librhash \
--system-libuv \ --system-libuv \
--system-nghttp2 \
--system-zlib \ --system-zlib \
--generator=Ninja \ --generator=Ninja \
--parallel="${JOBS:-2}" --parallel="${JOBS:-2}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment