pkgsrc/www/arena/patches/patch-ae
fredb d74b9355fa Set NODEBUG unconditionally, to make it easier to build arena with
debugging symbols. "NODEBUG" means, don't try to debug libwww;
the corresponding symbol for arena is ARENA_DEBUG. Still keep
--without-debug by default--it's easy enough to reproduce a coredump
on some particular URL.
2000-02-10 12:05:25 +00:00

47 lines
1.2 KiB
Text

$NetBSD: patch-ae,v 1.5 2000/02/10 12:05:28 fredb Exp $
--- arena.h.in.orig Sun Mar 8 11:35:06 1998
+++ arena.h.in Thu Feb 10 05:20:53 2000
@@ -62,6 +64,9 @@
# define LIBWWW_TRACE_MASK SHOW_ALL_TRACE
#endif
+ /* Needed to unset HTDEBUG in HTUtils.h */
+# define NODEBUG 1
+
/* Persistent cache location.
* If defined as "" (i.e. null), then NO Caching will be done...
* Then the defaults will be taken from Xdefaults or ARENA_DEFAULT_CACHE_ROOT
@@ -267,9 +272,9 @@
# define ARENA_FLYBY_HINT 1
# define ARENA_FLYBY_TERSE 2
# define ARENA_FLYBY_VERBOSE 3
-# define ARENA_FLYBY_HOW_MUCH ARENA_FLYBY_HINT
+# define ARENA_FLYBY_HOW_MUCH ARENA_FLYBY_VERBOSE
-# define ARENA_FLYBY_TIMER_INCREMENT 2
+# define ARENA_FLYBY_TIMER_INCREMENT 0
#endif
@@ -445,6 +450,20 @@
*/
#ifndef HAVE_STRSTR
# undef HAVE_STRSTR
+#endif
+
+/* Define the HAVE_SETITIMER preprocessor variable,
+ * if you have setitimer().
+ */
+#ifndef HAVE_SETITIMER
+# undef HAVE_SETITIMER
+#endif
+
+/* Define the SETITIMER_USES_TIMEVAL preprocessor variable,
+ * if your setitimer() uses timevals (uS resolution).
+ */
+#ifndef SETITIMER_USES_TIMEVAL
+# undef SETITIMER_USES_TIMEVAL
#endif