summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Timmins <atimmins@blueyonder.co.uk>2004-07-18 22:21:32 +0000
committerAndrew Timmins <atimmins@blueyonder.co.uk>2004-07-18 22:21:32 +0000
commit86f60c4c0a6c4577536c797760fa12f097fd31c9 (patch)
tree3bf07c348b854be07c0cdf715af21d2a2ae7bbe6 /utils
parent58e2d033ece8c60f495ddba9a93ecab793a7a50f (diff)
downloadnetsurf-86f60c4c0a6c4577536c797760fa12f097fd31c9.tar.gz
netsurf-86f60c4c0a6c4577536c797760fa12f097fd31c9.tar.bz2
[project @ 2004-07-18 22:21:32 by atimmins]
svn path=/import/netsurf/; revision=1097
Diffstat (limited to 'utils')
-rw-r--r--utils/config.h55
1 files changed, 30 insertions, 25 deletions
diff --git a/utils/config.h b/utils/config.h
index f119b4e7e..21fc523ab 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -3,6 +3,7 @@
* Licensed under the GNU General Public License,
* http://www.opensource.org/licenses/gpl-license
* Copyright 2003,4 John M Bell <jmb202@ecs.soton.ac.uk>
+ * Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
*/
#ifndef _NETSURF_UTILS_CONFIG_H_
@@ -16,42 +17,46 @@
/* HTTP POST support */
#define WITH_POST
+/* HTTP Auth */
+#define WITH_AUTH
+/* Cookies */
+#define WITH_COOKIES
/* Image renderering modules */
#if defined(riscos) || defined(debug)
-#define WITH_GIF
-#define WITH_JPEG
-#define WITH_PNG
-#define WITH_MNG
+ #define WITH_GIF
+ #define WITH_JPEG
+ #define WITH_PNG
+ #define WITH_MNG
#endif
#ifdef riscos
-#define WITH_DRAW
-#define WITH_SPRITE
+ #define WITH_DRAW
+ #define WITH_SPRITE
#endif
-/* HTTP Auth */
-#define WITH_AUTH
-
-/* Cookies */
-#define WITH_COOKIES
-
+/* Platform specific features */
#ifdef riscos
-/* Plugin module */
-#define WITH_PLUGIN
-
-/* Acorn URI protocol support */
-#define WITH_URI
-
-/* ANT URL protocol support */
-#define WITH_URL
-
+ /* Plugin module */
+ #define WITH_PLUGIN
+ /* Acorn URI protocol support */
+ #define WITH_URI
+ /* ANT URL protocol support */
+ #define WITH_URL
+#endif
+#ifdef ncos
+ /* Kiosk style browsing support */
+ #define WITH_KIOSK_BROWSING
+ /* Kiosk style browsing themes support */
+ #define WITH_KIOSK_THEMES
+ /* Keyboard navigation support */
+ #define WITH_KEYBOARD_NAVIGATION
#endif
#if defined(riscos) || defined(debug)
-/* Export modules */
-#define WITH_SAVE_COMPLETE
-#define WITH_DRAW_EXPORT
-#define WITH_TEXT_EXPORT
+ /* Export modules */
+ #define WITH_SAVE_COMPLETE
+ #define WITH_DRAW_EXPORT
+ #define WITH_TEXT_EXPORT
#endif
#endif