diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.7 | 10 | ||||
-rwxr-xr-x | configure | 4 |
3 files changed, 13 insertions, 3 deletions
diff --git a/Makefile b/Makefile index b8f6177..ccad855 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PREFIX ?= /usr/local -MANDIR ?= ${PREFIX}/share/man +MANDIR ?= ${PREFIX}/man CFLAGS += -std=c11 -Wall -Wextra -Wpedantic LDLIBS = -ltls diff --git a/README.7 b/README.7 index cd6ac64..24b6863 100644 --- a/README.7 +++ b/README.7 @@ -1,4 +1,4 @@ -.Dd March 2, 2021 +.Dd March 3, 2021 .Dt README 7 .Os "Causal Agency" . @@ -30,7 +30,13 @@ provided by either (for OpenSSL) or by LibreSSL. It targets -.Fx . +.Fx +and +.Ox . +On +.Ox , +it additionally requires +.Sy libiconv . . .Bd -literal -offset indent \&./configure diff --git a/configure b/configure index b628b43..00f19e6 100755 --- a/configure +++ b/configure @@ -31,6 +31,10 @@ for opt; do done case "$(uname)" in + (OpenBSD) + cflags -I/usr/local/include + ldlibs -L/usr/local/lib -liconv -ltls + ;; (Darwin) config libtls ldlibs -liconv -lresolv |