GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / share / aclocal-1.11 / dmalloc.m4
blob449901544b6815e7086a2bf0b94179f3e1eee1ab
1 ## ----------------------------------- ##                   -*- Autoconf -*-
2 ## Check if --with-dmalloc was given.  ##
3 ## From Franc,ois Pinard               ##
4 ## ----------------------------------- ##
6 # Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2005
7 # Free Software Foundation, Inc.
9 # This file is free software; the Free Software Foundation
10 # gives unlimited permission to copy and/or distribute it,
11 # with or without modifications, as long as this notice is preserved.
13 # serial 3
15 AC_DEFUN([AM_WITH_DMALLOC],
16 [AC_MSG_CHECKING([if malloc debugging is wanted])
17 AC_ARG_WITH(dmalloc,
18 [  --with-dmalloc          use dmalloc, as in
19                           http://www.dmalloc.com/dmalloc.tar.gz],
20 [if test "$withval" = yes; then
21   AC_MSG_RESULT(yes)
22   AC_DEFINE(WITH_DMALLOC,1,
23             [Define if using the dmalloc debugging malloc package])
24   LIBS="$LIBS -ldmalloc"
25   LDFLAGS="$LDFLAGS -g"
26 else
27   AC_MSG_RESULT(no)
28 fi], [AC_MSG_RESULT(no)])
31 AU_DEFUN([fp_WITH_DMALLOC], [AM_WITH_DMALLOC])