From 50b094ce5a75901ede92f6a5b6ba147379832e9c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 30 Apr 2021 17:35:54 -0400 Subject: Rename contrib to extra --- extra/palaver/configure | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 extra/palaver/configure (limited to 'extra/palaver/configure') 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 -- cgit 1.4.1