summaryrefslogtreecommitdiff
path: root/m4/dmalloc.m4
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1998-10-09 11:10:23 +0000
committerTom Tromey <tromey@redhat.com>1998-10-09 11:10:23 +0000
commita150fe6f017a5d2d197b586e760f7ba852c02b1c (patch)
treedcb1ffc72baec8cda3f5b0d5d576ee17cf9d61e1 /m4/dmalloc.m4
parent3e2803edcc8a3697e72f8cd55bb6a55e05cceb87 (diff)
downloadautomake-a150fe6f017a5d2d197b586e760f7ba852c02b1c.tar.gz
* m4/winsz.m4 (AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL): Use
3-argument form of AC_DEFINE. * m4/regex.m4 (AM_WITH_REGEX): Use 3-argument form of AC_DEFINE. * m4/ptrdiff.m4 (AM_TYPE_PTRDIFF_T): Use 3-argument form of AC_DEFINE. * m4/protos.m4 (AM_C_PROTOTYPES):Use 3-argument form of AC_DEFINE. * m4/obstack.m4 (AM_FUNC_OBSTACK): Use 3-argument form of AC_DEFINE. * m4/init.m4 (AM_INIT_AUTOMAKE): Use 3-argument form of AC_DEFINE. * m4/dmalloc.m4 (AM_WITH_DMALLOC): Use 3-argument form of AC_DEFINE.
Diffstat (limited to 'm4/dmalloc.m4')
-rw-r--r--m4/dmalloc.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/dmalloc.m4 b/m4/dmalloc.m4
index 365ef8039..e1e3cdb17 100644
--- a/m4/dmalloc.m4
+++ b/m4/dmalloc.m4
@@ -12,7 +12,8 @@ AC_ARG_WITH(dmalloc,
ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz],
[if test "$withval" = yes; then
AC_MSG_RESULT(yes)
- AC_DEFINE(WITH_DMALLOC)
+ AC_DEFINE(WITH_DMALLOC,1,
+ [Define if using the dmalloc debugging malloc package])
LIBS="$LIBS -ldmalloc"
LDFLAGS="$LDFLAGS -g"
else