diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-02-17 18:59:41 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-02-18 13:59:14 +0100 |
commit | c79ba8f80ebeb68e1b864331958cac2c24fc1a13 (patch) | |
tree | e37ccf5794ef591a336e178893e0ab59ec78af27 | |
parent | 201ef7394a81bbdb6c2936170ca8d625e7d573d6 (diff) | |
download | profani-tty-c79ba8f80ebeb68e1b864331958cac2c24fc1a13.tar.gz |
build: define min autotools version and set url
-rw-r--r-- | configure.ac | 5 |
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" ]) |