/usr/share/aclocal/ax_have_adns.m4 is in autoconf-archive 20160916-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | # ===========================================================================
# http://www.gnu.org/software/autoconf-archive/ax_have_adns.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_HAVE_ADNS([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
#
# DESCRIPTION
#
# Check whether the GNU ADNS library available from
# http://www.chiark.greenend.org.uk/~ian/adns/ is installed on this
# system. The test is known to work with version 1.4 (or later). If the
# library is found, the flags necessary to link it are added to $LIBS.
#
# LICENSE
#
# Copyright (c) 2008 Peter Simons <simons@cryp.to>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice
# and this notice are preserved. This file is offered as-is, without any
# warranty.
#serial 6
AC_DEFUN([AX_HAVE_ADNS], [dnl
AC_CHECK_HEADER([adns.h], [dnl
AC_SEARCH_LIBS([adns_init], [adns], [dnl
AC_CACHE_CHECK([for GNU ADNS], [ax_cv_have_adns], [dnl
AC_LINK_IFELSE([dnl
AC_LANG_PROGRAM(
[#include <adns.h>],
[int rc; rc = adns_init((adns_state *)(0), adns_if_none, (FILE *)(0));])],
[ax_cv_have_adns=yes],
[ax_cv_have_adns=no])])])])
AS_IF([test "${ax_cv_have_adns}" = "yes"], [$1], [$2])
])dnl
|