(libfetish_a_SOURCES): Add sig2str.h.
[gnulib.git] / m4 / ftruncate.m4
blob0397a000c2317fad1f92f38557f96486416df28f
1 #serial 4
3 # See if we need to emulate a missing ftruncate function using fcntl or chsize.
5 AC_DEFUN([jm_FUNC_FTRUNCATE],
7   AC_CHECK_FUNCS(ftruncate, , [ftruncate_missing=yes])
9   if test "$ftruncate_missing" = yes; then
10     AC_CHECK_HEADERS([unistd.h])
11     AC_CHECK_FUNCS([chsize])
12     AC_LIBOBJ(ftruncate)
13   fi