From: Peter Palfrader Date: Thu, 3 Feb 2005 07:29:52 +0000 (+0000) Subject: Also check for dmalloc.h X-Git-Tag: tor-0.1.0.1-rc~330 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=378172ff77e42c2dc9a2fff4e6876afddfd43110;p=thirdparty%2Ftor.git Also check for dmalloc.h svn:r3510 --- diff --git a/configure.in b/configure.in index 1dd4eb02f7..e8e80fe5ee 100644 --- a/configure.in +++ b/configure.in @@ -228,6 +228,7 @@ fi], [ dmalloc=0; AC_MSG_RESULT(no) ] ) if [[ $dmalloc -eq 1 ]]; then + AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?)) AC_SEARCH_LIBS(dmalloc_malloc, [dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.)) AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library]) AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])