aboutsummaryrefslogtreecommitdiff
path: root/src/render.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-07-05 17:33:53 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:52 +0100
commit6aee185fbdaa5c5bb1216066e53ed343f468b4ae (patch)
tree9e510b640538be738d941b6208d258ff790e1424 /src/render.c
parent27bfe46fbf64db47e53204f4dc60e0f6820cb9bf (diff)
Update documentation and conditional TIFF/PNG compilation
Diffstat (limited to 'src/render.c')
-rw-r--r--src/render.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/render.c b/src/render.c
index 72d0d8f0..df2e288f 100644
--- a/src/render.c
+++ b/src/render.c
@@ -476,6 +476,7 @@ int render_png(DisplayWindow *dw, const char *filename)
int render_tiff_fp(DisplayWindow *dw, const char *filename)
{
+#ifdef HAVE_TIFF
TIFF *th;
struct image *image;
float *line;
@@ -514,12 +515,16 @@ int render_tiff_fp(DisplayWindow *dw, const char *filename)
TIFFClose(th);
+#else
+ STATUS("No TIFF support.\n");
+#endif
return 0;
}
int render_tiff_int16(DisplayWindow *dw, const char *filename)
{
+#ifdef HAVE_TIFF
TIFF *th;
struct image *image;
int16_t *line;
@@ -583,6 +588,8 @@ int render_tiff_int16(DisplayWindow *dw, const char *filename)
_TIFFfree(line);
TIFFClose(th);
-
+#else
+ STATUS("No TIFF support.\n");
+#endif
return 0;
}