summary refs log tree commit diff
path: root/configure
blob: 293678077d1407cdb99e68caf75d3e65cc497b4d (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
#!/bin/sh
set -eu

base='-lcrypt'
libs='libcrypto libtls'

exec >config.mk

case "$(uname)" in
	(Darwin)
		base=''
		;;
	(FreeBSD)
		if ! pkg info -e libressl; then
			echo 'LibreSSL required' >&2
			exit 1
		fi
		prefix=$(pkg query '%p' libressl)
		cat <<-EOF
		MANDIR = \${PREFIX}/man
		CFLAGS += -I${prefix}/include
		CFLAGS += -D'OPENSSL_BIN="${prefix}/bin/openssl"'
		LDFLAGS += -L${prefix}/lib
		EOF
		exit
		;;
	(Linux)
		cat <<-EOF
		CFLAGS += -D_GNU_SOURCE
		CFLAGS += -D'CERTBOT_PATH="/etc/letsencrypt"'
		LDLIBS.calico = \${LDLIBS}
		RCS =
		DIRS =
		EOF
		;;
esac

pkg-config --print-errors $libs

cat <<EOF
CFLAGS += $(pkg-config --cflags $libs)
CFLAGS += -D'OPENSSL_BIN="$(pkg-config --variable=prefix openssl)/bin/openssl"'
LDFLAGS += $(pkg-config --libs-only-L $libs)
LDLIBS = $base $(pkg-config --libs-only-l $libs)
EOF
ee9f23571d2d1ed2ef2e340&follow=1'>Consume entire bodyJune McEnroe 2019-09-10Add title -v flagJune McEnroe 2019-09-10Use curl error bufferJune McEnroe 2019-09-10Set Accept-Encoding in titleJune McEnroe 2019-09-08Set title User-AgentJune McEnroe 2019-09-07Add -x flag to titleJune McEnroe 2019-09-07Ignore SIGPIPE in relayJune McEnroe 2019-09-07Add A Memory Called EmpireJune McEnroe 2019-09-05Handle lack of Content-TypeJune McEnroe 2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe 2019-09-05Decode entities in titlesJune McEnroe 2019-09-05Print title as soon as it's availableJune McEnroe 2019-09-05Use CURL_PREFIX to set flagsJune McEnroe 2019-09-05Add titleJune McEnroe 2019-09-04Add Avorter n'est pas tuerJune McEnroe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroe