/usr/share/aclocal-1.16
NameSizeModeActions
internal/-0755rm
amversion.m416170644editdlrm
ar-lib.m420660644editdlrm
as.m47670644editdlrm
auxdir.m424070644editdlrm
cond-if.m410300644editdlrm
cond.m410360644editdlrm
depend.m472810644editdlrm
depout.m426370644editdlrm
dmalloc.m49060644editdlrm
extra-recurs.m47380644editdlrm
gcj.m46490644editdlrm
init.m480320644editdlrm
install-sh.m46810644editdlrm
lead-dot.m46410644editdlrm
lex.m46890644editdlrm
lispdir.m421520644editdlrm
maintainer.m416560644editdlrm
make.m414340644editdlrm
missing.m411550644editdlrm
mkdirp.m413490644editdlrm
obsolete.m410080644editdlrm
options.m410900644editdlrm
prog-cc-c-o.m416910644editdlrm
python.m494160644editdlrm
runlog.m47180644editdlrm
sanity.m426460644editdlrm
silent.m419110644editdlrm
strip.m413920644editdlrm
substnot.m46750644editdlrm
tar.m444710644editdlrm
upc.m48360644editdlrm
vala.m416550644editdlrm
Edit: /usr/share/aclocal-1.16/vala.m4 (1655B)
# Autoconf support for the Vala compiler # Copyright (C) 2008-2018 Free Software Foundation, Inc. # # 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. # Check whether the Vala compiler exists in $PATH. If it is found, the # variable VALAC is set pointing to its absolute path. Otherwise, it is # simply set to 'valac'. # Optionally a minimum release number of the compiler can be requested. # If the ACTION-IF-FOUND parameter is given, it will be run if a proper # Vala compiler is found. # Similarly, if the ACTION-IF-FOUND is given, it will be run if no proper # Vala compiler is found. It defaults to simply print a warning about the # situation, but otherwise proceeding with the configuration. # # AM_PROG_VALAC([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # -------------------------------------------------------------------------- AC_DEFUN([AM_PROG_VALAC], [AC_PATH_PROG([VALAC], [valac], [valac]) AS_IF([test "$VALAC" != valac && test -n "$1"], [AC_MSG_CHECKING([whether $VALAC is at least version $1]) am__vala_version=`$VALAC --version | sed 's/Vala *//'` AS_VERSION_COMPARE([$1], ["$am__vala_version"], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) VALAC=valac])]) if test "$VALAC" = valac; then m4_default([$3], [AC_MSG_WARN([no proper vala compiler found]) AC_MSG_WARN([you will not be able to compile vala source files])]) else m4_default([$2], [:]) fi])