mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 09:13:08 +03:00
86206259fe
Remove obsolete files and some dead code. svn path=/import/netsurf/; revision=988
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* 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>
|
|
*/
|
|
|
|
#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.
|
|
*
|
|
* IF ADDING A FEATURE HERE, ADD IT TO Docs/Doxyfile LINE 892 AS WELL.
|
|
*/
|
|
|
|
/* HTTP POST support */
|
|
#define WITH_POST
|
|
|
|
/* Image renderering modules */
|
|
#if defined(riscos) || defined(debug)
|
|
#define WITH_GIF
|
|
#define WITH_JPEG
|
|
#define WITH_PNG
|
|
#endif
|
|
#ifdef riscos
|
|
#define WITH_DRAW
|
|
#define WITH_SPRITE
|
|
#endif
|
|
|
|
/* HTTP Auth */
|
|
#define WITH_AUTH
|
|
|
|
/* Cookies */
|
|
#define WITH_COOKIES
|
|
|
|
#ifdef riscos
|
|
/* Plugin module */
|
|
#define WITH_PLUGIN
|
|
|
|
/* Acorn URI protocol support */
|
|
#define WITH_URI
|
|
|
|
/* ANT URL protocol support */
|
|
#define WITH_URL
|
|
|
|
#endif
|
|
|
|
#if defined(riscos) || defined(debug)
|
|
/* Export modules */
|
|
#define WITH_SAVE_COMPLETE
|
|
#define WITH_DRAW_EXPORT
|
|
#define WITH_TEXT_EXPORT
|
|
#endif
|
|
|
|
#endif
|