summary refs log tree commit diff
path: root/configure
blob: d59e7ba77e6f95cd0c6385882f7a273146c03a77 (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
57
58
#!/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 -lncursesw
		config libtls
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
	(OpenBSD)
		ldlibs -lncursesw -ltls
		defstr OPENSSL_BIN /usr/bin/openssl
		;;
	(Linux)
		cflags -Wno-pedantic -D_GNU_SOURCE
		config libtls ncursesw
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
	(Darwin)
		cflags -D__STDC_WANT_LIB_EXT1__=1
		cflags "-D'explicit_bzero(b,l)=memset_s((b),(l),0,(l))'"
		config libtls ncursesw
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
	(*)
		config libtls ncursesw
		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
		;;
esac
tle='2015-08-12 16:57:30 +0200'>2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping This will allow us to use this nice wrapper function elsewhere, avoiding dealing with the diff queue when we only need to inspect a filepair. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld Otherwise we can't easily embed links to other /about/ pages. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2015-08-12filters: apply HTML escapingLazaros Koromilas http://www.w3.org/International/questions/qa-escapes#use 2015-08-12git: update to v2.5.0Christian Hesse Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de> 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt