fc0d715b3406e5a795da8fd7a58ceb702b30c4d2
[gnulib.git] / m4 / rename.m4
1 # serial 19
2
3 # Copyright (C) 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
4 # This file is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
7
8 dnl From Volker Borchert.
9 dnl Determine whether rename works for source file names with a trailing slash.
10 dnl The rename from SunOS 4.1.1_U1 doesn't.
11 dnl
12 dnl If it doesn't, then define RENAME_TRAILING_SLASH_BUG and arrange
13 dnl to compile the wrapper function.
14 dnl
15
16 AC_DEFUN([gl_FUNC_RENAME],
17 [
18   AC_REQUIRE([AC_CANONICAL_HOST])
19   AC_REQUIRE([gl_STDIO_H_DEFAULTS])
20
21   dnl Solaris 10 mistakenly allows rename("file","name/").
22   dnl NetBSD 1.6 mistakenly forbids rename("dir","name/").
23   dnl The Solaris bug can be worked around without stripping
24   dnl trailing slash, while the NetBSD bug requires stripping;
25   dnl the two conditions can be distinguished by whether hard
26   dnl links are also broken.
27   AC_CACHE_CHECK([whether rename honors trailing slash on destination],
28     [gl_cv_func_rename_slash_dst_works],
29     [rm -rf conftest.f conftest.f1 conftest.d1 conftest.d2
30     touch conftest.f && mkdir conftest.d1 ||
31       AC_MSG_ERROR([cannot create temporary files])
32     AC_RUN_IFELSE([AC_LANG_PROGRAM([[
33 #       include <stdio.h>
34 #       include <stdlib.h>
35 ]], [if (rename ("conftest.f", "conftest.f1/") == 0) return 1;
36      if (rename ("conftest.d1", "conftest.d2/") != 0) return 2;])],
37       [gl_cv_func_rename_slash_dst_works=yes],
38       [gl_cv_func_rename_slash_dst_works=no],
39       dnl When crosscompiling, assume rename is broken.
40       [gl_cv_func_rename_slash_dst_works="guessing no"])
41     rm -rf conftest.f conftest.f1 conftest.d1 conftest.d2
42   ])
43   if test "x$gl_cv_func_rename_slash_dst_works" != xyes; then
44     AC_LIBOBJ([rename])
45     REPLACE_RENAME=1
46     AC_DEFINE([RENAME_TRAILING_SLASH_DEST_BUG], [1],
47       [Define if rename does not correctly handle slashes on the destination
48        argument, such as on Solaris 10 or NetBSD 1.6.])
49   fi
50
51   dnl SunOS 4.1.1_U1 mistakenly forbids rename("dir/","name").
52   dnl Solaris 9 mistakenly allows rename("file/","name").
53   dnl These bugs require stripping trailing slash to avoid corrupting
54   dnl symlinks with a trailing slash.
55   AC_CACHE_CHECK([whether rename honors trailing slash on source],
56     [gl_cv_func_rename_slash_src_works],
57     [rm -rf conftest.f conftest.d1 conftest.d2
58     touch conftest.f && mkdir conftest.d1 ||
59       AC_MSG_ERROR([cannot create temporary files])
60     AC_RUN_IFELSE([AC_LANG_PROGRAM([[
61 #       include <stdio.h>
62 #       include <stdlib.h>
63 ]], [if (rename ("conftest.f/", "conftest.d2") == 0) return 1;
64      if (rename ("conftest.d1/", "conftest.d2") != 0) return 2;])],
65       [gl_cv_func_rename_slash_src_works=yes],
66       [gl_cv_func_rename_slash_src_works=no],
67       dnl When crosscompiling, assume rename is broken.
68       [gl_cv_func_rename_slash_src_works="guessing no"])
69     rm -rf conftest.f conftest.d1 conftest.d2
70   ])
71   if test "x$gl_cv_func_rename_slash_src_works" != xyes; then
72     AC_LIBOBJ([rename])
73     REPLACE_RENAME=1
74     AC_DEFINE([RENAME_TRAILING_SLASH_SOURCE_BUG], [1],
75       [Define if rename does not correctly handle slashes on the source
76        argument, such as on Solaris 9 or cygwin 1.5.])
77   fi
78
79   dnl NetBSD 1.6 mistakenly reduces hard link count on rename("h1","h2").
80   dnl Cygwin 1.5.x mistakenly allows rename("dir","file").
81   dnl mingw mistakenly forbids rename("dir1","dir2").
82   dnl These bugs require stripping trailing slash to avoid corrupting
83   dnl symlinks with a trailing slash.
84   AC_CACHE_CHECK([whether rename manages existing destinations correctly],
85     [gl_cv_func_rename_dest_works],
86     [rm -rf conftest.f conftest.d1 conftest.d2
87     touch conftest.f && mkdir conftest.d1 conftest.d2 ||
88       AC_MSG_ERROR([cannot create temporary files])
89     if ln conftest.f conftest.f1 && set x `ls -i conftest.f conftest.f1` &&
90         test "$2" = "$4"; then
91       AC_RUN_IFELSE([AC_LANG_PROGRAM([[
92 #       include <stdio.h>
93 #       include <stdlib.h>
94 ]], [if (rename ("conftest.d1", "conftest.d2") != 0) return 1;
95      if (rename ("conftest.d2", "conftest.f") == 0) return 2;
96      if (rename ("conftest.f", "conftest.f1")
97          || rename ("conftest.f", "conftest.f")) return 3;])],
98         [gl_cv_func_rename_dest_works=yes],
99         [gl_cv_func_rename_dest_works=no],
100         dnl When crosscompiling, assume rename is broken.
101         [gl_cv_func_rename_dest_works="guessing no"])
102     else
103       gl_cv_func_rename_dest_works="guessing no"
104     fi
105     rm -rf conftest.f conftest.f1 conftest.d1 conftest.d2
106   ])
107   if test "x$gl_cv_func_rename_dest_works" != xyes; then
108     AC_LIBOBJ([rename])
109     REPLACE_RENAME=1
110     AC_DEFINE([RENAME_DEST_EXISTS_BUG], [1],
111       [Define if rename does not work when the destination file exists,
112        as with NetBSD 1.6 on hard links, or Windows on directories.])
113   fi
114 ])