summaryrefslogtreecommitdiff
path: root/utils/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.h')
-rw-r--r--utils/config.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/utils/config.h b/utils/config.h
new file mode 100644
index 000000000..c26ed3f50
--- /dev/null
+++ b/utils/config.h
@@ -0,0 +1,44 @@
+/*
+ * 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 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.
+ */
+
+/* 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
+
+#endif
+