From daf7a52dd67e7ac2149dba337cc156c9ba308987 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 17 Apr 2009 00:54:27 +0000 Subject: Hubbub is no longer optional. Remove libxml2 parser binding. svn path=/trunk/netsurf/; revision=7115 --- riscos/gui.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'riscos') diff --git a/riscos/gui.c b/riscos/gui.c index ced9cfa14..5d70a0d8f 100644 --- a/riscos/gui.c +++ b/riscos/gui.c @@ -33,9 +33,7 @@ #include #include #include -#ifdef WITH_HUBBUB #include -#endif #include "oslib/font.h" #include "oslib/help.h" #include "oslib/hourglass.h" @@ -271,12 +269,10 @@ static void ro_msg_save_desktop(wimp_message *message); static void ro_msg_window_info(wimp_message *message); static void ro_gui_view_source_bounce(wimp_message *message); -#ifdef WITH_HUBBUB static void *myrealloc(void *ptr, size_t len, void *pw) { return realloc(ptr, len); } -#endif /** * Initialise the gui (RISC OS specific part). @@ -317,11 +313,9 @@ void gui_init(int argc, char** argv) ro_plot_patterned_lines = false; } -#ifdef WITH_HUBBUB if (hubbub_initialise("NetSurf:Resources.Aliases", myrealloc, NULL) != HUBBUB_OK) die("Failed to initialise HTML parsing library."); -#endif /* Read in the options */ options_read("NetSurf:Choices"); @@ -778,10 +772,8 @@ void gui_quit(void) xwimp_close_down(task_handle); free(default_stylesheet_url); free(adblock_stylesheet_url); -#ifdef WITH_HUBBUB /* We don't care if this fails */ hubbub_finalise(myrealloc, NULL); -#endif xhourglass_off(); } -- cgit v1.2.3