Fix debug build

svn path=/trunk/netsurf/; revision=3477
This commit is contained in:
John Mark Bell 2007-08-06 22:17:42 +00:00
parent 81f3fcbafd
commit 7ec7ba37db
2 changed files with 5 additions and 2 deletions

View File

@ -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;

View File

@ -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)