Fix lseek on mingw.
[gnulib.git] / m4 / lseek.m4
1 # lseek.m4 serial 1
2 dnl Copyright (C) 2007 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_LSEEK],
8 [
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10   AC_REQUIRE([AC_PROG_CC])
11   AC_CACHE_CHECK([whether lseek detects pipes], [gl_cv_func_lseek_pipe],
12     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>],
13 [#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
14 /* mingw mistakenly returns 0 when trying to seek on pipes.  */
15   Choke me.
16 #endif])],
17       [gl_cv_func_lseek_pipe=yes], [gl_cv_func_lseek_pipe=no])])
18   if test $gl_cv_func_lseek_pipe = no; then
19     gl_REPLACE_LSEEK
20   fi
21 ])
22
23 AC_DEFUN([gl_REPLACE_LSEEK],
24 [
25   AC_LIBOBJ([lseek])
26   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
27   REPLACE_LSEEK=1
28   AC_DEFINE([LSEEK_PIPE_BROKEN], [1],
29             [Define to 1 if lseek does not detect pipes.])
30 ])