mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-18 16:49:18 +03:00
Remove inclusion of my async backing store code whilst it's not being used.
This commit is contained in:
parent
82c7a7a4ba
commit
8871149585
@ -36,6 +36,11 @@ NETSURF_USE_NSSVG := YES
|
|||||||
# Valid options: NO
|
# Valid options: NO
|
||||||
NETSURF_USE_JS := 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
|
# Optimisation levels
|
||||||
CFLAGS += -fomit-frame-pointer -gstabs
|
CFLAGS += -fomit-frame-pointer -gstabs
|
||||||
|
|
||||||
|
@ -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 \
|
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 \
|
datatypes.c dt_picture.c dt_anim.c dt_sound.c plugin_hack.c \
|
||||||
stringview/stringview.c stringview/urlhistory.c rtg.c \
|
stringview/stringview.c stringview/urlhistory.c rtg.c \
|
||||||
agclass/amigaguide_class.c fs_backing_store.c os3support.c \
|
agclass/amigaguide_class.c os3support.c font_bitmap.c
|
||||||
font_bitmap.c
|
|
||||||
S_AMIGA := $(addprefix amiga/,$(S_AMIGA))
|
S_AMIGA := $(addprefix amiga/,$(S_AMIGA))
|
||||||
|
|
||||||
# This is the final source build list
|
# This is the final source build list
|
||||||
|
@ -19,5 +19,6 @@
|
|||||||
#ifndef AMIGA_FS_BACKING_STORE_H
|
#ifndef AMIGA_FS_BACKING_STORE_H
|
||||||
#define 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 *amiga_filesystem_llcache_table;
|
||||||
|
extern struct gui_llcache_table *filesystem_llcache_table;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -5409,7 +5409,7 @@ int main(int argc, char** argv)
|
|||||||
.utf8 = amiga_utf8_table,
|
.utf8 = amiga_utf8_table,
|
||||||
.search = amiga_search_table,
|
.search = amiga_search_table,
|
||||||
.search_web = &amiga_search_web_table,
|
.search_web = &amiga_search_web_table,
|
||||||
.llcache = amiga_filesystem_llcache_table,
|
.llcache = filesystem_llcache_table,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __amigaos4__
|
#ifdef __amigaos4__
|
||||||
|
Loading…
Reference in New Issue
Block a user