summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/config.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/utils/config.h b/utils/config.h
index 39a394f47..4bf3598b3 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -35,7 +35,7 @@ char *strndup(const char *s, size_t n);
/* This section 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.
+ * IF ADDING A FEATURE HERE, ADD IT TO Docs/Doxyfile's "PREDEFINED" DEFINITION AS WELL.
*/
/* HTTP Auth */
@@ -80,7 +80,14 @@ char *strndup(const char *s, size_t n);
#define WITH_RSVG
#endif
#endif
+#if defined(riscos) || defined(DEBUG_BUILD)
+ /* Export modules */
+ #define WITH_SAVE_COMPLETE
+ #define WITH_DRAW_EXPORT
+ #define WITH_PDF_EXPORT
+#endif
+/* Configuration sanity checks: */
#if defined(WITH_NS_SVG) && defined(WITH_RSVG)
#error Cannot build WITH_NS_SVG and WITH_RSVG both enabled
#endif
@@ -89,10 +96,4 @@ char *strndup(const char *s, size_t n);
#error Cannot build WITH_NSSPRITE and WITH_SPRITE both enabled
#endif
-#if defined(riscos) || defined(DEBUG_BUILD)
- /* Export modules */
- #define WITH_SAVE_COMPLETE
- #define WITH_DRAW_EXPORT
-#endif
-
#endif