Quote the first argument in each use of AC_DEFUN.
[gnulib.git] / m4 / lstat.m4
1 #serial 7
2
3 dnl From Jim Meyering.
4 dnl Determine whether lstat has the bug that it succeeds when given the
5 dnl zero-length file name argument.  The lstat from SunOS4.1.4 and the Hurd
6 dnl (as of 1998-11-01) do this.
7 dnl
8 dnl If it does, then define HAVE_LSTAT_EMPTY_STRING_BUG and arrange to
9 dnl compile the wrapper function.
10 dnl
11
12 AC_DEFUN([jm_FUNC_LSTAT],
13 [
14  AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK])
15  AC_CACHE_CHECK([whether lstat accepts an empty string],
16   jm_cv_func_lstat_empty_string_bug,
17   [AC_TRY_RUN([
18 #   include <sys/types.h>
19 #   include <sys/stat.h>
20
21     int
22     main ()
23     {
24       struct stat sbuf;
25       exit (lstat ("", &sbuf) ? 1 : 0);
26     }
27           ],
28          jm_cv_func_lstat_empty_string_bug=yes,
29          jm_cv_func_lstat_empty_string_bug=no,
30          dnl When crosscompiling, assume lstat is broken.
31          jm_cv_func_lstat_empty_string_bug=yes)
32   ])
33   if test $jm_cv_func_lstat_empty_string_bug = yes; then
34     AC_LIBOBJ(lstat)
35     AC_DEFINE_UNQUOTED(HAVE_LSTAT_EMPTY_STRING_BUG, 1,
36 [Define if lstat has the bug that it succeeds when given the zero-length
37    file name argument.  The lstat from SunOS4.1.4 and the Hurd as of 1998-11-01)
38    do this. ])
39   fi
40 ])