Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1-src/m4/dmalloc.m4

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 ## ----------------------------------- ##
2 ## Check if --with-dmalloc was given. ##
3 ## From Franc,ois Pinard ##
4 ## ----------------------------------- ##
5
6 # serial 1
7
8 AC_DEFUN([AM_WITH_DMALLOC],
9 [AC_MSG_CHECKING([if malloc debugging is wanted])
10 AC_ARG_WITH(dmalloc,
11 [ --with-dmalloc use dmalloc, as in
12 http://www.dmalloc.com/dmalloc.tar.gz],
13 [if test "$withval" = yes; then
14 AC_MSG_RESULT(yes)
15 AC_DEFINE(WITH_DMALLOC,1,
16 [Define if using the dmalloc debugging malloc package])
17 LIBS="$LIBS -ldmalloc"
18 LDFLAGS="$LDFLAGS -g"
19 else
20 AC_MSG_RESULT(no)
21 fi], [AC_MSG_RESULT(no)])
22 ])
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1-src/m4/dirname.m4 ('k') | bison/src/bison/2.4.1/bison-2.4.1-src/m4/dos.m4 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698