diff options
author | June McEnroe <june@causal.agency> | 2021-04-30 17:35:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-04-30 17:35:54 -0400 |
commit | 50b094ce5a75901ede92f6a5b6ba147379832e9c (patch) | |
tree | 3edd7544903071d7be96c9d72d939138a93af243 /extra/palaver/configure | |
parent | palaver: Add -s flag for case-sensitive matching (diff) | |
download | pounce-50b094ce5a75901ede92f6a5b6ba147379832e9c.tar.gz pounce-50b094ce5a75901ede92f6a5b6ba147379832e9c.zip |
Rename contrib to extra
Diffstat (limited to 'extra/palaver/configure')
-rwxr-xr-x | extra/palaver/configure | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/extra/palaver/configure b/extra/palaver/configure new file mode 100755 index 0000000..65c82fe --- /dev/null +++ b/extra/palaver/configure @@ -0,0 +1,45 @@ +#!/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 + (OpenBSD) + ldlibs -ltls + config libcurl sqlite3 + ;; + (Linux) + cflags -D_GNU_SOURCE + config libcurl libtls sqlite3 + ;; + (*) + config libcurl libtls sqlite3 + ;; +esac |