/usr/share/aclocal/yad.m4 is in yad 0.27.0-1.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 | ## -*- Autoconf -*-
#
# Copyright (c) 2008-2011, Vitor Ananjevsky <ananasik@gmail.com>
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# AM_PATH_YAD([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
# ---------------------------------------------------------------------------
AC_DEFUN([AM_PATH_YAD],[
m4_if([$1],[],[
dnl No version check is needed.
if test -z "$YAD"; then
AC_PATH_PROG([YAD], yad, :)
fi
], [
dnl A version check is needed.
if test -z "$YAD"; then
AC_PATH_PROG([YAD], yad, :)
fi
AC_MSG_CHECKING([whether yad version >= $1])
m4_define([yad_version],[0.27.0])
m4_if(m4_version_compare(yad_version,[$1]),[-1],
[AC_MSG_ERROR([too old (]yad_version[)])],
[AC_MSG_RESULT(yad_version)])
])
if test "$YAD" = :; then
dnl Run any user-specified action, or abort.
m4_default([$3], [AC_MSG_ERROR([Yad not found])])
else
dnl Run any user-specified action.
m4_if([$2],[],[true],[$2])
AC_SUBST([YAD])
fi
])
|