summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-04-06 17:51:25 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-04-06 17:51:25 +0000
commit9299e0d55a9f190b2a606f06af2b247977482c1b (patch)
tree2ba6cb9da448100403fdee86cc09b1b603afb193 /makefile
parent98067521f5781c0f650dd6c4787d2703d5823ceb (diff)
downloadnetsurf-9299e0d55a9f190b2a606f06af2b247977482c1b.tar.gz
netsurf-9299e0d55a9f190b2a606f06af2b247977482c1b.tar.bz2
[project @ 2006-04-06 17:51:25 by rjw]
Content and security option tools. svn path=/import/netsurf/; revision=2493
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/makefile b/makefile
index def3f2beb..aff04508a 100644
--- a/makefile
+++ b/makefile
@@ -42,8 +42,9 @@ OBJECTS_RISCOS += 401login.o artworks.o assert.o awrender.o bitmap.o \
schedule.o search.o sprite.o sslcert.o textselection.o theme.o \
theme_install.o thumbnail.o treeview.o ucstables.o uri.o \
url_complete.o url_protocol.o wimp.o wimp_event.o window.o # riscos/
-OBJECTS_RISCOS += con_cache.o con_fonts.o con_home.o con_image.o \
- con_inter.o con_language.o con_memory.o con_theme.o # riscos/configure/
+OBJECTS_RISCOS += con_cache.o con_content.o con_fonts.o con_home.o \
+ con_image.o con_inter.o con_language.o con_memory.o \
+ con_secure.o con_theme.o # riscos/configure/
# OBJECTS_RISCOS += memdebug.o
OBJECTS_RISCOS_SMALL = $(OBJECTS_RISCOS)
@@ -124,7 +125,7 @@ CFLAGS_GTK = -std=c9x -D_BSD_SOURCE -D_POSIX_C_SOURCE -Dgtk \
# Stop GCC under Cygwin throwing a fit
# If you pass -std=<whatever> it appears to define __STRICT_ANSI__
-# This causes use of functions such as vsnprintf to fail (as Cygwin's header
+# This causes use of functions such as vsnprintf to fail (as Cygwin's header
# files surround declarations of such things with #ifndef __STRICT_ANSI__)
ifeq ($(shell echo $$OS),Windows_NT)
CFLAGS_GTK += -U__STRICT_ANSI__