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

exec >config.mk

case "$(uname)" in
	(FreeBSD)
		if ! pkg info -e libressl || ! pkg info -e sqlite3; then
			echo 'LibreSSL & SQLite3 required' >&2
			exit 1
		fi
		prefix=$(pkg query '%p' sqlite3)
		cat <<-EOF
		CFLAGS += -I${prefix}/include
		CFLAGS += -D'SQLITE3_BIN="${prefix}/bin/sqlite3"'
		LDFLAGS += -L${prefix}/lib
		EOF
		exit
		;;
	(Linux)
		cat <<-EOF
		CFLAGS += -D_GNU_SOURCE
		RCS =
		EOF
		;;
esac

libs='libtls sqlite3'
pkg-config --print-errors $libs

cat <<EOF
CFLAGS += $(pkg-config --cflags $libs)
CFLAGS += -D'SQLITE3_BIN="$(pkg-config --variable=prefix sqlite3)/bin/sqlite3"'
LDFLAGS += $(pkg-config --libs-only-L $libs)
LDLIBS = $(pkg-config --libs-only-l sqlite3)
LDLIBS_litterbox = $(pkg-config --libs-only-l libtls)
EOF
5-08-12 17:43:08 +0200'>2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt