about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-02-17 18:59:41 +0100
committerMichael Vetter <jubalh@iodoru.org>2022-02-18 13:59:14 +0100
commitc79ba8f80ebeb68e1b864331958cac2c24fc1a13 (patch)
treee37ccf5794ef591a336e178893e0ab59ec78af27
parent201ef7394a81bbdb6c2936170ca8d625e7d573d6 (diff)
downloadprofani-tty-c79ba8f80ebeb68e1b864331958cac2c24fc1a13.tar.gz
build: define min autotools version and set url
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 1ce4d647..b9b4aca1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 
-AC_INIT([profanity],[0.12.0],[jubalh@iodoru.org])
+AC_PREREQ([2.69])
+AC_INIT([profanity],[0.12.0],[jubalh@iodoru.org],[profanity],[https://profanity-im.github.io/])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_SRCDIR([src/main.c])
@@ -128,7 +129,7 @@ else
 fi
 
 # threading
-ACX_PTHREAD([], [AC_MSG_ERROR([pthread is required])])
+AX_PTHREAD([],[AC_MSG_ERROR([pthread is required])])
 LIBS="$PTHREAD_LIBS $LIBS"
 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
 AS_IF([test "x$PTHREAD_CC" != x], [ CC="$PTHREAD_CC" ])