2004-01-05 05:10:59 +03: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-18 02:38:44 +03:00
|
|
|
* Copyright 2003,4 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-01-05 05:10:59 +03: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-16 01:22:38 +03:00
|
|
|
*
|
|
|
|
* IF ADDING A FEATURE HERE, ADD IT TO Docs/Doxyfile LINE 892 AS WELL.
|
2004-01-05 05:10:59 +03:00
|
|
|
*/
|
|
|
|
|
2004-01-20 22:08:34 +03:00
|
|
|
/* HTTP POST support */
|
|
|
|
#define WITH_POST
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
/* Image renderering modules */
|
|
|
|
#define WITH_DRAW
|
|
|
|
#define WITH_GIF
|
|
|
|
#define WITH_JPEG
|
|
|
|
#define WITH_PNG
|
|
|
|
#define WITH_SPRITE
|
|
|
|
|
|
|
|
/* Plugin module */
|
|
|
|
#define WITH_PLUGIN
|
|
|
|
|
|
|
|
/* Frames */
|
|
|
|
#undef WITH_FRAMES
|
|
|
|
|
|
|
|
/* HTTP Auth */
|
|
|
|
#define WITH_AUTH
|
|
|
|
|
|
|
|
/* Cookies */
|
|
|
|
#define WITH_COOKIES
|
|
|
|
|
|
|
|
/* About page */
|
|
|
|
#define WITH_ABOUT
|
|
|
|
|
|
|
|
/* Acorn URI protocol support */
|
|
|
|
#define WITH_URI
|
|
|
|
|
|
|
|
/* ANT URL protocol support */
|
|
|
|
#define WITH_URL
|
|
|
|
|
2004-02-15 01:26:35 +03:00
|
|
|
/* Export modules */
|
2004-02-17 15:41:38 +03:00
|
|
|
#define WITH_SAVE_COMPLETE
|
2004-02-15 01:26:35 +03:00
|
|
|
#define WITH_DRAW_EXPORT
|
2004-03-25 02:51:08 +03:00
|
|
|
#define WITH_TEXT_EXPORT
|
2004-02-15 01:26:35 +03:00
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
|