Commit Diff


commit - ff36aeea6fe48eb9071eccc41d2a31a47d109be3
commit + 60595c94fcdd89f20a7f00f5ed2347fd4764c2c0
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)
 ===============