summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-08-06 22:17:42 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-08-06 22:17:42 +0000
commit7ec7ba37dbeeee678ec573bcfe0594660fbe5195 (patch)
treea7c5e9b4961cad5bc1efbd5313f22bdf8046e89e
parent81f3fcbafd0cb7cb70ec923a845926d7cc1bf4b1 (diff)
downloadnetsurf-7ec7ba37dbeeee678ec573bcfe0594660fbe5195.tar.gz
netsurf-7ec7ba37dbeeee678ec573bcfe0594660fbe5195.tar.bz2
Fix debug build
svn path=/trunk/netsurf/; revision=3477
-rw-r--r--debug/netsurfd.c1
-rw-r--r--utils/config.h6
2 files changed, 5 insertions, 2 deletions
diff --git a/debug/netsurfd.c b/debug/netsurfd.c
index 847b2e24d..0da88195a 100644
--- a/debug/netsurfd.c
+++ b/debug/netsurfd.c
@@ -29,6 +29,7 @@
#include "utils/utils.h"
int done, destroyed;
+bool verbose_log = true;
bool print_active = false;
void *hotlist_toolbar = NULL;
void *hotlist_window = NULL;
diff --git a/utils/config.h b/utils/config.h
index 3dbc0a6df..2db084634 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -62,8 +62,10 @@ char *strndup(const char *s, size_t n);
#else
/* We're likely to have a working mmap() */
#define WITH_MMAP
- /* Use librsvg and Cairo for rendering SVG */
- #define WITH_RSVG
+ #if !defined(DEBUG_BUILD)
+ /* Use librsvg and Cairo for rendering SVG */
+ #define WITH_RSVG
+ #endif
#endif
#if defined(WITH_NS_SVG) && defined(WITH_RSVG)