commit 293e816c7eba029afd98c5917c0f0face07688a3 from: Thomas Adam date: Thu Jul 14 22:41:00 2022 UTC portable: mention libevent dependency This is now required to run gotwebd. commit - d7cad54ee75f65cb83dbfa63db242bf5eb503527 commit + 293e816c7eba029afd98c5917c0f0face07688a3 blob - 51219e22687070174c33df1495d56dd020c30dcd blob + 27f97ac236a4d4451a7ef5d0116dfa997e3614f3 --- .cirrus.yml +++ .cirrus.yml @@ -15,7 +15,7 @@ got_alpine_linux_task: container: image: alpine:latest script: - - apk add git build-base bsd-compat-headers bison automake make autoconf libbsd-dev util-linux-dev libressl-dev zlib-dev ncurses-dev + - apk add libevent-dev git build-base bsd-compat-headers bison automake make autoconf libbsd-dev util-linux-dev libressl-dev zlib-dev ncurses-dev - .github/ci/build.sh got_freebsd_task: blob - 2d8c263da6a7f5d4a8780399226a68260ad13dda blob + fe6ca888c585c25c77b7386cc1da8453388f1ac7 --- .github/ci/before-install.sh +++ .github/ci/before-install.sh @@ -10,6 +10,7 @@ if [ "$CIRRUS_OS" = "linux" ]; then libmd-dev \ libssl-dev \ libbsd-dev \ + libevent-dev \ uuid-dev \ zlib1g-dev \ git \ @@ -22,6 +23,7 @@ if [ "$CIRRUS_OS" = "freebsd" ]; then automake \ pkgconf \ git \ + libevent \ coreutils fi @@ -31,5 +33,6 @@ if [ "$CIRRUS_OS" = "darwin" ]; then pkg-config \ ncurses \ ossp-uuid \ - git + git \ + libevent fi blob - 507dea0ffedce4ab0986ab8cd955ccd529f814fc blob + 2dcc193feaa29ec61c388cb2aaba4b26bb478dd0 --- README.portable +++ README.portable @@ -25,12 +25,14 @@ Linux: * `libz` (for Z compression) * `pkg-config` (for searching libraries) * `bison` (for configuration file grammar) +* `libevent` (for gotwebd) FreeBSD: * `automake` * `pkgconf` * `GNU coreutils` (for running tests) +* `libevent` (for gotwebd) NetBSD: @@ -38,6 +40,7 @@ NetBSD: * `libuuid` * `ncuresesw` * `GNU coreutils` (for running tests) +* `libevent` (for gotwebd) DragonFlyBSD: @@ -45,6 +48,7 @@ DragonFlyBSD: * `pkgconf` * `openssl` * `GNU coreutils` (for running tests) +* `libevent` (for gotwebd) Darwin (MacOS): @@ -55,6 +59,7 @@ Darwin (MacOS): * `openssl` * `ossp-uuid` * `GNU coreutils` (for running tests) +* `libevent` (for gotwebd) TESTS (REGRESS) ===============