=================================================================== RCS file: /cvs/mandoc/read.c,v retrieving revision 1.150.2.7 retrieving revision 1.150.2.8 diff -u -p -r1.150.2.7 -r1.150.2.8 --- mandoc/read.c 2017/02/03 18:22:30 1.150.2.7 +++ mandoc/read.c 2017/02/18 17:33:24 1.150.2.8 @@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.150.2.7 2017/02/03 18:22:30 schwarze Exp $ */ +/* $Id: read.c,v 1.150.2.8 2017/02/18 17:33:24 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2017 Ingo Schwarze @@ -32,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -605,13 +604,14 @@ static int read_whole_file(struct mparse *curp, const char *file, int fd, struct buf *fb, int *with_mmap) { +#if HAVE_MMAP + struct stat st; +#endif gzFile gz; size_t off; ssize_t ssz; #if HAVE_MMAP - struct stat st; - if (fstat(fd, &st) == -1) err((int)MANDOCLEVEL_SYSERR, "%s", file);