/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.m427720644editdlrm
dmalloc.m49060644editdlrm
extra-recurs.m47380644editdlrm
gcj.m46490644editdlrm
init.m484260644editdlrm
install-sh.m46810644editdlrm
lead-dot.m46410644editdlrm
lex.m46890644editdlrm
lispdir.m421520644editdlrm
maintainer.m416560644editdlrm
make.m414340644editdlrm
missing.m410520644editdlrm
mkdirp.m413490644editdlrm
obsolete.m410080644editdlrm
options.m410900644editdlrm
prog-cc-c-o.m416910644editdlrm
python.m4144980644editdlrm
runlog.m47180644editdlrm
sanity.m426460644editdlrm
silent.m419110644editdlrm
strip.m413920644editdlrm
substnot.m46750644editdlrm
tar.m444710644editdlrm
upc.m48360644editdlrm
vala.m418840644editdlrm
Edit: /usr/share/aclocal-1.16/dmalloc.m4 (906B)
## ----------------------------------- ## -*- Autoconf -*- ## Check if --with-dmalloc was given. ## ## From Franc,ois Pinard ## ## ----------------------------------- ## # Copyright (C) 1996-2021 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. AC_DEFUN([AM_WITH_DMALLOC], [AC_MSG_CHECKING([if malloc debugging is wanted]) AC_ARG_WITH([dmalloc], [AS_HELP_STRING([--with-dmalloc], [use dmalloc, as in http://www.dmalloc.com])], [if test "$withval" = yes; then AC_MSG_RESULT([yes]) AC_DEFINE([WITH_DMALLOC], [1], [Define if using the dmalloc debugging malloc package]) LIBS="$LIBS -ldmalloc" LDFLAGS="$LDFLAGS -g" else AC_MSG_RESULT([no]) fi], [AC_MSG_RESULT([no])]) ])