aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-08-31 13:38:22 +0100
committerChristopher Baines <mail@cbaines.net>2020-08-31 13:38:22 +0100
commit5acbc44d2d6c89fd984ef2353f81f73d4e227a33 (patch)
treeff657d482aa9d95ad1e62585c0b2432e7b190e26 /configure.ac
downloadprometheus-5acbc44d2d6c89fd984ef2353f81f73d4e227a33.tar
prometheus-5acbc44d2d6c89fd984ef2353f81f73d4e227a33.tar.gz
Initial commit
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..197a687
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,14 @@
+AC_INIT([guile-prometheus], [0.1])
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+
+GUILE_PKG([3.0])
+GUILE_PROGS
+if test "x$GUILD" = "x"; then
+ AC_MSG_ERROR(['guild' binary not found; please check your guile 3 installation.])
+fi
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
+
+AC_OUTPUT