about summary refs log tree commit diff
path: root/configure
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-06-18 10:03:57 -0400
committerJune McEnroe <june@causal.agency>2022-06-18 10:03:57 -0400
commit511f999dfab4fce8d31af9c388d616ce45a88398 (patch)
treecb96078d99295f62b1d25af3329b84ac2897df04 /configure
parentedit: Validate size is power of two (diff)
downloadpounce-511f999dfab4fce8d31af9c388d616ce45a88398.tar.gz
pounce-511f999dfab4fce8d31af9c388d616ce45a88398.zip
Flatten extras to top-level directory
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 1d94084..62a3c1a 100755
--- a/configure
+++ b/configure
@@ -27,6 +27,12 @@ for opt; do
 		(--prefix=*) echo "PREFIX = ${opt#*=}" ;;
 		(--bindir=*) echo "BINDIR = ${opt#*=}" ;;
 		(--mandir=*) echo "MANDIR = ${opt#*=}" ;;
+		(--enable-edit)	echo 'BINS += pounce-edit' ;;
+		(--enable-notify) echo 'BINS += pounce-notify' ;;
+		(--enable-palaver)
+			echo 'BINS += pounce-palaver'
+			config libcurl sqlite3
+			;;
 		(*) echo "warning: unsupported option ${opt}" >&2 ;;
 	esac
 done