summary refs log tree commit diff
path: root/contrib/palaver/configure
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-11 14:54:40 -0400
committerJune McEnroe <june@causal.agency>2020-08-11 14:58:57 -0400
commitab9ddde3bf09ab47606cb26060ac124c92ea7515 (patch)
tree0b830029214f5c966a47bdb0bbfa93742492a85a /contrib/palaver/configure
parentImplement stub of palaverapp.com capability (diff)
downloadpounce-ab9ddde3bf09ab47606cb26060ac124c92ea7515.tar.gz
pounce-ab9ddde3bf09ab47606cb26060ac124c92ea7515.zip
contrib/palaver: Add configure script
Diffstat (limited to '')
-rwxr-xr-xcontrib/palaver/configure49
1 files changed, 49 insertions, 0 deletions
diff --git a/contrib/palaver/configure b/contrib/palaver/configure
new file mode 100755
index 0000000..9a7e8d8
--- /dev/null
+++ b/contrib/palaver/configure
@@ -0,0 +1,49 @@
+#!/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)
+		config libcurl libtls sqlite3
+		echo 'INSTALLS = install-rcs'
+		;;
+	(OpenBSD)
+		ldlibs -ltls
+		config libcurl sqlite3
+		;;
+	(Linux)
+		cflags -D_GNU_SOURCE
+		config libcurl libtls sqlite3
+		;;
+	(*)
+		config libcurl libtls sqlite3
+		;;
+esac
bject'>Collapse simple linksJune McEnroe 2020-02-12Move catgirl up the pageJune McEnroe 2020-02-12Update catgirl pty grabJune McEnroe 2020-02-12Link to cgit /about pages where appropriateJune McEnroe 2020-02-11Separate LINKS from BINS for html to workJune McEnroe 2020-02-11Add margin to Bl-bullet itemsJune McEnroe 2020-02-10Match URLs inside parens or with paired parens insideJune McEnroe 2020-02-10Duplicate effective URL before passing it back to curlJune McEnroe Apparently sometimes it didn't like receiving its own internal storage to parse again. Understandable. 2020-02-09Add To Be Taught, If FortunateJune McEnroe 2020-02-04Add The Future of Another TimelineJune McEnroe Wow. One of the best I've read. 2020-01-31Reorganize the Makefile for the umpteenth timeJune McEnroe Broke out LDLIBS for each bin, and made everything more uniform. 2020-01-28Change scout sensitivity to 1.4June McEnroe idk it seems to work. 2020-01-28Import shows.txtJune McEnroe