about summary refs log tree commit diff
path: root/configure
blob: bd6d39d48ef9efeecd538b140ea278052ded32b5 (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
#!/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#*=}" ;;
		(--datadir=*) echo "DATADIR = ${opt#*=}" ;;
		(*) echo "warning: unsupported option ${opt}" >&2 ;;
	esac
done

case "$(uname)" in
	(Darwin)
		config libtls
		ldlibs -liconv
		;;
	(*)
		config libtls
		;;
esac