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 /contrib/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 'contrib/palaver/configure')
-rwxr-xr-x | contrib/palaver/configure | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/contrib/palaver/configure b/contrib/palaver/configure deleted file mode 100755 index 65c82fe..0000000 --- a/contrib/palaver/configure +++ /dev/null @@ -1,45 +0,0 @@ -#!/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 |