summaryrefslogtreecommitdiff
path: root/Makefile.defaults
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.defaults')
-rw-r--r--Makefile.defaults28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile.defaults b/Makefile.defaults
index 9862916c5..ecb97d78e 100644
--- a/Makefile.defaults
+++ b/Makefile.defaults
@@ -229,6 +229,34 @@ ifeq ($(TARGET),framebuffer)
endif
+# ----------------------------------------------------------------------------
+# windows-specific options
+# ----------------------------------------------------------------------------
+ifeq ($(TARGET),windows)
+
+ # Enable NetSurf's use of librosprite for displaying RISC OS Sprites
+ # Valid options: YES, NO, AUTO
+ NETSURF_USE_ROSPRITE := NO
+
+ # Enable NetSurf's use of libsvgtiny for displaying SVGs
+ # Valid options: YES, NO
+ NETSURF_USE_NSSVG := NO
+
+ # Force using glibc internal iconv implementation instead of external libiconv
+ # Valid options: YES, NO
+ NETSURF_USE_LIBICONV_PLUG := NO
+
+ # mng support does not currently build on windows
+ NETSURF_USE_MNG := NO
+
+ # no pdf support
+ NETSURF_USE_HARU_PDF := NO
+
+ # Optimisation levels
+ CFLAGS += -O2 -Wuninitialized
+
+endif
+
# Include any local configuration
-include Makefile.config