]> git.meshlink.io Git - meshlink/commitdiff
Fix warnings from autoconf 2.71.
authorGuus Sliepen <guus@meshlink.io>
Fri, 2 Apr 2021 18:59:13 +0000 (20:59 +0200)
committerGuus Sliepen <guus@meshlink.io>
Thu, 15 Apr 2021 18:30:51 +0000 (20:30 +0200)
This fixes the use of deprecated functions. Also bump the minimum required
version of autoconf to 2.69.

configure.ac

index deea29224180ef465f7f401ecf7d9526e09e40d7..592fb15dc7c07c946c1924a6ad774feb8521a6f1 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_PREREQ(2.61)
+AC_PREREQ(2.69)
 AC_INIT([MeshLink], [0.1])
 DX_PS_FEATURE(OFF)
 DX_INIT_DOXYGEN([MeshLink], [$(top_srcdir)/Doxyfile])
@@ -19,12 +19,12 @@ AC_DEFINE([_POSIX_C_SOURCE], 200809L, [Enable POSIX features])
 dnl Checks for programs.
 AM_PROG_CC_C_O
 AM_PROG_AR
-AC_PROG_CC_C99
+AC_PROG_CC
 AC_PROG_CXX
 AC_PROG_CPP
 AC_PROG_INSTALL
 AC_PROG_LN_S
-AC_PROG_LIBTOOL
+LT_INIT
 AX_PTHREAD
 
 dnl Check and set OS
@@ -126,7 +126,6 @@ MeshLink_ATTRIBUTE(__malloc__)
 MeshLink_ATTRIBUTE(__warn_unused_result__)
 
 dnl Checks for library functions.
-AC_TYPE_SIGNAL
 AC_CHECK_FUNCS([asprintf fchmod fork gettimeofday random pselect select setns strdup usleep getifaddrs freeifaddrs],
   [], [], [#include "$srcdir/src/have.h"]
 )