summaryrefslogtreecommitdiff
path: root/pdf/font_haru.c
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2008-07-26 17:08:23 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2008-07-26 17:08:23 +0000
commit789ab037d17893c49d00aecbf211880affc7d2ce (patch)
treed8637648de0d8edbe178dfbd304653ba4d96add6 /pdf/font_haru.c
parent35d3d6d0bb16abeeb6aad2fd0398c8e68a40d414 (diff)
downloadnetsurf-789ab037d17893c49d00aecbf211880affc7d2ce.tar.gz
netsurf-789ab037d17893c49d00aecbf211880affc7d2ce.tar.bz2
Add simple, experimental Makefile.config support.
* GTK-specific features, such as RSVG and librosprite, can be set to one of three options; YES, NO or AUTO. AUTO will attempt to auto-detect its availability and enable it if it is available. * Haru PDF export/printing is enabled via this also. It lacks a pkg-config file and works on RISC OS too, and thus has no auto-detection. Disabling it disables the PDF-related menu entries in nsgtk. svn path=/trunk/netsurf/; revision=4747
Diffstat (limited to 'pdf/font_haru.c')
-rw-r--r--pdf/font_haru.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/pdf/font_haru.c b/pdf/font_haru.c
index 045d481a2..555570ef0 100644
--- a/pdf/font_haru.c
+++ b/pdf/font_haru.c
@@ -22,7 +22,10 @@
* The functions were written to implement the same interface as the Pango ones
* so that the usage of the latter wouldn't have to be modified.
*/
-
+
+#include "utils/config.h"
+#ifdef WITH_PDF_EXPORT
+
#define FONT_HARU_DEBUG
#include <assert.h>
@@ -371,3 +374,6 @@ bool haru_nsfont_apply_style(const struct css_style *style,
return true;
}
+
+#endif /* WITH_PDF_EXPORT */
+