erroneous commas inside @var
[gnulib.git] / m4 / fopen.m4
1 # fopen.m4 serial 6
2 dnl Copyright (C) 2007-2010 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_FOPEN],
8 [
9   AC_REQUIRE([gl_STDIO_H_DEFAULTS])
10   AC_REQUIRE([AC_CANONICAL_HOST])
11   case "$host_os" in
12     mingw* | pw*)
13       dnl Replace fopen, for handling of "/dev/null".
14       REPLACE_FOPEN=1
15       dnl fopen on mingw also has the trailing slash bug.
16       gl_cv_func_fopen_slash="guessing no"
17       ;;
18     *)
19       dnl fopen("foo/", "w") should not create a file when the file name has a
20       dnl trailing slash.
21       AC_CACHE_CHECK([whether fopen recognizes a trailing slash],
22         [gl_cv_func_fopen_slash],
23         [
24           AC_TRY_RUN([
25 #include <stddef.h>
26 #include <stdio.h>
27 int main ()
28 {
29   return fopen ("conftest.sl/", "w") != NULL;
30 }], [gl_cv_func_fopen_slash=yes], [gl_cv_func_fopen_slash=no],
31             [
32 changequote(,)dnl
33              case "$host_os" in
34                aix* | hpux* | solaris2.[0-9]*)
35                  gl_cv_func_fopen_slash="guessing no" ;;
36                *)
37                  gl_cv_func_fopen_slash="guessing yes" ;;
38              esac
39 changequote([,])dnl
40             ])
41           rm -f conftest.sl
42         ])
43       ;;
44   esac
45   case "$gl_cv_func_fopen_slash" in
46     *no)
47       AC_DEFINE([FOPEN_TRAILING_SLASH_BUG], [1],
48         [Define to 1 if fopen() fails to recognize a trailing slash.])
49       REPLACE_FOPEN=1
50       ;;
51   esac
52   if test $REPLACE_FOPEN = 1; then
53     AC_LIBOBJ([fopen])
54     gl_PREREQ_FOPEN
55   fi
56 ])
57
58 # Prerequisites of lib/fopen.c.
59 AC_DEFUN([gl_PREREQ_FOPEN],
60 [
61   AC_REQUIRE([AC_C_INLINE])
62 ])