2004-01-05 02:10:59 +00:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-02-17 23:38:44 +00:00
|
|
|
* Copyright 2003,4 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-07-18 22:21:32 +00:00
|
|
|
* Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
|
2004-01-05 02:10:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_UTILS_CONFIG_H_
|
|
|
|
#define _NETSURF_UTILS_CONFIG_H_
|
|
|
|
|
|
|
|
/* This file toggles build options on and off.
|
|
|
|
* Simply undefine a symbol to turn the relevant feature off.
|
2004-02-15 22:22:38 +00:00
|
|
|
*
|
|
|
|
* IF ADDING A FEATURE HERE, ADD IT TO Docs/Doxyfile LINE 892 AS WELL.
|
2004-01-05 02:10:59 +00:00
|
|
|
*/
|
|
|
|
|
2004-01-20 19:08:34 +00:00
|
|
|
/* HTTP POST support */
|
|
|
|
#define WITH_POST
|
2004-07-18 22:21:32 +00:00
|
|
|
/* HTTP Auth */
|
|
|
|
#define WITH_AUTH
|
|
|
|
/* Cookies */
|
|
|
|
#define WITH_COOKIES
|
2004-01-20 19:08:34 +00:00
|
|
|
|
2004-01-05 02:10:59 +00:00
|
|
|
/* Image renderering modules */
|
2004-07-19 19:34:07 +00:00
|
|
|
#if defined(riscos) || defined(ncos) || defined(debug)
|
2004-07-18 22:21:32 +00:00
|
|
|
#define WITH_GIF
|
|
|
|
#define WITH_JPEG
|
|
|
|
#define WITH_PNG
|
|
|
|
#define WITH_MNG
|
2004-06-02 20:53:37 +00:00
|
|
|
#endif
|
2004-07-19 20:49:34 +00:00
|
|
|
#if defined(riscos) || defined(ncos)
|
2004-07-18 22:21:32 +00:00
|
|
|
#define WITH_DRAW
|
|
|
|
#define WITH_SPRITE
|
2004-06-02 20:53:37 +00:00
|
|
|
#endif
|
2004-01-05 02:10:59 +00:00
|
|
|
|
2004-07-18 22:21:32 +00:00
|
|
|
/* Platform specific features */
|
2004-07-19 20:43:25 +00:00
|
|
|
#if defined(riscos) || defined(ncos)
|
2004-07-18 22:21:32 +00:00
|
|
|
/* 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
|
2004-06-02 20:53:37 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-19 19:34:07 +00:00
|
|
|
#if defined(riscos) || defined(ncos) || defined(debug)
|
2004-07-18 22:21:32 +00:00
|
|
|
/* Export modules */
|
|
|
|
#define WITH_SAVE_COMPLETE
|
|
|
|
#define WITH_DRAW_EXPORT
|
|
|
|
#define WITH_TEXT_EXPORT
|
2004-01-05 02:10:59 +00:00
|
|
|
#endif
|
|
|
|
|
2004-06-02 20:53:37 +00:00
|
|
|
#endif
|