summary refs log tree commit diff
path: root/configure
blob: f007db380ffa6936e92ad26f379ac6de82803c9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/sh
set -eu

cflags() {
	echo "CFLAGS += $*"
}
ldlibs() {
	echo "LDLIBS ${o:-}= $*"
	o=+
}
config() {
	pkg-config --print-errors "$@"
	cflags $(pkg-config --cflags "$@")
	ldlibs $(pkg-config --libs "$@")
}
defstr() {
	cflags "-D'$1=\"$2\"'"
}
defvar() {
	defstr "$1" "$(pkg-config --variable=$3 $2)${4:-}"
}

exec >config.mk

for opt; do
	case "${opt}" in
		(--prefix=*) echo "PREFIX = ${opt#*=}" ;;
		(--mandir=*) echo "MANDIR = ${opt#*=}" ;;
		(*) echo "warning: unsupported option ${opt}" >&2 ;;
	esac
done

case "$(uname)" in
	(FreeBSD)
		ldlibs -lcrypt
		config libcrypto libtls
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		defstr CERTBOT_PATH /usr/local/etc/letsencrypt
		echo 'INSTALLS = install-rcs install-dirs'
		;;
	(Linux)
		cflags -D_GNU_SOURCE
		ldlibs -lcrypt
		config libcrypto libtls
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
	(Darwin)
		config libcrypto libtls
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
	(*)
		ldlibs -lcrypt
		config libcrypto libtls
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
esac