a7f5634511
- Add a patch to fix memory leak (SF bugs #1103644). - Add WITH_DMALLOC knob (with a lot of patches to fix #include order).
12 lines
293 B
C
12 lines
293 B
C
--- snmplib/parse.c.orig Tue Jan 25 10:04:35 2005
|
|
+++ snmplib/parse.c Tue Jan 25 10:05:02 2005
|
|
@@ -106,6 +106,9 @@
|
|
#if defined(HAVE_REGEX_H) && defined(HAVE_REGCOMP)
|
|
#include <regex.h>
|
|
#endif
|
|
+#if HAVE_UNISTD_H
|
|
+#include <unistd.h>
|
|
+#endif
|
|
#if HAVE_DMALLOC_H
|
|
#include <dmalloc.h>
|
|
#endif
|