Remove inclusion of my async backing store code whilst it's not being used.

This commit is contained in:
Chris Young 2015-03-31 22:48:27 +01:00
parent 82c7a7a4ba
commit 8871149585
4 changed files with 8 additions and 3 deletions

View File

@ -36,6 +36,11 @@ NETSURF_USE_NSSVG := YES
# Valid options: NO
NETSURF_USE_JS := NO
# Enable building the source object cache filesystem based backing store.
# implementation.
# Valid options: YES, NO
NETSURF_FS_BACKING_STORE := YES
# Optimisation levels
CFLAGS += -fomit-frame-pointer -gstabs

View File

@ -74,8 +74,7 @@ S_AMIGA := gui.c tree.c history.c hotlist.c schedule.c file.c \
sslcert.c gui_options.c print.c theme.c drag.c icon.c libs.c \
datatypes.c dt_picture.c dt_anim.c dt_sound.c plugin_hack.c \
stringview/stringview.c stringview/urlhistory.c rtg.c \
agclass/amigaguide_class.c fs_backing_store.c os3support.c \
font_bitmap.c
agclass/amigaguide_class.c os3support.c font_bitmap.c
S_AMIGA := $(addprefix amiga/,$(S_AMIGA))
# This is the final source build list

View File

@ -19,5 +19,6 @@
#ifndef AMIGA_FS_BACKING_STORE_H
#define AMIGA_FS_BACKING_STORE_H
extern struct gui_llcache_table *amiga_filesystem_llcache_table;
extern struct gui_llcache_table *filesystem_llcache_table;
#endif

View File

@ -5409,7 +5409,7 @@ int main(int argc, char** argv)
.utf8 = amiga_utf8_table,
.search = amiga_search_table,
.search_web = &amiga_search_web_table,
.llcache = amiga_filesystem_llcache_table,
.llcache = filesystem_llcache_table,
};
#ifdef __amigaos4__