1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-09 21:30:42 +00:00

build: define min autotools version and set url

This commit is contained in:
Michael Vetter 2022-02-17 18:59:41 +01:00
parent 201ef7394a
commit c79ba8f80e

View File

@ -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" ])