1 ## ----------------------------------- ## -*- Autoconf -*-
2 ## Check if --with-dmalloc was given. ##
3 ## From Franc,ois Pinard ##
4 ## ----------------------------------- ##
6 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
8 # This file is free software; the Free Software Foundation
9 # gives unlimited permission to copy and/or distribute it,
10 # with or without modifications, as long as this notice is preserved.
12 AC_DEFUN([AM_WITH_DMALLOC],
13 [AC_MSG_CHECKING([if malloc debugging is wanted])
14 AC_ARG_WITH([dmalloc],
15 [AS_HELP_STRING([--with-dmalloc],
16 [use dmalloc, as in http://www.dmalloc.com])],
17 [if test "$withval" = yes; then
19 AC_DEFINE([WITH_DMALLOC], [1],
20 [Define if using the dmalloc debugging malloc package])
21 LIBS="$LIBS -ldmalloc"
25 fi], [AC_MSG_RESULT([no])])